Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2010-2011 Calxeda, Inc. |
| 4 | * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved. |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 8 | #include <command.h> |
Patrick Delaunay | e6fe02a | 2022-03-22 17:08:43 +0100 | [diff] [blame] | 9 | #include <dm.h> |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 10 | #include <env.h> |
Simon Glass | 8e8ccfe | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 11 | #include <image.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 13 | #include <malloc.h> |
| 14 | #include <mapmem.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 15 | #include <net.h> |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 16 | #include <fdt_support.h> |
Patrick Delaunay | e6fe02a | 2022-03-22 17:08:43 +0100 | [diff] [blame] | 17 | #include <video.h> |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 18 | #include <linux/libfdt.h> |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 19 | #include <linux/string.h> |
| 20 | #include <linux/ctype.h> |
| 21 | #include <errno.h> |
| 22 | #include <linux/list.h> |
| 23 | |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 24 | #ifdef CONFIG_DM_RNG |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 25 | #include <rng.h> |
| 26 | #endif |
| 27 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 28 | #include <splash.h> |
| 29 | #include <asm/io.h> |
| 30 | |
| 31 | #include "menu.h" |
| 32 | #include "cli.h" |
| 33 | |
| 34 | #include "pxe_utils.h" |
| 35 | |
Ben Wolsieffer | 2c4e067 | 2019-11-28 00:07:08 -0500 | [diff] [blame] | 36 | #define MAX_TFTP_PATH_LEN 512 |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 37 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 38 | int pxe_get_file_size(ulong *sizep) |
| 39 | { |
| 40 | const char *val; |
| 41 | |
| 42 | val = from_env("filesize"); |
| 43 | if (!val) |
| 44 | return -ENOENT; |
| 45 | |
| 46 | if (strict_strtoul(val, 16, sizep) < 0) |
| 47 | return -EINVAL; |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 52 | /** |
| 53 | * format_mac_pxe() - obtain a MAC address in the PXE format |
| 54 | * |
| 55 | * This produces a MAC-address string in the format for the current ethernet |
| 56 | * device: |
| 57 | * |
| 58 | * 01-aa-bb-cc-dd-ee-ff |
| 59 | * |
| 60 | * where aa-ff is the MAC address in hex |
| 61 | * |
| 62 | * @outbuf: Buffer to write string to |
| 63 | * @outbuf_len: length of buffer |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 64 | * Return: 1 if OK, -ENOSPC if buffer is too small, -ENOENT is there is no |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 65 | * current ethernet device |
| 66 | */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 67 | int format_mac_pxe(char *outbuf, size_t outbuf_len) |
| 68 | { |
| 69 | uchar ethaddr[6]; |
| 70 | |
| 71 | if (outbuf_len < 21) { |
| 72 | printf("outbuf is too small (%zd < 21)\n", outbuf_len); |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 73 | return -ENOSPC; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | if (!eth_env_get_enetaddr_by_index("eth", eth_get_dev_index(), ethaddr)) |
| 77 | return -ENOENT; |
| 78 | |
| 79 | sprintf(outbuf, "01-%02x-%02x-%02x-%02x-%02x-%02x", |
| 80 | ethaddr[0], ethaddr[1], ethaddr[2], |
| 81 | ethaddr[3], ethaddr[4], ethaddr[5]); |
| 82 | |
| 83 | return 1; |
| 84 | } |
| 85 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 86 | /** |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 87 | * get_relfile() - read a file relative to the PXE file |
| 88 | * |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 89 | * As in pxelinux, paths to files referenced from files we retrieve are |
| 90 | * relative to the location of bootfile. get_relfile takes such a path and |
| 91 | * joins it with the bootfile path to get the full path to the target file. If |
| 92 | * the bootfile path is NULL, we use file_path as is. |
| 93 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 94 | * @ctx: PXE context |
| 95 | * @file_path: File path to read (relative to the PXE file) |
| 96 | * @file_addr: Address to load file to |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 97 | * @filesizep: If not NULL, returns the file size in bytes |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 98 | * Returns 1 for success, or < 0 on error |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 99 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 100 | static int get_relfile(struct pxe_context *ctx, const char *file_path, |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 101 | unsigned long file_addr, ulong *filesizep) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 102 | { |
| 103 | size_t path_len; |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 104 | char relfile[MAX_TFTP_PATH_LEN + 1]; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 105 | char addr_buf[18]; |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 106 | ulong size; |
| 107 | int ret; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 108 | |
Simon Glass | 74b7a2b | 2021-10-14 12:48:05 -0600 | [diff] [blame] | 109 | if (file_path[0] == '/' && ctx->allow_abs_path) |
| 110 | *relfile = '\0'; |
| 111 | else |
| 112 | strncpy(relfile, ctx->bootdir, MAX_TFTP_PATH_LEN); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 113 | |
Simon Glass | 74b7a2b | 2021-10-14 12:48:05 -0600 | [diff] [blame] | 114 | path_len = strlen(file_path) + strlen(relfile); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 115 | |
| 116 | if (path_len > MAX_TFTP_PATH_LEN) { |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 117 | printf("Base path too long (%s%s)\n", relfile, file_path); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 118 | |
| 119 | return -ENAMETOOLONG; |
| 120 | } |
| 121 | |
| 122 | strcat(relfile, file_path); |
| 123 | |
| 124 | printf("Retrieving file: %s\n", relfile); |
| 125 | |
| 126 | sprintf(addr_buf, "%lx", file_addr); |
| 127 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 128 | ret = ctx->getfile(ctx, relfile, addr_buf, &size); |
| 129 | if (ret < 0) |
| 130 | return log_msg_ret("get", ret); |
| 131 | if (filesizep) |
| 132 | *filesizep = size; |
| 133 | |
| 134 | return 1; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 135 | } |
| 136 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 137 | /** |
| 138 | * get_pxe_file() - read a file |
| 139 | * |
| 140 | * The file is read and nul-terminated |
| 141 | * |
| 142 | * @ctx: PXE context |
| 143 | * @file_path: File path to read (relative to the PXE file) |
| 144 | * @file_addr: Address to load file to |
| 145 | * Returns 1 for success, or < 0 on error |
| 146 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 147 | int get_pxe_file(struct pxe_context *ctx, const char *file_path, |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 148 | ulong file_addr) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 149 | { |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 150 | ulong size; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 151 | int err; |
| 152 | char *buf; |
| 153 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 154 | err = get_relfile(ctx, file_path, file_addr, &size); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 155 | if (err < 0) |
| 156 | return err; |
| 157 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 158 | buf = map_sysmem(file_addr + size, 1); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 159 | *buf = '\0'; |
| 160 | unmap_sysmem(buf); |
| 161 | |
| 162 | return 1; |
| 163 | } |
| 164 | |
| 165 | #define PXELINUX_DIR "pxelinux.cfg/" |
| 166 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 167 | /** |
| 168 | * get_pxelinux_path() - Get a file in the pxelinux.cfg/ directory |
| 169 | * |
| 170 | * @ctx: PXE context |
| 171 | * @file: Filename to process (relative to pxelinux.cfg/) |
| 172 | * Returns 1 for success, -ENAMETOOLONG if the resulting path is too long. |
| 173 | * or other value < 0 on other error |
| 174 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 175 | int get_pxelinux_path(struct pxe_context *ctx, const char *file, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 176 | unsigned long pxefile_addr_r) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 177 | { |
| 178 | size_t base_len = strlen(PXELINUX_DIR); |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 179 | char path[MAX_TFTP_PATH_LEN + 1]; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 180 | |
| 181 | if (base_len + strlen(file) > MAX_TFTP_PATH_LEN) { |
| 182 | printf("path (%s%s) too long, skipping\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 183 | PXELINUX_DIR, file); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 184 | return -ENAMETOOLONG; |
| 185 | } |
| 186 | |
| 187 | sprintf(path, PXELINUX_DIR "%s", file); |
| 188 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 189 | return get_pxe_file(ctx, path, pxefile_addr_r); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 190 | } |
| 191 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 192 | /** |
| 193 | * get_relfile_envaddr() - read a file to an address in an env var |
| 194 | * |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 195 | * Wrapper to make it easier to store the file at file_path in the location |
| 196 | * specified by envaddr_name. file_path will be joined to the bootfile path, |
| 197 | * if any is specified. |
| 198 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 199 | * @ctx: PXE context |
| 200 | * @file_path: File path to read (relative to the PXE file) |
| 201 | * @envaddr_name: Name of environment variable which contains the address to |
| 202 | * load to |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 203 | * @filesizep: Returns the file size in bytes |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 204 | * Returns 1 on success, -ENOENT if @envaddr_name does not exist as an |
| 205 | * environment variable, -EINVAL if its format is not valid hex, or other |
| 206 | * value < 0 on other error |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 207 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 208 | static int get_relfile_envaddr(struct pxe_context *ctx, const char *file_path, |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 209 | const char *envaddr_name, ulong *filesizep) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 210 | { |
| 211 | unsigned long file_addr; |
| 212 | char *envaddr; |
| 213 | |
| 214 | envaddr = from_env(envaddr_name); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 215 | if (!envaddr) |
| 216 | return -ENOENT; |
| 217 | |
| 218 | if (strict_strtoul(envaddr, 16, &file_addr) < 0) |
| 219 | return -EINVAL; |
| 220 | |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 221 | return get_relfile(ctx, file_path, file_addr, filesizep); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 222 | } |
| 223 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 224 | /** |
| 225 | * label_create() - crate a new PXE label |
| 226 | * |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 227 | * Allocates memory for and initializes a pxe_label. This uses malloc, so the |
| 228 | * result must be free()'d to reclaim the memory. |
| 229 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 230 | * Returns a pointer to the label, or NULL if out of memory |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 231 | */ |
| 232 | static struct pxe_label *label_create(void) |
| 233 | { |
| 234 | struct pxe_label *label; |
| 235 | |
| 236 | label = malloc(sizeof(struct pxe_label)); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 237 | if (!label) |
| 238 | return NULL; |
| 239 | |
| 240 | memset(label, 0, sizeof(struct pxe_label)); |
| 241 | |
| 242 | return label; |
| 243 | } |
| 244 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 245 | /** |
| 246 | * label_destroy() - free the memory used by a pxe_label |
| 247 | * |
| 248 | * This frees @label itself as well as memory used by its name, |
| 249 | * kernel, config, append, initrd, fdt, fdtdir and fdtoverlay members, if |
| 250 | * they're non-NULL. |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 251 | * |
| 252 | * So - be sure to only use dynamically allocated memory for the members of |
| 253 | * the pxe_label struct, unless you want to clean it up first. These are |
| 254 | * currently only created by the pxe file parsing code. |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 255 | * |
| 256 | * @label: Label to free |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 257 | */ |
| 258 | static void label_destroy(struct pxe_label *label) |
| 259 | { |
Simon Glass | 929860b | 2021-10-14 12:48:02 -0600 | [diff] [blame] | 260 | free(label->name); |
Patrick Delaunay | a5dacef | 2022-10-28 11:01:19 +0200 | [diff] [blame] | 261 | free(label->kernel_label); |
Simon Glass | 929860b | 2021-10-14 12:48:02 -0600 | [diff] [blame] | 262 | free(label->kernel); |
| 263 | free(label->config); |
| 264 | free(label->append); |
| 265 | free(label->initrd); |
| 266 | free(label->fdt); |
| 267 | free(label->fdtdir); |
| 268 | free(label->fdtoverlays); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 269 | free(label); |
| 270 | } |
| 271 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 272 | /** |
| 273 | * label_print() - Print a label and its string members if they're defined |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 274 | * |
| 275 | * This is passed as a callback to the menu code for displaying each |
| 276 | * menu entry. |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 277 | * |
| 278 | * @data: Label to print (is cast to struct pxe_label *) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 279 | */ |
| 280 | static void label_print(void *data) |
| 281 | { |
| 282 | struct pxe_label *label = data; |
| 283 | const char *c = label->menu ? label->menu : label->name; |
| 284 | |
| 285 | printf("%s:\t%s\n", label->num, c); |
| 286 | } |
| 287 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 288 | /** |
| 289 | * label_localboot() - Boot a label that specified 'localboot' |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 290 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 291 | * This requires that the 'localcmd' environment variable is defined. Its |
| 292 | * contents will be executed as U-Boot commands. If the label specified an |
| 293 | * 'append' line, its contents will be used to overwrite the contents of the |
| 294 | * 'bootargs' environment variable prior to running 'localcmd'. |
| 295 | * |
| 296 | * @label: Label to process |
| 297 | * Returns 1 on success or < 0 on error |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 298 | */ |
| 299 | static int label_localboot(struct pxe_label *label) |
| 300 | { |
| 301 | char *localcmd; |
| 302 | |
| 303 | localcmd = from_env("localcmd"); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 304 | if (!localcmd) |
| 305 | return -ENOENT; |
| 306 | |
| 307 | if (label->append) { |
| 308 | char bootargs[CONFIG_SYS_CBSIZE]; |
| 309 | |
Simon Glass | 1a62d64 | 2020-11-05 10:33:47 -0700 | [diff] [blame] | 310 | cli_simple_process_macros(label->append, bootargs, |
| 311 | sizeof(bootargs)); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 312 | env_set("bootargs", bootargs); |
| 313 | } |
| 314 | |
| 315 | debug("running: %s\n", localcmd); |
| 316 | |
| 317 | return run_command_list(localcmd, strlen(localcmd), 0); |
| 318 | } |
| 319 | |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 320 | /* |
| 321 | * label_boot_kaslrseed generate kaslrseed from hw rng |
| 322 | */ |
| 323 | |
| 324 | static void label_boot_kaslrseed(void) |
| 325 | { |
| 326 | #ifdef CONFIG_DM_RNG |
| 327 | ulong fdt_addr; |
| 328 | struct fdt_header *working_fdt; |
| 329 | size_t n = 0x8; |
| 330 | struct udevice *dev; |
| 331 | u64 *buf; |
| 332 | int nodeoffset; |
| 333 | int err; |
| 334 | |
| 335 | /* Get the main fdt and map it */ |
| 336 | fdt_addr = hextoul(env_get("fdt_addr_r"), NULL); |
| 337 | working_fdt = map_sysmem(fdt_addr, 0); |
| 338 | err = fdt_check_header(working_fdt); |
| 339 | if (err) |
| 340 | return; |
| 341 | |
| 342 | /* add extra size for holding kaslr-seed */ |
| 343 | /* err is new fdt size, 0 or negtive */ |
| 344 | err = fdt_shrink_to_minimum(working_fdt, 512); |
| 345 | if (err <= 0) |
| 346 | return; |
| 347 | |
| 348 | if (uclass_get_device(UCLASS_RNG, 0, &dev) || !dev) { |
| 349 | printf("No RNG device\n"); |
| 350 | return; |
| 351 | } |
| 352 | |
| 353 | nodeoffset = fdt_find_or_add_subnode(working_fdt, 0, "chosen"); |
| 354 | if (nodeoffset < 0) { |
| 355 | printf("Reading chosen node failed\n"); |
| 356 | return; |
| 357 | } |
| 358 | |
| 359 | buf = malloc(n); |
| 360 | if (!buf) { |
| 361 | printf("Out of memory\n"); |
| 362 | return; |
| 363 | } |
| 364 | |
| 365 | if (dm_rng_read(dev, buf, n)) { |
| 366 | printf("Reading RNG failed\n"); |
| 367 | goto err; |
| 368 | } |
| 369 | |
| 370 | err = fdt_setprop(working_fdt, nodeoffset, "kaslr-seed", buf, sizeof(buf)); |
| 371 | if (err < 0) { |
| 372 | printf("Unable to set kaslr-seed on chosen node: %s\n", fdt_strerror(err)); |
| 373 | goto err; |
| 374 | } |
| 375 | err: |
| 376 | free(buf); |
| 377 | #endif |
| 378 | return; |
| 379 | } |
| 380 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 381 | /** |
| 382 | * label_boot_fdtoverlay() - Loads fdt overlays specified in 'fdtoverlays' |
Edoardo Tomelleri | 35821a2 | 2022-09-21 15:26:33 +0200 | [diff] [blame] | 383 | * or 'devicetree-overlay' |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 384 | * |
| 385 | * @ctx: PXE context |
| 386 | * @label: Label to process |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 387 | */ |
| 388 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 389 | static void label_boot_fdtoverlay(struct pxe_context *ctx, |
| 390 | struct pxe_label *label) |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 391 | { |
| 392 | char *fdtoverlay = label->fdtoverlays; |
| 393 | struct fdt_header *working_fdt; |
| 394 | char *fdtoverlay_addr_env; |
| 395 | ulong fdtoverlay_addr; |
| 396 | ulong fdt_addr; |
| 397 | int err; |
| 398 | |
| 399 | /* Get the main fdt and map it */ |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 400 | fdt_addr = hextoul(env_get("fdt_addr_r"), NULL); |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 401 | working_fdt = map_sysmem(fdt_addr, 0); |
| 402 | err = fdt_check_header(working_fdt); |
| 403 | if (err) |
| 404 | return; |
| 405 | |
| 406 | /* Get the specific overlay loading address */ |
| 407 | fdtoverlay_addr_env = env_get("fdtoverlay_addr_r"); |
| 408 | if (!fdtoverlay_addr_env) { |
| 409 | printf("Invalid fdtoverlay_addr_r for loading overlays\n"); |
| 410 | return; |
| 411 | } |
| 412 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 413 | fdtoverlay_addr = hextoul(fdtoverlay_addr_env, NULL); |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 414 | |
| 415 | /* Cycle over the overlay files and apply them in order */ |
| 416 | do { |
| 417 | struct fdt_header *blob; |
| 418 | char *overlayfile; |
| 419 | char *end; |
| 420 | int len; |
| 421 | |
| 422 | /* Drop leading spaces */ |
| 423 | while (*fdtoverlay == ' ') |
| 424 | ++fdtoverlay; |
| 425 | |
| 426 | /* Copy a single filename if multiple provided */ |
| 427 | end = strstr(fdtoverlay, " "); |
| 428 | if (end) { |
| 429 | len = (int)(end - fdtoverlay); |
| 430 | overlayfile = malloc(len + 1); |
| 431 | strncpy(overlayfile, fdtoverlay, len); |
| 432 | overlayfile[len] = '\0'; |
| 433 | } else |
| 434 | overlayfile = fdtoverlay; |
| 435 | |
| 436 | if (!strlen(overlayfile)) |
| 437 | goto skip_overlay; |
| 438 | |
| 439 | /* Load overlay file */ |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 440 | err = get_relfile_envaddr(ctx, overlayfile, "fdtoverlay_addr_r", |
| 441 | NULL); |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 442 | if (err < 0) { |
| 443 | printf("Failed loading overlay %s\n", overlayfile); |
| 444 | goto skip_overlay; |
| 445 | } |
| 446 | |
| 447 | /* Resize main fdt */ |
| 448 | fdt_shrink_to_minimum(working_fdt, 8192); |
| 449 | |
| 450 | blob = map_sysmem(fdtoverlay_addr, 0); |
| 451 | err = fdt_check_header(blob); |
| 452 | if (err) { |
| 453 | printf("Invalid overlay %s, skipping\n", |
| 454 | overlayfile); |
| 455 | goto skip_overlay; |
| 456 | } |
| 457 | |
| 458 | err = fdt_overlay_apply_verbose(working_fdt, blob); |
| 459 | if (err) { |
| 460 | printf("Failed to apply overlay %s, skipping\n", |
| 461 | overlayfile); |
| 462 | goto skip_overlay; |
| 463 | } |
| 464 | |
| 465 | skip_overlay: |
| 466 | if (end) |
| 467 | free(overlayfile); |
| 468 | } while ((fdtoverlay = strstr(fdtoverlay, " "))); |
| 469 | } |
| 470 | #endif |
| 471 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 472 | /** |
| 473 | * label_boot() - Boot according to the contents of a pxe_label |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 474 | * |
| 475 | * If we can't boot for any reason, we return. A successful boot never |
| 476 | * returns. |
| 477 | * |
| 478 | * The kernel will be stored in the location given by the 'kernel_addr_r' |
| 479 | * environment variable. |
| 480 | * |
| 481 | * If the label specifies an initrd file, it will be stored in the location |
| 482 | * given by the 'ramdisk_addr_r' environment variable. |
| 483 | * |
| 484 | * If the label specifies an 'append' line, its contents will overwrite that |
| 485 | * of the 'bootargs' environment variable. |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 486 | * |
| 487 | * @ctx: PXE context |
| 488 | * @label: Label to process |
| 489 | * Returns does not return on success, otherwise returns 0 if a localboot |
| 490 | * label was processed, or 1 on error |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 491 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 492 | static int label_boot(struct pxe_context *ctx, struct pxe_label *label) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 493 | { |
Tom Rini | cdd20e3 | 2024-04-18 08:29:35 -0600 | [diff] [blame^] | 494 | char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL }; |
| 495 | char *zboot_argv[] = { "zboot", NULL, "0", NULL, NULL }; |
Zhaofeng Li | c97bd17 | 2021-10-20 00:18:15 -0700 | [diff] [blame] | 496 | char *kernel_addr = NULL; |
| 497 | char *initrd_addr_str = NULL; |
Zhaofeng Li | 23f3e39 | 2021-10-20 00:18:14 -0700 | [diff] [blame] | 498 | char initrd_filesize[10]; |
Zhaofeng Li | c97bd17 | 2021-10-20 00:18:15 -0700 | [diff] [blame] | 499 | char initrd_str[28]; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 500 | char mac_str[29] = ""; |
| 501 | char ip_str[68] = ""; |
| 502 | char *fit_addr = NULL; |
Tom Rini | cdd20e3 | 2024-04-18 08:29:35 -0600 | [diff] [blame^] | 503 | int bootm_argc = 2; |
| 504 | int zboot_argc = 3; |
| 505 | int len = 0; |
| 506 | ulong kernel_addr_r; |
| 507 | void *buf; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 508 | |
| 509 | label_print(label); |
| 510 | |
| 511 | label->attempted = 1; |
| 512 | |
| 513 | if (label->localboot) { |
| 514 | if (label->localboot_val >= 0) |
| 515 | label_localboot(label); |
| 516 | return 0; |
| 517 | } |
| 518 | |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 519 | if (!label->kernel) { |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 520 | printf("No kernel given, skipping %s\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 521 | label->name); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 522 | return 1; |
| 523 | } |
| 524 | |
Patrick Delaunay | f723c27 | 2022-10-28 11:01:18 +0200 | [diff] [blame] | 525 | if (get_relfile_envaddr(ctx, label->kernel, "kernel_addr_r", |
| 526 | NULL) < 0) { |
| 527 | printf("Skipping %s for failure retrieving kernel\n", |
| 528 | label->name); |
| 529 | return 1; |
| 530 | } |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 531 | |
Patrick Delaunay | f723c27 | 2022-10-28 11:01:18 +0200 | [diff] [blame] | 532 | kernel_addr = env_get("kernel_addr_r"); |
| 533 | /* for FIT, append the configuration identifier */ |
| 534 | if (label->config) { |
| 535 | int len = strlen(kernel_addr) + strlen(label->config) + 1; |
| 536 | |
| 537 | fit_addr = malloc(len); |
| 538 | if (!fit_addr) { |
| 539 | printf("malloc fail (FIT address)\n"); |
| 540 | return 1; |
| 541 | } |
| 542 | snprintf(fit_addr, len, "%s%s", kernel_addr, label->config); |
| 543 | kernel_addr = fit_addr; |
| 544 | } |
| 545 | |
Patrick Delaunay | a5dacef | 2022-10-28 11:01:19 +0200 | [diff] [blame] | 546 | /* For FIT, the label can be identical to kernel one */ |
| 547 | if (label->initrd && !strcmp(label->kernel_label, label->initrd)) { |
Tom Rini | cdd20e3 | 2024-04-18 08:29:35 -0600 | [diff] [blame^] | 548 | initrd_addr_str = kernel_addr; |
Patrick Delaunay | a5dacef | 2022-10-28 11:01:19 +0200 | [diff] [blame] | 549 | } else if (label->initrd) { |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 550 | ulong size; |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 551 | if (get_relfile_envaddr(ctx, label->initrd, "ramdisk_addr_r", |
| 552 | &size) < 0) { |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 553 | printf("Skipping %s for failure retrieving initrd\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 554 | label->name); |
Patrick Delaunay | f723c27 | 2022-10-28 11:01:18 +0200 | [diff] [blame] | 555 | goto cleanup; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 556 | } |
Thomas Mittelstaedt | 1a075d4 | 2023-05-04 13:42:55 +0000 | [diff] [blame] | 557 | strcpy(initrd_filesize, simple_xtoa(size)); |
Zhaofeng Li | c97bd17 | 2021-10-20 00:18:15 -0700 | [diff] [blame] | 558 | initrd_addr_str = env_get("ramdisk_addr_r"); |
Heinrich Schuchardt | 085cbda | 2021-11-15 19:26:51 +0100 | [diff] [blame] | 559 | size = snprintf(initrd_str, sizeof(initrd_str), "%s:%lx", |
| 560 | initrd_addr_str, size); |
| 561 | if (size >= sizeof(initrd_str)) |
Patrick Delaunay | f723c27 | 2022-10-28 11:01:18 +0200 | [diff] [blame] | 562 | goto cleanup; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 563 | } |
| 564 | |
| 565 | if (label->ipappend & 0x1) { |
| 566 | sprintf(ip_str, " ip=%s:%s:%s:%s", |
| 567 | env_get("ipaddr"), env_get("serverip"), |
| 568 | env_get("gatewayip"), env_get("netmask")); |
| 569 | } |
| 570 | |
Kory Maincent | ff0287e | 2021-02-02 16:42:28 +0100 | [diff] [blame] | 571 | if (IS_ENABLED(CONFIG_CMD_NET)) { |
| 572 | if (label->ipappend & 0x2) { |
| 573 | int err; |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 574 | |
Kory Maincent | ff0287e | 2021-02-02 16:42:28 +0100 | [diff] [blame] | 575 | strcpy(mac_str, " BOOTIF="); |
| 576 | err = format_mac_pxe(mac_str + 8, sizeof(mac_str) - 8); |
| 577 | if (err < 0) |
| 578 | mac_str[0] = '\0'; |
| 579 | } |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 580 | } |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 581 | |
| 582 | if ((label->ipappend & 0x3) || label->append) { |
| 583 | char bootargs[CONFIG_SYS_CBSIZE] = ""; |
| 584 | char finalbootargs[CONFIG_SYS_CBSIZE]; |
| 585 | |
| 586 | if (strlen(label->append ?: "") + |
| 587 | strlen(ip_str) + strlen(mac_str) + 1 > sizeof(bootargs)) { |
| 588 | printf("bootarg overflow %zd+%zd+%zd+1 > %zd\n", |
| 589 | strlen(label->append ?: ""), |
| 590 | strlen(ip_str), strlen(mac_str), |
| 591 | sizeof(bootargs)); |
Patrick Delaunay | f723c27 | 2022-10-28 11:01:18 +0200 | [diff] [blame] | 592 | goto cleanup; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 593 | } |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 594 | |
| 595 | if (label->append) |
Tom Rini | cdd20e3 | 2024-04-18 08:29:35 -0600 | [diff] [blame^] | 596 | strncpy(bootargs, label->append, sizeof(bootargs)); |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 597 | |
| 598 | strcat(bootargs, ip_str); |
| 599 | strcat(bootargs, mac_str); |
| 600 | |
Simon Glass | 1a62d64 | 2020-11-05 10:33:47 -0700 | [diff] [blame] | 601 | cli_simple_process_macros(bootargs, finalbootargs, |
| 602 | sizeof(finalbootargs)); |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 603 | env_set("bootargs", finalbootargs); |
| 604 | printf("append: %s\n", finalbootargs); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 605 | } |
| 606 | |
Tom Rini | cdd20e3 | 2024-04-18 08:29:35 -0600 | [diff] [blame^] | 607 | /* |
| 608 | * fdt usage is optional: |
| 609 | * It handles the following scenarios. |
| 610 | * |
| 611 | * Scenario 1: If fdt_addr_r specified and "fdt" or "fdtdir" label is |
| 612 | * defined in pxe file, retrieve fdt blob from server. Pass fdt_addr_r to |
| 613 | * bootm, and adjust argc appropriately. |
| 614 | * |
| 615 | * If retrieve fails and no exact fdt blob is specified in pxe file with |
| 616 | * "fdt" label, try Scenario 2. |
| 617 | * |
| 618 | * Scenario 2: If there is an fdt_addr specified, pass it along to |
| 619 | * bootm, and adjust argc appropriately. |
| 620 | * |
| 621 | * Scenario 3: If there is an fdtcontroladdr specified, pass it along to |
| 622 | * bootm, and adjust argc appropriately, unless the image type is fitImage. |
| 623 | * |
| 624 | * Scenario 4: fdt blob is not available. |
| 625 | */ |
| 626 | bootm_argv[3] = env_get("fdt_addr_r"); |
| 627 | |
| 628 | /* For FIT, the label can be identical to kernel one */ |
| 629 | if (label->fdt && !strcmp(label->kernel_label, label->fdt)) { |
| 630 | bootm_argv[3] = kernel_addr; |
| 631 | /* if fdt label is defined then get fdt from server */ |
| 632 | } else if (bootm_argv[3]) { |
| 633 | char *fdtfile = NULL; |
| 634 | char *fdtfilefree = NULL; |
| 635 | |
| 636 | if (label->fdt) { |
| 637 | if (IS_ENABLED(CONFIG_SUPPORT_PASSING_ATAGS)) { |
| 638 | if (strcmp("-", label->fdt)) |
| 639 | fdtfile = label->fdt; |
| 640 | } else { |
| 641 | fdtfile = label->fdt; |
| 642 | } |
| 643 | } else if (label->fdtdir) { |
| 644 | char *f1, *f2, *f3, *f4, *slash; |
| 645 | |
| 646 | f1 = env_get("fdtfile"); |
| 647 | if (f1) { |
| 648 | f2 = ""; |
| 649 | f3 = ""; |
| 650 | f4 = ""; |
| 651 | } else { |
| 652 | /* |
| 653 | * For complex cases where this code doesn't |
| 654 | * generate the correct filename, the board |
| 655 | * code should set $fdtfile during early boot, |
| 656 | * or the boot scripts should set $fdtfile |
| 657 | * before invoking "pxe" or "sysboot". |
| 658 | */ |
| 659 | f1 = env_get("soc"); |
| 660 | f2 = "-"; |
| 661 | f3 = env_get("board"); |
| 662 | f4 = ".dtb"; |
| 663 | if (!f1) { |
| 664 | f1 = ""; |
| 665 | f2 = ""; |
| 666 | } |
| 667 | if (!f3) { |
| 668 | f2 = ""; |
| 669 | f3 = ""; |
| 670 | } |
| 671 | } |
| 672 | |
| 673 | len = strlen(label->fdtdir); |
| 674 | if (!len) |
| 675 | slash = "./"; |
| 676 | else if (label->fdtdir[len - 1] != '/') |
| 677 | slash = "/"; |
| 678 | else |
| 679 | slash = ""; |
| 680 | |
| 681 | len = strlen(label->fdtdir) + strlen(slash) + |
| 682 | strlen(f1) + strlen(f2) + strlen(f3) + |
| 683 | strlen(f4) + 1; |
| 684 | fdtfilefree = malloc(len); |
| 685 | if (!fdtfilefree) { |
| 686 | printf("malloc fail (FDT filename)\n"); |
| 687 | goto cleanup; |
| 688 | } |
| 689 | |
| 690 | snprintf(fdtfilefree, len, "%s%s%s%s%s%s", |
| 691 | label->fdtdir, slash, f1, f2, f3, f4); |
| 692 | fdtfile = fdtfilefree; |
| 693 | } |
| 694 | |
| 695 | if (fdtfile) { |
| 696 | int err = get_relfile_envaddr(ctx, fdtfile, |
| 697 | "fdt_addr_r", NULL); |
| 698 | |
| 699 | free(fdtfilefree); |
| 700 | if (err < 0) { |
| 701 | bootm_argv[3] = NULL; |
| 702 | |
| 703 | if (label->fdt) { |
| 704 | printf("Skipping %s for failure retrieving FDT\n", |
| 705 | label->name); |
| 706 | goto cleanup; |
| 707 | } |
| 708 | |
| 709 | if (label->fdtdir) { |
| 710 | printf("Skipping fdtdir %s for failure retrieving dts\n", |
| 711 | label->fdtdir); |
| 712 | } |
| 713 | } |
| 714 | |
| 715 | if (label->kaslrseed) |
| 716 | label_boot_kaslrseed(); |
| 717 | |
| 718 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 719 | if (label->fdtoverlays) |
| 720 | label_boot_fdtoverlay(ctx, label); |
| 721 | #endif |
| 722 | } else { |
| 723 | bootm_argv[3] = NULL; |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | bootm_argv[1] = kernel_addr; |
| 728 | zboot_argv[1] = kernel_addr; |
| 729 | |
| 730 | if (initrd_addr_str) { |
| 731 | bootm_argv[2] = initrd_str; |
| 732 | bootm_argc = 3; |
| 733 | |
| 734 | zboot_argv[3] = initrd_addr_str; |
| 735 | zboot_argv[4] = initrd_filesize; |
| 736 | zboot_argc = 5; |
| 737 | } |
| 738 | |
| 739 | if (!bootm_argv[3]) { |
| 740 | if (IS_ENABLED(CONFIG_SUPPORT_PASSING_ATAGS)) { |
| 741 | if (strcmp("-", label->fdt)) |
| 742 | bootm_argv[3] = env_get("fdt_addr"); |
| 743 | } else { |
| 744 | bootm_argv[3] = env_get("fdt_addr"); |
| 745 | } |
| 746 | } |
| 747 | |
| 748 | kernel_addr_r = genimg_get_kernel_addr(kernel_addr); |
| 749 | buf = map_sysmem(kernel_addr_r, 0); |
| 750 | |
| 751 | if (!bootm_argv[3] && genimg_get_format(buf) != IMAGE_FORMAT_FIT) { |
| 752 | if (IS_ENABLED(CONFIG_SUPPORT_PASSING_ATAGS)) { |
| 753 | if (strcmp("-", label->fdt)) |
| 754 | bootm_argv[3] = env_get("fdtcontroladdr"); |
| 755 | } else { |
| 756 | bootm_argv[3] = env_get("fdtcontroladdr"); |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | if (bootm_argv[3]) { |
| 761 | if (!bootm_argv[2]) |
| 762 | bootm_argv[2] = "-"; |
| 763 | bootm_argc = 4; |
| 764 | } |
| 765 | |
| 766 | /* Try bootm for legacy and FIT format image */ |
| 767 | if (genimg_get_format(buf) != IMAGE_FORMAT_INVALID && |
| 768 | IS_ENABLED(CONFIG_CMD_BOOTM)) |
| 769 | do_bootm(ctx->cmdtp, 0, bootm_argc, bootm_argv); |
| 770 | /* Try booting an AArch64 Linux kernel image */ |
| 771 | else if (IS_ENABLED(CONFIG_CMD_BOOTI)) |
| 772 | do_booti(ctx->cmdtp, 0, bootm_argc, bootm_argv); |
| 773 | /* Try booting a Image */ |
| 774 | else if (IS_ENABLED(CONFIG_CMD_BOOTZ)) |
| 775 | do_bootz(ctx->cmdtp, 0, bootm_argc, bootm_argv); |
| 776 | /* Try booting an x86_64 Linux kernel image */ |
| 777 | else if (IS_ENABLED(CONFIG_CMD_ZBOOT)) |
| 778 | do_zboot_parent(ctx->cmdtp, 0, zboot_argc, zboot_argv, NULL); |
| 779 | |
| 780 | unmap_sysmem(buf); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 781 | |
| 782 | cleanup: |
Simon Glass | 929860b | 2021-10-14 12:48:02 -0600 | [diff] [blame] | 783 | free(fit_addr); |
| 784 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 785 | return 1; |
| 786 | } |
| 787 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 788 | /** enum token_type - Tokens for the pxe file parser */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 789 | enum token_type { |
| 790 | T_EOL, |
| 791 | T_STRING, |
| 792 | T_EOF, |
| 793 | T_MENU, |
| 794 | T_TITLE, |
| 795 | T_TIMEOUT, |
| 796 | T_LABEL, |
| 797 | T_KERNEL, |
| 798 | T_LINUX, |
| 799 | T_APPEND, |
| 800 | T_INITRD, |
| 801 | T_LOCALBOOT, |
| 802 | T_DEFAULT, |
| 803 | T_PROMPT, |
| 804 | T_INCLUDE, |
| 805 | T_FDT, |
| 806 | T_FDTDIR, |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 807 | T_FDTOVERLAYS, |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 808 | T_ONTIMEOUT, |
| 809 | T_IPAPPEND, |
| 810 | T_BACKGROUND, |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 811 | T_KASLRSEED, |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 812 | T_INVALID |
| 813 | }; |
| 814 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 815 | /** struct token - token - given by a value and a type */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 816 | struct token { |
| 817 | char *val; |
| 818 | enum token_type type; |
| 819 | }; |
| 820 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 821 | /* Keywords recognized */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 822 | static const struct token keywords[] = { |
| 823 | {"menu", T_MENU}, |
| 824 | {"title", T_TITLE}, |
| 825 | {"timeout", T_TIMEOUT}, |
| 826 | {"default", T_DEFAULT}, |
| 827 | {"prompt", T_PROMPT}, |
| 828 | {"label", T_LABEL}, |
| 829 | {"kernel", T_KERNEL}, |
| 830 | {"linux", T_LINUX}, |
| 831 | {"localboot", T_LOCALBOOT}, |
| 832 | {"append", T_APPEND}, |
| 833 | {"initrd", T_INITRD}, |
| 834 | {"include", T_INCLUDE}, |
| 835 | {"devicetree", T_FDT}, |
| 836 | {"fdt", T_FDT}, |
| 837 | {"devicetreedir", T_FDTDIR}, |
| 838 | {"fdtdir", T_FDTDIR}, |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 839 | {"fdtoverlays", T_FDTOVERLAYS}, |
Edoardo Tomelleri | 35821a2 | 2022-09-21 15:26:33 +0200 | [diff] [blame] | 840 | {"devicetree-overlay", T_FDTOVERLAYS}, |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 841 | {"ontimeout", T_ONTIMEOUT,}, |
| 842 | {"ipappend", T_IPAPPEND,}, |
| 843 | {"background", T_BACKGROUND,}, |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 844 | {"kaslrseed", T_KASLRSEED,}, |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 845 | {NULL, T_INVALID} |
| 846 | }; |
| 847 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 848 | /** |
| 849 | * enum lex_state - lexer state |
| 850 | * |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 851 | * Since pxe(linux) files don't have a token to identify the start of a |
| 852 | * literal, we have to keep track of when we're in a state where a literal is |
| 853 | * expected vs when we're in a state a keyword is expected. |
| 854 | */ |
| 855 | enum lex_state { |
| 856 | L_NORMAL = 0, |
| 857 | L_KEYWORD, |
| 858 | L_SLITERAL |
| 859 | }; |
| 860 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 861 | /** |
| 862 | * get_string() - retrieves a string from *p and stores it as a token in *t. |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 863 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 864 | * This is used for scanning both string literals and keywords. |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 865 | * |
| 866 | * Characters from *p are copied into t-val until a character equal to |
| 867 | * delim is found, or a NUL byte is reached. If delim has the special value of |
| 868 | * ' ', any whitespace character will be used as a delimiter. |
| 869 | * |
| 870 | * If lower is unequal to 0, uppercase characters will be converted to |
| 871 | * lowercase in the result. This is useful to make keywords case |
| 872 | * insensitive. |
| 873 | * |
| 874 | * The location of *p is updated to point to the first character after the end |
| 875 | * of the token - the ending delimiter. |
| 876 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 877 | * Memory for t->val is allocated using malloc and must be free()'d to reclaim |
| 878 | * it. |
| 879 | * |
| 880 | * @p: Points to a pointer to the current position in the input being processed. |
| 881 | * Updated to point at the first character after the current token |
| 882 | * @t: Pointers to a token to fill in |
| 883 | * @delim: Delimiter character to look for, either newline or space |
| 884 | * @lower: true to convert the string to lower case when storing |
| 885 | * Returns the new value of t->val, on success, NULL if out of memory |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 886 | */ |
| 887 | static char *get_string(char **p, struct token *t, char delim, int lower) |
| 888 | { |
| 889 | char *b, *e; |
| 890 | size_t len, i; |
| 891 | |
| 892 | /* |
| 893 | * b and e both start at the beginning of the input stream. |
| 894 | * |
| 895 | * e is incremented until we find the ending delimiter, or a NUL byte |
| 896 | * is reached. Then, we take e - b to find the length of the token. |
| 897 | */ |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 898 | b = *p; |
| 899 | e = *p; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 900 | while (*e) { |
| 901 | if ((delim == ' ' && isspace(*e)) || delim == *e) |
| 902 | break; |
| 903 | e++; |
| 904 | } |
| 905 | |
| 906 | len = e - b; |
| 907 | |
| 908 | /* |
| 909 | * Allocate memory to hold the string, and copy it in, converting |
| 910 | * characters to lowercase if lower is != 0. |
| 911 | */ |
| 912 | t->val = malloc(len + 1); |
| 913 | if (!t->val) |
| 914 | return NULL; |
| 915 | |
| 916 | for (i = 0; i < len; i++, b++) { |
| 917 | if (lower) |
| 918 | t->val[i] = tolower(*b); |
| 919 | else |
| 920 | t->val[i] = *b; |
| 921 | } |
| 922 | |
| 923 | t->val[len] = '\0'; |
| 924 | |
Simon Glass | 929860b | 2021-10-14 12:48:02 -0600 | [diff] [blame] | 925 | /* Update *p so the caller knows where to continue scanning */ |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 926 | *p = e; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 927 | t->type = T_STRING; |
| 928 | |
| 929 | return t->val; |
| 930 | } |
| 931 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 932 | /** |
| 933 | * get_keyword() - Populate a keyword token with a type and value |
| 934 | * |
| 935 | * Updates the ->type field based on the keyword string in @val |
| 936 | * @t: Token to populate |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 937 | */ |
| 938 | static void get_keyword(struct token *t) |
| 939 | { |
| 940 | int i; |
| 941 | |
| 942 | for (i = 0; keywords[i].val; i++) { |
| 943 | if (!strcmp(t->val, keywords[i].val)) { |
| 944 | t->type = keywords[i].type; |
| 945 | break; |
| 946 | } |
| 947 | } |
| 948 | } |
| 949 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 950 | /** |
| 951 | * get_token() - Get the next token |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 952 | * |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 953 | * We have to keep track of which state we're in to know if we're looking to get |
| 954 | * a string literal or a keyword. |
| 955 | * |
| 956 | * @p: Points to a pointer to the current position in the input being processed. |
| 957 | * Updated to point at the first character after the current token |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 958 | */ |
| 959 | static void get_token(char **p, struct token *t, enum lex_state state) |
| 960 | { |
| 961 | char *c = *p; |
| 962 | |
| 963 | t->type = T_INVALID; |
| 964 | |
| 965 | /* eat non EOL whitespace */ |
| 966 | while (isblank(*c)) |
| 967 | c++; |
| 968 | |
| 969 | /* |
| 970 | * eat comments. note that string literals can't begin with #, but |
| 971 | * can contain a # after their first character. |
| 972 | */ |
| 973 | if (*c == '#') { |
| 974 | while (*c && *c != '\n') |
| 975 | c++; |
| 976 | } |
| 977 | |
| 978 | if (*c == '\n') { |
| 979 | t->type = T_EOL; |
| 980 | c++; |
| 981 | } else if (*c == '\0') { |
| 982 | t->type = T_EOF; |
| 983 | c++; |
| 984 | } else if (state == L_SLITERAL) { |
| 985 | get_string(&c, t, '\n', 0); |
| 986 | } else if (state == L_KEYWORD) { |
| 987 | /* |
| 988 | * when we expect a keyword, we first get the next string |
| 989 | * token delimited by whitespace, and then check if it |
| 990 | * matches a keyword in our keyword list. if it does, it's |
| 991 | * converted to a keyword token of the appropriate type, and |
| 992 | * if not, it remains a string token. |
| 993 | */ |
| 994 | get_string(&c, t, ' ', 1); |
| 995 | get_keyword(t); |
| 996 | } |
| 997 | |
| 998 | *p = c; |
| 999 | } |
| 1000 | |
Simon Glass | 18109cc | 2021-10-14 12:48:01 -0600 | [diff] [blame] | 1001 | /** |
| 1002 | * eol_or_eof() - Find end of line |
| 1003 | * |
| 1004 | * Increment *c until we get to the end of the current line, or EOF |
| 1005 | * |
| 1006 | * @c: Points to a pointer to the current position in the input being processed. |
| 1007 | * Updated to point at the first character after the current token |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1008 | */ |
| 1009 | static void eol_or_eof(char **c) |
| 1010 | { |
| 1011 | while (**c && **c != '\n') |
| 1012 | (*c)++; |
| 1013 | } |
| 1014 | |
| 1015 | /* |
| 1016 | * All of these parse_* functions share some common behavior. |
| 1017 | * |
| 1018 | * They finish with *c pointing after the token they parse, and return 1 on |
| 1019 | * success, or < 0 on error. |
| 1020 | */ |
| 1021 | |
| 1022 | /* |
| 1023 | * Parse a string literal and store a pointer it at *dst. String literals |
| 1024 | * terminate at the end of the line. |
| 1025 | */ |
| 1026 | static int parse_sliteral(char **c, char **dst) |
| 1027 | { |
| 1028 | struct token t; |
| 1029 | char *s = *c; |
| 1030 | |
| 1031 | get_token(c, &t, L_SLITERAL); |
| 1032 | |
| 1033 | if (t.type != T_STRING) { |
| 1034 | printf("Expected string literal: %.*s\n", (int)(*c - s), s); |
| 1035 | return -EINVAL; |
| 1036 | } |
| 1037 | |
| 1038 | *dst = t.val; |
| 1039 | |
| 1040 | return 1; |
| 1041 | } |
| 1042 | |
| 1043 | /* |
| 1044 | * Parse a base 10 (unsigned) integer and store it at *dst. |
| 1045 | */ |
| 1046 | static int parse_integer(char **c, int *dst) |
| 1047 | { |
| 1048 | struct token t; |
| 1049 | char *s = *c; |
| 1050 | |
| 1051 | get_token(c, &t, L_SLITERAL); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1052 | if (t.type != T_STRING) { |
| 1053 | printf("Expected string: %.*s\n", (int)(*c - s), s); |
| 1054 | return -EINVAL; |
| 1055 | } |
| 1056 | |
| 1057 | *dst = simple_strtol(t.val, NULL, 10); |
| 1058 | |
| 1059 | free(t.val); |
| 1060 | |
| 1061 | return 1; |
| 1062 | } |
| 1063 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1064 | static int parse_pxefile_top(struct pxe_context *ctx, char *p, ulong base, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1065 | struct pxe_menu *cfg, int nest_level); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1066 | |
| 1067 | /* |
| 1068 | * Parse an include statement, and retrieve and parse the file it mentions. |
| 1069 | * |
| 1070 | * base should point to a location where it's safe to store the file, and |
| 1071 | * nest_level should indicate how many nested includes have occurred. For this |
| 1072 | * include, nest_level has already been incremented and doesn't need to be |
| 1073 | * incremented here. |
| 1074 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1075 | static int handle_include(struct pxe_context *ctx, char **c, unsigned long base, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1076 | struct pxe_menu *cfg, int nest_level) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1077 | { |
| 1078 | char *include_path; |
| 1079 | char *s = *c; |
| 1080 | int err; |
| 1081 | char *buf; |
| 1082 | int ret; |
| 1083 | |
| 1084 | err = parse_sliteral(c, &include_path); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1085 | if (err < 0) { |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1086 | printf("Expected include path: %.*s\n", (int)(*c - s), s); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1087 | return err; |
| 1088 | } |
| 1089 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1090 | err = get_pxe_file(ctx, include_path, base); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1091 | if (err < 0) { |
| 1092 | printf("Couldn't retrieve %s\n", include_path); |
| 1093 | return err; |
| 1094 | } |
| 1095 | |
| 1096 | buf = map_sysmem(base, 0); |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1097 | ret = parse_pxefile_top(ctx, buf, base, cfg, nest_level); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1098 | unmap_sysmem(buf); |
| 1099 | |
| 1100 | return ret; |
| 1101 | } |
| 1102 | |
| 1103 | /* |
| 1104 | * Parse lines that begin with 'menu'. |
| 1105 | * |
| 1106 | * base and nest are provided to handle the 'menu include' case. |
| 1107 | * |
| 1108 | * base should point to a location where it's safe to store the included file. |
| 1109 | * |
| 1110 | * nest_level should be 1 when parsing the top level pxe file, 2 when parsing |
| 1111 | * a file it includes, 3 when parsing a file included by that file, and so on. |
| 1112 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1113 | static int parse_menu(struct pxe_context *ctx, char **c, struct pxe_menu *cfg, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1114 | unsigned long base, int nest_level) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1115 | { |
| 1116 | struct token t; |
| 1117 | char *s = *c; |
| 1118 | int err = 0; |
| 1119 | |
| 1120 | get_token(c, &t, L_KEYWORD); |
| 1121 | |
| 1122 | switch (t.type) { |
| 1123 | case T_TITLE: |
| 1124 | err = parse_sliteral(c, &cfg->title); |
| 1125 | |
| 1126 | break; |
| 1127 | |
| 1128 | case T_INCLUDE: |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1129 | err = handle_include(ctx, c, base, cfg, nest_level + 1); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1130 | break; |
| 1131 | |
| 1132 | case T_BACKGROUND: |
| 1133 | err = parse_sliteral(c, &cfg->bmp); |
| 1134 | break; |
| 1135 | |
| 1136 | default: |
| 1137 | printf("Ignoring malformed menu command: %.*s\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1138 | (int)(*c - s), s); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1139 | } |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1140 | if (err < 0) |
| 1141 | return err; |
| 1142 | |
| 1143 | eol_or_eof(c); |
| 1144 | |
| 1145 | return 1; |
| 1146 | } |
| 1147 | |
| 1148 | /* |
| 1149 | * Handles parsing a 'menu line' when we're parsing a label. |
| 1150 | */ |
| 1151 | static int parse_label_menu(char **c, struct pxe_menu *cfg, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1152 | struct pxe_label *label) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1153 | { |
| 1154 | struct token t; |
| 1155 | char *s; |
| 1156 | |
| 1157 | s = *c; |
| 1158 | |
| 1159 | get_token(c, &t, L_KEYWORD); |
| 1160 | |
| 1161 | switch (t.type) { |
| 1162 | case T_DEFAULT: |
| 1163 | if (!cfg->default_label) |
| 1164 | cfg->default_label = strdup(label->name); |
| 1165 | |
| 1166 | if (!cfg->default_label) |
| 1167 | return -ENOMEM; |
| 1168 | |
| 1169 | break; |
| 1170 | case T_LABEL: |
| 1171 | parse_sliteral(c, &label->menu); |
| 1172 | break; |
| 1173 | default: |
| 1174 | printf("Ignoring malformed menu command: %.*s\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1175 | (int)(*c - s), s); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1176 | } |
| 1177 | |
| 1178 | eol_or_eof(c); |
| 1179 | |
| 1180 | return 0; |
| 1181 | } |
| 1182 | |
| 1183 | /* |
| 1184 | * Handles parsing a 'kernel' label. |
| 1185 | * expecting "filename" or "<fit_filename>#cfg" |
| 1186 | */ |
| 1187 | static int parse_label_kernel(char **c, struct pxe_label *label) |
| 1188 | { |
| 1189 | char *s; |
| 1190 | int err; |
| 1191 | |
| 1192 | err = parse_sliteral(c, &label->kernel); |
| 1193 | if (err < 0) |
| 1194 | return err; |
| 1195 | |
Patrick Delaunay | a5dacef | 2022-10-28 11:01:19 +0200 | [diff] [blame] | 1196 | /* copy the kernel label to compare with FDT / INITRD when FIT is used */ |
| 1197 | label->kernel_label = strdup(label->kernel); |
| 1198 | if (!label->kernel_label) |
| 1199 | return -ENOMEM; |
| 1200 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1201 | s = strstr(label->kernel, "#"); |
| 1202 | if (!s) |
| 1203 | return 1; |
| 1204 | |
Patrick Delaunay | 51c5c28 | 2022-10-28 11:01:20 +0200 | [diff] [blame] | 1205 | label->config = strdup(s); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1206 | if (!label->config) |
| 1207 | return -ENOMEM; |
| 1208 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1209 | *s = 0; |
| 1210 | |
| 1211 | return 1; |
| 1212 | } |
| 1213 | |
| 1214 | /* |
| 1215 | * Parses a label and adds it to the list of labels for a menu. |
| 1216 | * |
| 1217 | * A label ends when we either get to the end of a file, or |
| 1218 | * get some input we otherwise don't have a handler defined |
| 1219 | * for. |
| 1220 | * |
| 1221 | */ |
| 1222 | static int parse_label(char **c, struct pxe_menu *cfg) |
| 1223 | { |
| 1224 | struct token t; |
| 1225 | int len; |
| 1226 | char *s = *c; |
| 1227 | struct pxe_label *label; |
| 1228 | int err; |
| 1229 | |
| 1230 | label = label_create(); |
| 1231 | if (!label) |
| 1232 | return -ENOMEM; |
| 1233 | |
| 1234 | err = parse_sliteral(c, &label->name); |
| 1235 | if (err < 0) { |
| 1236 | printf("Expected label name: %.*s\n", (int)(*c - s), s); |
| 1237 | label_destroy(label); |
| 1238 | return -EINVAL; |
| 1239 | } |
| 1240 | |
| 1241 | list_add_tail(&label->list, &cfg->labels); |
| 1242 | |
| 1243 | while (1) { |
| 1244 | s = *c; |
| 1245 | get_token(c, &t, L_KEYWORD); |
| 1246 | |
| 1247 | err = 0; |
| 1248 | switch (t.type) { |
| 1249 | case T_MENU: |
| 1250 | err = parse_label_menu(c, cfg, label); |
| 1251 | break; |
| 1252 | |
| 1253 | case T_KERNEL: |
| 1254 | case T_LINUX: |
| 1255 | err = parse_label_kernel(c, label); |
| 1256 | break; |
| 1257 | |
| 1258 | case T_APPEND: |
| 1259 | err = parse_sliteral(c, &label->append); |
| 1260 | if (label->initrd) |
| 1261 | break; |
| 1262 | s = strstr(label->append, "initrd="); |
| 1263 | if (!s) |
| 1264 | break; |
| 1265 | s += 7; |
| 1266 | len = (int)(strchr(s, ' ') - s); |
| 1267 | label->initrd = malloc(len + 1); |
| 1268 | strncpy(label->initrd, s, len); |
| 1269 | label->initrd[len] = '\0'; |
| 1270 | |
| 1271 | break; |
| 1272 | |
| 1273 | case T_INITRD: |
| 1274 | if (!label->initrd) |
| 1275 | err = parse_sliteral(c, &label->initrd); |
| 1276 | break; |
| 1277 | |
| 1278 | case T_FDT: |
| 1279 | if (!label->fdt) |
| 1280 | err = parse_sliteral(c, &label->fdt); |
| 1281 | break; |
| 1282 | |
| 1283 | case T_FDTDIR: |
| 1284 | if (!label->fdtdir) |
| 1285 | err = parse_sliteral(c, &label->fdtdir); |
| 1286 | break; |
| 1287 | |
Neil Armstrong | 69076df | 2021-01-20 09:54:53 +0100 | [diff] [blame] | 1288 | case T_FDTOVERLAYS: |
| 1289 | if (!label->fdtoverlays) |
| 1290 | err = parse_sliteral(c, &label->fdtoverlays); |
| 1291 | break; |
| 1292 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1293 | case T_LOCALBOOT: |
| 1294 | label->localboot = 1; |
| 1295 | err = parse_integer(c, &label->localboot_val); |
| 1296 | break; |
| 1297 | |
| 1298 | case T_IPAPPEND: |
| 1299 | err = parse_integer(c, &label->ipappend); |
| 1300 | break; |
| 1301 | |
Zhang Ning | 0290146 | 2022-02-01 08:33:37 +0800 | [diff] [blame] | 1302 | case T_KASLRSEED: |
| 1303 | label->kaslrseed = 1; |
| 1304 | break; |
| 1305 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1306 | case T_EOL: |
| 1307 | break; |
| 1308 | |
| 1309 | default: |
| 1310 | /* |
| 1311 | * put the token back! we don't want it - it's the end |
| 1312 | * of a label and whatever token this is, it's |
| 1313 | * something for the menu level context to handle. |
| 1314 | */ |
| 1315 | *c = s; |
| 1316 | return 1; |
| 1317 | } |
| 1318 | |
| 1319 | if (err < 0) |
| 1320 | return err; |
| 1321 | } |
| 1322 | } |
| 1323 | |
| 1324 | /* |
| 1325 | * This 16 comes from the limit pxelinux imposes on nested includes. |
| 1326 | * |
| 1327 | * There is no reason at all we couldn't do more, but some limit helps prevent |
| 1328 | * infinite (until crash occurs) recursion if a file tries to include itself. |
| 1329 | */ |
| 1330 | #define MAX_NEST_LEVEL 16 |
| 1331 | |
| 1332 | /* |
| 1333 | * Entry point for parsing a menu file. nest_level indicates how many times |
| 1334 | * we've nested in includes. It will be 1 for the top level menu file. |
| 1335 | * |
| 1336 | * Returns 1 on success, < 0 on error. |
| 1337 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1338 | static int parse_pxefile_top(struct pxe_context *ctx, char *p, unsigned long base, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1339 | struct pxe_menu *cfg, int nest_level) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1340 | { |
| 1341 | struct token t; |
| 1342 | char *s, *b, *label_name; |
| 1343 | int err; |
| 1344 | |
| 1345 | b = p; |
| 1346 | |
| 1347 | if (nest_level > MAX_NEST_LEVEL) { |
| 1348 | printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL); |
| 1349 | return -EMLINK; |
| 1350 | } |
| 1351 | |
| 1352 | while (1) { |
| 1353 | s = p; |
| 1354 | |
| 1355 | get_token(&p, &t, L_KEYWORD); |
| 1356 | |
| 1357 | err = 0; |
| 1358 | switch (t.type) { |
| 1359 | case T_MENU: |
| 1360 | cfg->prompt = 1; |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1361 | err = parse_menu(ctx, &p, cfg, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1362 | base + ALIGN(strlen(b) + 1, 4), |
| 1363 | nest_level); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1364 | break; |
| 1365 | |
| 1366 | case T_TIMEOUT: |
| 1367 | err = parse_integer(&p, &cfg->timeout); |
| 1368 | break; |
| 1369 | |
| 1370 | case T_LABEL: |
| 1371 | err = parse_label(&p, cfg); |
| 1372 | break; |
| 1373 | |
| 1374 | case T_DEFAULT: |
| 1375 | case T_ONTIMEOUT: |
| 1376 | err = parse_sliteral(&p, &label_name); |
| 1377 | |
| 1378 | if (label_name) { |
| 1379 | if (cfg->default_label) |
| 1380 | free(cfg->default_label); |
| 1381 | |
| 1382 | cfg->default_label = label_name; |
| 1383 | } |
| 1384 | |
| 1385 | break; |
| 1386 | |
| 1387 | case T_INCLUDE: |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1388 | err = handle_include(ctx, &p, |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1389 | base + ALIGN(strlen(b), 4), cfg, |
| 1390 | nest_level + 1); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1391 | break; |
| 1392 | |
| 1393 | case T_PROMPT: |
Manuel Traut | 739e836 | 2022-11-18 09:00:27 +0100 | [diff] [blame] | 1394 | err = parse_integer(&p, &cfg->prompt); |
| 1395 | // Do not fail if prompt configuration is undefined |
| 1396 | if (err < 0) |
| 1397 | eol_or_eof(&p); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1398 | break; |
| 1399 | |
| 1400 | case T_EOL: |
| 1401 | break; |
| 1402 | |
| 1403 | case T_EOF: |
| 1404 | return 1; |
| 1405 | |
| 1406 | default: |
| 1407 | printf("Ignoring unknown command: %.*s\n", |
Patrice Chotard | 8cb22a6 | 2019-11-25 09:07:39 +0100 | [diff] [blame] | 1408 | (int)(p - s), s); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1409 | eol_or_eof(&p); |
| 1410 | } |
| 1411 | |
| 1412 | if (err < 0) |
| 1413 | return err; |
| 1414 | } |
| 1415 | } |
| 1416 | |
| 1417 | /* |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1418 | */ |
| 1419 | void destroy_pxe_menu(struct pxe_menu *cfg) |
| 1420 | { |
| 1421 | struct list_head *pos, *n; |
| 1422 | struct pxe_label *label; |
| 1423 | |
Simon Glass | 929860b | 2021-10-14 12:48:02 -0600 | [diff] [blame] | 1424 | free(cfg->title); |
| 1425 | free(cfg->default_label); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1426 | |
| 1427 | list_for_each_safe(pos, n, &cfg->labels) { |
| 1428 | label = list_entry(pos, struct pxe_label, list); |
| 1429 | |
| 1430 | label_destroy(label); |
| 1431 | } |
| 1432 | |
| 1433 | free(cfg); |
| 1434 | } |
| 1435 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1436 | struct pxe_menu *parse_pxefile(struct pxe_context *ctx, unsigned long menucfg) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1437 | { |
| 1438 | struct pxe_menu *cfg; |
| 1439 | char *buf; |
| 1440 | int r; |
| 1441 | |
| 1442 | cfg = malloc(sizeof(struct pxe_menu)); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1443 | if (!cfg) |
| 1444 | return NULL; |
| 1445 | |
| 1446 | memset(cfg, 0, sizeof(struct pxe_menu)); |
| 1447 | |
| 1448 | INIT_LIST_HEAD(&cfg->labels); |
| 1449 | |
| 1450 | buf = map_sysmem(menucfg, 0); |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1451 | r = parse_pxefile_top(ctx, buf, menucfg, cfg, 1); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1452 | unmap_sysmem(buf); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1453 | if (r < 0) { |
| 1454 | destroy_pxe_menu(cfg); |
| 1455 | return NULL; |
| 1456 | } |
| 1457 | |
| 1458 | return cfg; |
| 1459 | } |
| 1460 | |
| 1461 | /* |
| 1462 | * Converts a pxe_menu struct into a menu struct for use with U-Boot's generic |
| 1463 | * menu code. |
| 1464 | */ |
| 1465 | static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg) |
| 1466 | { |
| 1467 | struct pxe_label *label; |
| 1468 | struct list_head *pos; |
| 1469 | struct menu *m; |
Amjad Ouled-Ameur | c296979 | 2021-11-13 14:09:20 +0100 | [diff] [blame] | 1470 | char *label_override; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1471 | int err; |
| 1472 | int i = 1; |
| 1473 | char *default_num = NULL; |
Amjad Ouled-Ameur | c296979 | 2021-11-13 14:09:20 +0100 | [diff] [blame] | 1474 | char *override_num = NULL; |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1475 | |
| 1476 | /* |
| 1477 | * Create a menu and add items for all the labels. |
| 1478 | */ |
| 1479 | m = menu_create(cfg->title, DIV_ROUND_UP(cfg->timeout, 10), |
Thirupathaiah Annapureddy | 5168d7a | 2020-03-18 11:38:42 -0700 | [diff] [blame] | 1480 | cfg->prompt, NULL, label_print, NULL, NULL); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1481 | if (!m) |
| 1482 | return NULL; |
| 1483 | |
Amjad Ouled-Ameur | c296979 | 2021-11-13 14:09:20 +0100 | [diff] [blame] | 1484 | label_override = env_get("pxe_label_override"); |
| 1485 | |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1486 | list_for_each(pos, &cfg->labels) { |
| 1487 | label = list_entry(pos, struct pxe_label, list); |
| 1488 | |
| 1489 | sprintf(label->num, "%d", i++); |
| 1490 | if (menu_item_add(m, label->num, label) != 1) { |
| 1491 | menu_destroy(m); |
| 1492 | return NULL; |
| 1493 | } |
| 1494 | if (cfg->default_label && |
| 1495 | (strcmp(label->name, cfg->default_label) == 0)) |
| 1496 | default_num = label->num; |
Amjad Ouled-Ameur | c296979 | 2021-11-13 14:09:20 +0100 | [diff] [blame] | 1497 | if (label_override && !strcmp(label->name, label_override)) |
| 1498 | override_num = label->num; |
| 1499 | } |
| 1500 | |
| 1501 | |
| 1502 | if (label_override) { |
| 1503 | if (override_num) |
| 1504 | default_num = override_num; |
| 1505 | else |
| 1506 | printf("Missing override pxe label: %s\n", |
| 1507 | label_override); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1508 | } |
| 1509 | |
| 1510 | /* |
| 1511 | * After we've created items for each label in the menu, set the |
| 1512 | * menu's default label if one was specified. |
| 1513 | */ |
| 1514 | if (default_num) { |
| 1515 | err = menu_default_set(m, default_num); |
| 1516 | if (err != 1) { |
| 1517 | if (err != -ENOENT) { |
| 1518 | menu_destroy(m); |
| 1519 | return NULL; |
| 1520 | } |
| 1521 | |
| 1522 | printf("Missing default: %s\n", cfg->default_label); |
| 1523 | } |
| 1524 | } |
| 1525 | |
| 1526 | return m; |
| 1527 | } |
| 1528 | |
| 1529 | /* |
| 1530 | * Try to boot any labels we have yet to attempt to boot. |
| 1531 | */ |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1532 | static void boot_unattempted_labels(struct pxe_context *ctx, |
| 1533 | struct pxe_menu *cfg) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1534 | { |
| 1535 | struct list_head *pos; |
| 1536 | struct pxe_label *label; |
| 1537 | |
| 1538 | list_for_each(pos, &cfg->labels) { |
| 1539 | label = list_entry(pos, struct pxe_label, list); |
| 1540 | |
| 1541 | if (!label->attempted) |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1542 | label_boot(ctx, label); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1543 | } |
| 1544 | } |
| 1545 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1546 | void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg) |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1547 | { |
| 1548 | void *choice; |
| 1549 | struct menu *m; |
| 1550 | int err; |
| 1551 | |
Kory Maincent | ff0287e | 2021-02-02 16:42:28 +0100 | [diff] [blame] | 1552 | if (IS_ENABLED(CONFIG_CMD_BMP)) { |
| 1553 | /* display BMP if available */ |
| 1554 | if (cfg->bmp) { |
Simon Glass | 4d79e88 | 2021-10-14 12:48:08 -0600 | [diff] [blame] | 1555 | if (get_relfile(ctx, cfg->bmp, image_load_addr, NULL)) { |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 1556 | #if defined(CONFIG_VIDEO) |
Patrick Delaunay | e6fe02a | 2022-03-22 17:08:43 +0100 | [diff] [blame] | 1557 | struct udevice *dev; |
| 1558 | |
| 1559 | err = uclass_first_device_err(UCLASS_VIDEO, &dev); |
| 1560 | if (!err) |
| 1561 | video_clear(dev); |
| 1562 | #endif |
Kory Maincent | ff0287e | 2021-02-02 16:42:28 +0100 | [diff] [blame] | 1563 | bmp_display(image_load_addr, |
| 1564 | BMP_ALIGN_CENTER, BMP_ALIGN_CENTER); |
| 1565 | } else { |
| 1566 | printf("Skipping background bmp %s for failure\n", |
| 1567 | cfg->bmp); |
| 1568 | } |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1569 | } |
| 1570 | } |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1571 | |
| 1572 | m = pxe_menu_to_menu(cfg); |
| 1573 | if (!m) |
| 1574 | return; |
| 1575 | |
| 1576 | err = menu_get_choice(m, &choice); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1577 | menu_destroy(m); |
| 1578 | |
| 1579 | /* |
| 1580 | * err == 1 means we got a choice back from menu_get_choice. |
| 1581 | * |
| 1582 | * err == -ENOENT if the menu was setup to select the default but no |
| 1583 | * default was set. in that case, we should continue trying to boot |
| 1584 | * labels that haven't been attempted yet. |
| 1585 | * |
| 1586 | * otherwise, the user interrupted or there was some other error and |
| 1587 | * we give up. |
| 1588 | */ |
| 1589 | |
| 1590 | if (err == 1) { |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1591 | err = label_boot(ctx, choice); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1592 | if (!err) |
| 1593 | return; |
| 1594 | } else if (err != -ENOENT) { |
| 1595 | return; |
| 1596 | } |
| 1597 | |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1598 | boot_unattempted_labels(ctx, cfg); |
| 1599 | } |
| 1600 | |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 1601 | int pxe_setup_ctx(struct pxe_context *ctx, struct cmd_tbl *cmdtp, |
| 1602 | pxe_getfile_func getfile, void *userdata, |
Sean Edmond | 7d01889 | 2023-04-11 10:48:47 -0700 | [diff] [blame] | 1603 | bool allow_abs_path, const char *bootfile, bool use_ipv6) |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1604 | { |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 1605 | const char *last_slash; |
| 1606 | size_t path_len = 0; |
| 1607 | |
| 1608 | memset(ctx, '\0', sizeof(*ctx)); |
Simon Glass | fd3fa5c | 2021-10-14 12:47:56 -0600 | [diff] [blame] | 1609 | ctx->cmdtp = cmdtp; |
Simon Glass | b1ead6b | 2021-10-14 12:47:57 -0600 | [diff] [blame] | 1610 | ctx->getfile = getfile; |
Simon Glass | 4ad5d51 | 2021-10-14 12:47:58 -0600 | [diff] [blame] | 1611 | ctx->userdata = userdata; |
Simon Glass | 8018b9a | 2021-10-14 12:47:59 -0600 | [diff] [blame] | 1612 | ctx->allow_abs_path = allow_abs_path; |
Sean Edmond | 7d01889 | 2023-04-11 10:48:47 -0700 | [diff] [blame] | 1613 | ctx->use_ipv6 = use_ipv6; |
Simon Glass | 12df842 | 2021-10-14 12:48:04 -0600 | [diff] [blame] | 1614 | |
| 1615 | /* figure out the boot directory, if there is one */ |
| 1616 | if (bootfile && strlen(bootfile) >= MAX_TFTP_PATH_LEN) |
| 1617 | return -ENOSPC; |
| 1618 | ctx->bootdir = strdup(bootfile ? bootfile : ""); |
| 1619 | if (!ctx->bootdir) |
| 1620 | return -ENOMEM; |
| 1621 | |
| 1622 | if (bootfile) { |
| 1623 | last_slash = strrchr(bootfile, '/'); |
| 1624 | if (last_slash) |
| 1625 | path_len = (last_slash - bootfile) + 1; |
| 1626 | } |
| 1627 | ctx->bootdir[path_len] = '\0'; |
| 1628 | |
| 1629 | return 0; |
| 1630 | } |
| 1631 | |
| 1632 | void pxe_destroy_ctx(struct pxe_context *ctx) |
| 1633 | { |
| 1634 | free(ctx->bootdir); |
Patrice Chotard | 2373cba | 2019-11-25 09:07:37 +0100 | [diff] [blame] | 1635 | } |
Simon Glass | 9e62e7c | 2021-10-14 12:48:03 -0600 | [diff] [blame] | 1636 | |
| 1637 | int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt) |
| 1638 | { |
| 1639 | struct pxe_menu *cfg; |
| 1640 | |
| 1641 | cfg = parse_pxefile(ctx, pxefile_addr_r); |
| 1642 | if (!cfg) { |
| 1643 | printf("Error parsing config file\n"); |
| 1644 | return 1; |
| 1645 | } |
| 1646 | |
| 1647 | if (prompt) |
| 1648 | cfg->prompt = 1; |
| 1649 | |
| 1650 | handle_pxe_menu(ctx, cfg); |
| 1651 | |
| 1652 | destroy_pxe_menu(cfg); |
| 1653 | |
| 1654 | return 0; |
| 1655 | } |