1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2010-2011 Calxeda, Inc.
4 * Copyright (c) 2014, NVIDIA CORPORATION. All rights reserved.
16 #include <fdt_support.h>
18 #include <linux/libfdt.h>
19 #include <linux/string.h>
20 #include <linux/ctype.h>
22 #include <linux/list.h>
34 #include "pxe_utils.h"
36 #define MAX_TFTP_PATH_LEN 512
38 int pxe_get_file_size(ulong *sizep)
42 val = from_env("filesize");
46 if (strict_strtoul(val, 16, sizep) < 0)
53 * format_mac_pxe() - obtain a MAC address in the PXE format
55 * This produces a MAC-address string in the format for the current ethernet
58 * 01-aa-bb-cc-dd-ee-ff
60 * where aa-ff is the MAC address in hex
62 * @outbuf: Buffer to write string to
63 * @outbuf_len: length of buffer
64 * Return: 1 if OK, -ENOSPC if buffer is too small, -ENOENT is there is no
65 * current ethernet device
67 int format_mac_pxe(char *outbuf, size_t outbuf_len)
71 if (outbuf_len < 21) {
72 printf("outbuf is too small (%zd < 21)\n", outbuf_len);
76 if (!eth_env_get_enetaddr_by_index("eth", eth_get_dev_index(), ethaddr))
79 sprintf(outbuf, "01-%02x-%02x-%02x-%02x-%02x-%02x",
80 ethaddr[0], ethaddr[1], ethaddr[2],
81 ethaddr[3], ethaddr[4], ethaddr[5]);
87 * get_relfile() - read a file relative to the PXE file
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.
95 * @file_path: File path to read (relative to the PXE file)
96 * @file_addr: Address to load file to
97 * @filesizep: If not NULL, returns the file size in bytes
98 * Returns 1 for success, or < 0 on error
100 static int get_relfile(struct pxe_context *ctx, const char *file_path,
101 unsigned long file_addr, ulong *filesizep)
104 char relfile[MAX_TFTP_PATH_LEN + 1];
109 if (file_path[0] == '/' && ctx->allow_abs_path)
112 strncpy(relfile, ctx->bootdir, MAX_TFTP_PATH_LEN);
114 path_len = strlen(file_path) + strlen(relfile);
116 if (path_len > MAX_TFTP_PATH_LEN) {
117 printf("Base path too long (%s%s)\n", relfile, file_path);
119 return -ENAMETOOLONG;
122 strcat(relfile, file_path);
124 printf("Retrieving file: %s\n", relfile);
126 sprintf(addr_buf, "%lx", file_addr);
128 ret = ctx->getfile(ctx, relfile, addr_buf, &size);
130 return log_msg_ret("get", ret);
138 * get_pxe_file() - read a file
140 * The file is read and nul-terminated
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
147 int get_pxe_file(struct pxe_context *ctx, const char *file_path,
154 err = get_relfile(ctx, file_path, file_addr, &size);
158 buf = map_sysmem(file_addr + size, 1);
165 #define PXELINUX_DIR "pxelinux.cfg/"
168 * get_pxelinux_path() - Get a file in the pxelinux.cfg/ directory
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
175 int get_pxelinux_path(struct pxe_context *ctx, const char *file,
176 unsigned long pxefile_addr_r)
178 size_t base_len = strlen(PXELINUX_DIR);
179 char path[MAX_TFTP_PATH_LEN + 1];
181 if (base_len + strlen(file) > MAX_TFTP_PATH_LEN) {
182 printf("path (%s%s) too long, skipping\n",
184 return -ENAMETOOLONG;
187 sprintf(path, PXELINUX_DIR "%s", file);
189 return get_pxe_file(ctx, path, pxefile_addr_r);
193 * get_relfile_envaddr() - read a file to an address in an env var
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.
200 * @file_path: File path to read (relative to the PXE file)
201 * @envaddr_name: Name of environment variable which contains the address to
203 * @filesizep: Returns the file size in bytes
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
208 static int get_relfile_envaddr(struct pxe_context *ctx, const char *file_path,
209 const char *envaddr_name, ulong *filesizep)
211 unsigned long file_addr;
214 envaddr = from_env(envaddr_name);
218 if (strict_strtoul(envaddr, 16, &file_addr) < 0)
221 return get_relfile(ctx, file_path, file_addr, filesizep);
225 * label_create() - crate a new PXE label
227 * Allocates memory for and initializes a pxe_label. This uses malloc, so the
228 * result must be free()'d to reclaim the memory.
230 * Returns a pointer to the label, or NULL if out of memory
232 static struct pxe_label *label_create(void)
234 struct pxe_label *label;
236 label = malloc(sizeof(struct pxe_label));
240 memset(label, 0, sizeof(struct pxe_label));
246 * label_destroy() - free the memory used by a pxe_label
248 * This frees @label itself as well as memory used by its name,
249 * kernel, config, append, initrd, fdt, fdtdir and fdtoverlay members, if
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.
256 * @label: Label to free
258 static void label_destroy(struct pxe_label *label)
267 free(label->fdtoverlays);
272 * label_print() - Print a label and its string members if they're defined
274 * This is passed as a callback to the menu code for displaying each
277 * @data: Label to print (is cast to struct pxe_label *)
279 static void label_print(void *data)
281 struct pxe_label *label = data;
282 const char *c = label->menu ? label->menu : label->name;
284 printf("%s:\t%s\n", label->num, c);
288 * label_localboot() - Boot a label that specified 'localboot'
290 * This requires that the 'localcmd' environment variable is defined. Its
291 * contents will be executed as U-Boot commands. If the label specified an
292 * 'append' line, its contents will be used to overwrite the contents of the
293 * 'bootargs' environment variable prior to running 'localcmd'.
295 * @label: Label to process
296 * Returns 1 on success or < 0 on error
298 static int label_localboot(struct pxe_label *label)
302 localcmd = from_env("localcmd");
307 char bootargs[CONFIG_SYS_CBSIZE];
309 cli_simple_process_macros(label->append, bootargs,
311 env_set("bootargs", bootargs);
314 debug("running: %s\n", localcmd);
316 return run_command_list(localcmd, strlen(localcmd), 0);
320 * label_boot_kaslrseed generate kaslrseed from hw rng
323 static void label_boot_kaslrseed(void)
327 struct fdt_header *working_fdt;
334 /* Get the main fdt and map it */
335 fdt_addr = hextoul(env_get("fdt_addr_r"), NULL);
336 working_fdt = map_sysmem(fdt_addr, 0);
337 err = fdt_check_header(working_fdt);
341 /* add extra size for holding kaslr-seed */
342 /* err is new fdt size, 0 or negtive */
343 err = fdt_shrink_to_minimum(working_fdt, 512);
347 if (uclass_get_device(UCLASS_RNG, 0, &dev) || !dev) {
348 printf("No RNG device\n");
352 nodeoffset = fdt_find_or_add_subnode(working_fdt, 0, "chosen");
353 if (nodeoffset < 0) {
354 printf("Reading chosen node failed\n");
360 printf("Out of memory\n");
364 if (dm_rng_read(dev, buf, n)) {
365 printf("Reading RNG failed\n");
369 err = fdt_setprop(working_fdt, nodeoffset, "kaslr-seed", buf, sizeof(buf));
371 printf("Unable to set kaslr-seed on chosen node: %s\n", fdt_strerror(err));
381 * label_boot_fdtoverlay() - Loads fdt overlays specified in 'fdtoverlays'
382 * or 'devicetree-overlay'
385 * @label: Label to process
387 #ifdef CONFIG_OF_LIBFDT_OVERLAY
388 static void label_boot_fdtoverlay(struct pxe_context *ctx,
389 struct pxe_label *label)
391 char *fdtoverlay = label->fdtoverlays;
392 struct fdt_header *working_fdt;
393 char *fdtoverlay_addr_env;
394 ulong fdtoverlay_addr;
398 /* Get the main fdt and map it */
399 fdt_addr = hextoul(env_get("fdt_addr_r"), NULL);
400 working_fdt = map_sysmem(fdt_addr, 0);
401 err = fdt_check_header(working_fdt);
405 /* Get the specific overlay loading address */
406 fdtoverlay_addr_env = env_get("fdtoverlay_addr_r");
407 if (!fdtoverlay_addr_env) {
408 printf("Invalid fdtoverlay_addr_r for loading overlays\n");
412 fdtoverlay_addr = hextoul(fdtoverlay_addr_env, NULL);
414 /* Cycle over the overlay files and apply them in order */
416 struct fdt_header *blob;
421 /* Drop leading spaces */
422 while (*fdtoverlay == ' ')
425 /* Copy a single filename if multiple provided */
426 end = strstr(fdtoverlay, " ");
428 len = (int)(end - fdtoverlay);
429 overlayfile = malloc(len + 1);
430 strncpy(overlayfile, fdtoverlay, len);
431 overlayfile[len] = '\0';
433 overlayfile = fdtoverlay;
435 if (!strlen(overlayfile))
438 /* Load overlay file */
439 err = get_relfile_envaddr(ctx, overlayfile, "fdtoverlay_addr_r",
442 printf("Failed loading overlay %s\n", overlayfile);
446 /* Resize main fdt */
447 fdt_shrink_to_minimum(working_fdt, 8192);
449 blob = map_sysmem(fdtoverlay_addr, 0);
450 err = fdt_check_header(blob);
452 printf("Invalid overlay %s, skipping\n",
457 err = fdt_overlay_apply_verbose(working_fdt, blob);
459 printf("Failed to apply overlay %s, skipping\n",
467 } while ((fdtoverlay = strstr(fdtoverlay, " ")));
472 * label_boot() - Boot according to the contents of a pxe_label
474 * If we can't boot for any reason, we return. A successful boot never
477 * The kernel will be stored in the location given by the 'kernel_addr_r'
478 * environment variable.
480 * If the label specifies an initrd file, it will be stored in the location
481 * given by the 'ramdisk_addr_r' environment variable.
483 * If the label specifies an 'append' line, its contents will overwrite that
484 * of the 'bootargs' environment variable.
487 * @label: Label to process
488 * Returns does not return on success, otherwise returns 0 if a localboot
489 * label was processed, or 1 on error
491 static int label_boot(struct pxe_context *ctx, struct pxe_label *label)
493 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL };
494 char *zboot_argv[] = { "zboot", NULL, "0", NULL, NULL };
495 char *kernel_addr = NULL;
496 char *initrd_addr_str = NULL;
497 char initrd_filesize[10];
499 char mac_str[29] = "";
500 char ip_str[68] = "";
501 char *fit_addr = NULL;
510 label->attempted = 1;
512 if (label->localboot) {
513 if (label->localboot_val >= 0)
514 label_localboot(label);
518 if (!label->kernel) {
519 printf("No kernel given, skipping %s\n",
527 if (get_relfile_envaddr(ctx, label->initrd, "ramdisk_addr_r",
529 printf("Skipping %s for failure retrieving initrd\n",
534 initrd_addr_str = env_get("ramdisk_addr_r");
535 size = snprintf(initrd_str, sizeof(initrd_str), "%s:%lx",
536 initrd_addr_str, size);
537 if (size >= sizeof(initrd_str))
541 if (get_relfile_envaddr(ctx, label->kernel, "kernel_addr_r",
543 printf("Skipping %s for failure retrieving kernel\n",
548 if (label->ipappend & 0x1) {
549 sprintf(ip_str, " ip=%s:%s:%s:%s",
550 env_get("ipaddr"), env_get("serverip"),
551 env_get("gatewayip"), env_get("netmask"));
554 if (IS_ENABLED(CONFIG_CMD_NET)) {
555 if (label->ipappend & 0x2) {
558 strcpy(mac_str, " BOOTIF=");
559 err = format_mac_pxe(mac_str + 8, sizeof(mac_str) - 8);
565 if ((label->ipappend & 0x3) || label->append) {
566 char bootargs[CONFIG_SYS_CBSIZE] = "";
567 char finalbootargs[CONFIG_SYS_CBSIZE];
569 if (strlen(label->append ?: "") +
570 strlen(ip_str) + strlen(mac_str) + 1 > sizeof(bootargs)) {
571 printf("bootarg overflow %zd+%zd+%zd+1 > %zd\n",
572 strlen(label->append ?: ""),
573 strlen(ip_str), strlen(mac_str),
579 strncpy(bootargs, label->append, sizeof(bootargs));
581 strcat(bootargs, ip_str);
582 strcat(bootargs, mac_str);
584 cli_simple_process_macros(bootargs, finalbootargs,
585 sizeof(finalbootargs));
586 env_set("bootargs", finalbootargs);
587 printf("append: %s\n", finalbootargs);
590 kernel_addr = env_get("kernel_addr_r");
592 /* for FIT, append the configuration identifier */
594 int len = strlen(kernel_addr) + strlen(label->config) + 1;
596 fit_addr = malloc(len);
598 printf("malloc fail (FIT address)\n");
601 snprintf(fit_addr, len, "%s%s", kernel_addr, label->config);
602 kernel_addr = fit_addr;
606 * fdt usage is optional:
607 * It handles the following scenarios.
609 * Scenario 1: If fdt_addr_r specified and "fdt" or "fdtdir" label is
610 * defined in pxe file, retrieve fdt blob from server. Pass fdt_addr_r to
611 * bootm, and adjust argc appropriately.
613 * If retrieve fails and no exact fdt blob is specified in pxe file with
614 * "fdt" label, try Scenario 2.
616 * Scenario 2: If there is an fdt_addr specified, pass it along to
617 * bootm, and adjust argc appropriately.
619 * Scenario 3: If there is an fdtcontroladdr specified, pass it along to
620 * bootm, and adjust argc appropriately.
622 * Scenario 4: fdt blob is not available.
624 bootm_argv[3] = env_get("fdt_addr_r");
626 /* if fdt label is defined then get fdt from server */
628 char *fdtfile = NULL;
629 char *fdtfilefree = NULL;
632 fdtfile = label->fdt;
633 } else if (label->fdtdir) {
634 char *f1, *f2, *f3, *f4, *slash;
636 f1 = env_get("fdtfile");
643 * For complex cases where this code doesn't
644 * generate the correct filename, the board
645 * code should set $fdtfile during early boot,
646 * or the boot scripts should set $fdtfile
647 * before invoking "pxe" or "sysboot".
651 f3 = env_get("board");
663 len = strlen(label->fdtdir);
666 else if (label->fdtdir[len - 1] != '/')
671 len = strlen(label->fdtdir) + strlen(slash) +
672 strlen(f1) + strlen(f2) + strlen(f3) +
674 fdtfilefree = malloc(len);
676 printf("malloc fail (FDT filename)\n");
680 snprintf(fdtfilefree, len, "%s%s%s%s%s%s",
681 label->fdtdir, slash, f1, f2, f3, f4);
682 fdtfile = fdtfilefree;
686 int err = get_relfile_envaddr(ctx, fdtfile,
691 bootm_argv[3] = NULL;
694 printf("Skipping %s for failure retrieving FDT\n",
700 if (label->kaslrseed)
701 label_boot_kaslrseed();
703 #ifdef CONFIG_OF_LIBFDT_OVERLAY
704 if (label->fdtoverlays)
705 label_boot_fdtoverlay(ctx, label);
708 bootm_argv[3] = NULL;
712 bootm_argv[1] = kernel_addr;
713 zboot_argv[1] = kernel_addr;
715 if (initrd_addr_str) {
716 bootm_argv[2] = initrd_str;
719 zboot_argv[3] = initrd_addr_str;
720 zboot_argv[4] = initrd_filesize;
725 bootm_argv[3] = env_get("fdt_addr");
728 bootm_argv[3] = env_get("fdtcontroladdr");
736 kernel_addr_r = genimg_get_kernel_addr(kernel_addr);
737 buf = map_sysmem(kernel_addr_r, 0);
738 /* Try bootm for legacy and FIT format image */
739 if (genimg_get_format(buf) != IMAGE_FORMAT_INVALID &&
740 IS_ENABLED(CONFIG_CMD_BOOTM))
741 do_bootm(ctx->cmdtp, 0, bootm_argc, bootm_argv);
742 /* Try booting an AArch64 Linux kernel image */
743 else if (IS_ENABLED(CONFIG_CMD_BOOTI))
744 do_booti(ctx->cmdtp, 0, bootm_argc, bootm_argv);
745 /* Try booting a Image */
746 else if (IS_ENABLED(CONFIG_CMD_BOOTZ))
747 do_bootz(ctx->cmdtp, 0, bootm_argc, bootm_argv);
748 /* Try booting an x86_64 Linux kernel image */
749 else if (IS_ENABLED(CONFIG_CMD_ZBOOT))
750 do_zboot_parent(ctx->cmdtp, 0, zboot_argc, zboot_argv, NULL);
760 /** enum token_type - Tokens for the pxe file parser */
787 /** struct token - token - given by a value and a type */
790 enum token_type type;
793 /* Keywords recognized */
794 static const struct token keywords[] = {
797 {"timeout", T_TIMEOUT},
798 {"default", T_DEFAULT},
799 {"prompt", T_PROMPT},
801 {"kernel", T_KERNEL},
803 {"localboot", T_LOCALBOOT},
804 {"append", T_APPEND},
805 {"initrd", T_INITRD},
806 {"include", T_INCLUDE},
807 {"devicetree", T_FDT},
809 {"devicetreedir", T_FDTDIR},
810 {"fdtdir", T_FDTDIR},
811 {"fdtoverlays", T_FDTOVERLAYS},
812 {"devicetree-overlay", T_FDTOVERLAYS},
813 {"ontimeout", T_ONTIMEOUT,},
814 {"ipappend", T_IPAPPEND,},
815 {"background", T_BACKGROUND,},
816 {"kaslrseed", T_KASLRSEED,},
821 * enum lex_state - lexer state
823 * Since pxe(linux) files don't have a token to identify the start of a
824 * literal, we have to keep track of when we're in a state where a literal is
825 * expected vs when we're in a state a keyword is expected.
834 * get_string() - retrieves a string from *p and stores it as a token in *t.
836 * This is used for scanning both string literals and keywords.
838 * Characters from *p are copied into t-val until a character equal to
839 * delim is found, or a NUL byte is reached. If delim has the special value of
840 * ' ', any whitespace character will be used as a delimiter.
842 * If lower is unequal to 0, uppercase characters will be converted to
843 * lowercase in the result. This is useful to make keywords case
846 * The location of *p is updated to point to the first character after the end
847 * of the token - the ending delimiter.
849 * Memory for t->val is allocated using malloc and must be free()'d to reclaim
852 * @p: Points to a pointer to the current position in the input being processed.
853 * Updated to point at the first character after the current token
854 * @t: Pointers to a token to fill in
855 * @delim: Delimiter character to look for, either newline or space
856 * @lower: true to convert the string to lower case when storing
857 * Returns the new value of t->val, on success, NULL if out of memory
859 static char *get_string(char **p, struct token *t, char delim, int lower)
865 * b and e both start at the beginning of the input stream.
867 * e is incremented until we find the ending delimiter, or a NUL byte
868 * is reached. Then, we take e - b to find the length of the token.
873 if ((delim == ' ' && isspace(*e)) || delim == *e)
881 * Allocate memory to hold the string, and copy it in, converting
882 * characters to lowercase if lower is != 0.
884 t->val = malloc(len + 1);
888 for (i = 0; i < len; i++, b++) {
890 t->val[i] = tolower(*b);
897 /* Update *p so the caller knows where to continue scanning */
905 * get_keyword() - Populate a keyword token with a type and value
907 * Updates the ->type field based on the keyword string in @val
908 * @t: Token to populate
910 static void get_keyword(struct token *t)
914 for (i = 0; keywords[i].val; i++) {
915 if (!strcmp(t->val, keywords[i].val)) {
916 t->type = keywords[i].type;
923 * get_token() - Get the next token
925 * We have to keep track of which state we're in to know if we're looking to get
926 * a string literal or a keyword.
928 * @p: Points to a pointer to the current position in the input being processed.
929 * Updated to point at the first character after the current token
931 static void get_token(char **p, struct token *t, enum lex_state state)
937 /* eat non EOL whitespace */
942 * eat comments. note that string literals can't begin with #, but
943 * can contain a # after their first character.
946 while (*c && *c != '\n')
953 } else if (*c == '\0') {
956 } else if (state == L_SLITERAL) {
957 get_string(&c, t, '\n', 0);
958 } else if (state == L_KEYWORD) {
960 * when we expect a keyword, we first get the next string
961 * token delimited by whitespace, and then check if it
962 * matches a keyword in our keyword list. if it does, it's
963 * converted to a keyword token of the appropriate type, and
964 * if not, it remains a string token.
966 get_string(&c, t, ' ', 1);
974 * eol_or_eof() - Find end of line
976 * Increment *c until we get to the end of the current line, or EOF
978 * @c: Points to a pointer to the current position in the input being processed.
979 * Updated to point at the first character after the current token
981 static void eol_or_eof(char **c)
983 while (**c && **c != '\n')
988 * All of these parse_* functions share some common behavior.
990 * They finish with *c pointing after the token they parse, and return 1 on
991 * success, or < 0 on error.
995 * Parse a string literal and store a pointer it at *dst. String literals
996 * terminate at the end of the line.
998 static int parse_sliteral(char **c, char **dst)
1003 get_token(c, &t, L_SLITERAL);
1005 if (t.type != T_STRING) {
1006 printf("Expected string literal: %.*s\n", (int)(*c - s), s);
1016 * Parse a base 10 (unsigned) integer and store it at *dst.
1018 static int parse_integer(char **c, int *dst)
1023 get_token(c, &t, L_SLITERAL);
1024 if (t.type != T_STRING) {
1025 printf("Expected string: %.*s\n", (int)(*c - s), s);
1029 *dst = simple_strtol(t.val, NULL, 10);
1036 static int parse_pxefile_top(struct pxe_context *ctx, char *p, ulong base,
1037 struct pxe_menu *cfg, int nest_level);
1040 * Parse an include statement, and retrieve and parse the file it mentions.
1042 * base should point to a location where it's safe to store the file, and
1043 * nest_level should indicate how many nested includes have occurred. For this
1044 * include, nest_level has already been incremented and doesn't need to be
1047 static int handle_include(struct pxe_context *ctx, char **c, unsigned long base,
1048 struct pxe_menu *cfg, int nest_level)
1056 err = parse_sliteral(c, &include_path);
1058 printf("Expected include path: %.*s\n", (int)(*c - s), s);
1062 err = get_pxe_file(ctx, include_path, base);
1064 printf("Couldn't retrieve %s\n", include_path);
1068 buf = map_sysmem(base, 0);
1069 ret = parse_pxefile_top(ctx, buf, base, cfg, nest_level);
1076 * Parse lines that begin with 'menu'.
1078 * base and nest are provided to handle the 'menu include' case.
1080 * base should point to a location where it's safe to store the included file.
1082 * nest_level should be 1 when parsing the top level pxe file, 2 when parsing
1083 * a file it includes, 3 when parsing a file included by that file, and so on.
1085 static int parse_menu(struct pxe_context *ctx, char **c, struct pxe_menu *cfg,
1086 unsigned long base, int nest_level)
1092 get_token(c, &t, L_KEYWORD);
1096 err = parse_sliteral(c, &cfg->title);
1101 err = handle_include(ctx, c, base, cfg, nest_level + 1);
1105 err = parse_sliteral(c, &cfg->bmp);
1109 printf("Ignoring malformed menu command: %.*s\n",
1121 * Handles parsing a 'menu line' when we're parsing a label.
1123 static int parse_label_menu(char **c, struct pxe_menu *cfg,
1124 struct pxe_label *label)
1131 get_token(c, &t, L_KEYWORD);
1135 if (!cfg->default_label)
1136 cfg->default_label = strdup(label->name);
1138 if (!cfg->default_label)
1143 parse_sliteral(c, &label->menu);
1146 printf("Ignoring malformed menu command: %.*s\n",
1156 * Handles parsing a 'kernel' label.
1157 * expecting "filename" or "<fit_filename>#cfg"
1159 static int parse_label_kernel(char **c, struct pxe_label *label)
1164 err = parse_sliteral(c, &label->kernel);
1168 s = strstr(label->kernel, "#");
1172 label->config = malloc(strlen(s) + 1);
1176 strcpy(label->config, s);
1183 * Parses a label and adds it to the list of labels for a menu.
1185 * A label ends when we either get to the end of a file, or
1186 * get some input we otherwise don't have a handler defined
1190 static int parse_label(char **c, struct pxe_menu *cfg)
1195 struct pxe_label *label;
1198 label = label_create();
1202 err = parse_sliteral(c, &label->name);
1204 printf("Expected label name: %.*s\n", (int)(*c - s), s);
1205 label_destroy(label);
1209 list_add_tail(&label->list, &cfg->labels);
1213 get_token(c, &t, L_KEYWORD);
1218 err = parse_label_menu(c, cfg, label);
1223 err = parse_label_kernel(c, label);
1227 err = parse_sliteral(c, &label->append);
1230 s = strstr(label->append, "initrd=");
1234 len = (int)(strchr(s, ' ') - s);
1235 label->initrd = malloc(len + 1);
1236 strncpy(label->initrd, s, len);
1237 label->initrd[len] = '\0';
1243 err = parse_sliteral(c, &label->initrd);
1248 err = parse_sliteral(c, &label->fdt);
1253 err = parse_sliteral(c, &label->fdtdir);
1257 if (!label->fdtoverlays)
1258 err = parse_sliteral(c, &label->fdtoverlays);
1262 label->localboot = 1;
1263 err = parse_integer(c, &label->localboot_val);
1267 err = parse_integer(c, &label->ipappend);
1271 label->kaslrseed = 1;
1279 * put the token back! we don't want it - it's the end
1280 * of a label and whatever token this is, it's
1281 * something for the menu level context to handle.
1293 * This 16 comes from the limit pxelinux imposes on nested includes.
1295 * There is no reason at all we couldn't do more, but some limit helps prevent
1296 * infinite (until crash occurs) recursion if a file tries to include itself.
1298 #define MAX_NEST_LEVEL 16
1301 * Entry point for parsing a menu file. nest_level indicates how many times
1302 * we've nested in includes. It will be 1 for the top level menu file.
1304 * Returns 1 on success, < 0 on error.
1306 static int parse_pxefile_top(struct pxe_context *ctx, char *p, unsigned long base,
1307 struct pxe_menu *cfg, int nest_level)
1310 char *s, *b, *label_name;
1315 if (nest_level > MAX_NEST_LEVEL) {
1316 printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL);
1323 get_token(&p, &t, L_KEYWORD);
1329 err = parse_menu(ctx, &p, cfg,
1330 base + ALIGN(strlen(b) + 1, 4),
1335 err = parse_integer(&p, &cfg->timeout);
1339 err = parse_label(&p, cfg);
1344 err = parse_sliteral(&p, &label_name);
1347 if (cfg->default_label)
1348 free(cfg->default_label);
1350 cfg->default_label = label_name;
1356 err = handle_include(ctx, &p,
1357 base + ALIGN(strlen(b), 4), cfg,
1372 printf("Ignoring unknown command: %.*s\n",
1384 void destroy_pxe_menu(struct pxe_menu *cfg)
1386 struct list_head *pos, *n;
1387 struct pxe_label *label;
1390 free(cfg->default_label);
1392 list_for_each_safe(pos, n, &cfg->labels) {
1393 label = list_entry(pos, struct pxe_label, list);
1395 label_destroy(label);
1401 struct pxe_menu *parse_pxefile(struct pxe_context *ctx, unsigned long menucfg)
1403 struct pxe_menu *cfg;
1407 cfg = malloc(sizeof(struct pxe_menu));
1411 memset(cfg, 0, sizeof(struct pxe_menu));
1413 INIT_LIST_HEAD(&cfg->labels);
1415 buf = map_sysmem(menucfg, 0);
1416 r = parse_pxefile_top(ctx, buf, menucfg, cfg, 1);
1419 destroy_pxe_menu(cfg);
1427 * Converts a pxe_menu struct into a menu struct for use with U-Boot's generic
1430 static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)
1432 struct pxe_label *label;
1433 struct list_head *pos;
1435 char *label_override;
1438 char *default_num = NULL;
1439 char *override_num = NULL;
1442 * Create a menu and add items for all the labels.
1444 m = menu_create(cfg->title, DIV_ROUND_UP(cfg->timeout, 10),
1445 cfg->prompt, NULL, label_print, NULL, NULL);
1449 label_override = env_get("pxe_label_override");
1451 list_for_each(pos, &cfg->labels) {
1452 label = list_entry(pos, struct pxe_label, list);
1454 sprintf(label->num, "%d", i++);
1455 if (menu_item_add(m, label->num, label) != 1) {
1459 if (cfg->default_label &&
1460 (strcmp(label->name, cfg->default_label) == 0))
1461 default_num = label->num;
1462 if (label_override && !strcmp(label->name, label_override))
1463 override_num = label->num;
1467 if (label_override) {
1469 default_num = override_num;
1471 printf("Missing override pxe label: %s\n",
1476 * After we've created items for each label in the menu, set the
1477 * menu's default label if one was specified.
1480 err = menu_default_set(m, default_num);
1482 if (err != -ENOENT) {
1487 printf("Missing default: %s\n", cfg->default_label);
1495 * Try to boot any labels we have yet to attempt to boot.
1497 static void boot_unattempted_labels(struct pxe_context *ctx,
1498 struct pxe_menu *cfg)
1500 struct list_head *pos;
1501 struct pxe_label *label;
1503 list_for_each(pos, &cfg->labels) {
1504 label = list_entry(pos, struct pxe_label, list);
1506 if (!label->attempted)
1507 label_boot(ctx, label);
1511 void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg)
1517 if (IS_ENABLED(CONFIG_CMD_BMP)) {
1518 /* display BMP if available */
1520 if (get_relfile(ctx, cfg->bmp, image_load_addr, NULL)) {
1521 #if defined(CONFIG_VIDEO)
1522 struct udevice *dev;
1524 err = uclass_first_device_err(UCLASS_VIDEO, &dev);
1528 bmp_display(image_load_addr,
1529 BMP_ALIGN_CENTER, BMP_ALIGN_CENTER);
1531 printf("Skipping background bmp %s for failure\n",
1537 m = pxe_menu_to_menu(cfg);
1541 err = menu_get_choice(m, &choice);
1545 * err == 1 means we got a choice back from menu_get_choice.
1547 * err == -ENOENT if the menu was setup to select the default but no
1548 * default was set. in that case, we should continue trying to boot
1549 * labels that haven't been attempted yet.
1551 * otherwise, the user interrupted or there was some other error and
1556 err = label_boot(ctx, choice);
1559 } else if (err != -ENOENT) {
1563 boot_unattempted_labels(ctx, cfg);
1566 int pxe_setup_ctx(struct pxe_context *ctx, struct cmd_tbl *cmdtp,
1567 pxe_getfile_func getfile, void *userdata,
1568 bool allow_abs_path, const char *bootfile)
1570 const char *last_slash;
1571 size_t path_len = 0;
1573 memset(ctx, '\0', sizeof(*ctx));
1575 ctx->getfile = getfile;
1576 ctx->userdata = userdata;
1577 ctx->allow_abs_path = allow_abs_path;
1579 /* figure out the boot directory, if there is one */
1580 if (bootfile && strlen(bootfile) >= MAX_TFTP_PATH_LEN)
1582 ctx->bootdir = strdup(bootfile ? bootfile : "");
1587 last_slash = strrchr(bootfile, '/');
1589 path_len = (last_slash - bootfile) + 1;
1591 ctx->bootdir[path_len] = '\0';
1596 void pxe_destroy_ctx(struct pxe_context *ctx)
1601 int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt)
1603 struct pxe_menu *cfg;
1605 cfg = parse_pxefile(ctx, pxefile_addr_r);
1607 printf("Error parsing config file\n");
1614 handle_pxe_menu(ctx, cfg);
1616 destroy_pxe_menu(cfg);