common/spl/spl_ram: Remove unused default
[platform/kernel/u-boot.git] / boot / pxe_utils.c
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>
8 #include <command.h>
9 #include <dm.h>
10 #include <env.h>
11 #include <image.h>
12 #include <log.h>
13 #include <malloc.h>
14 #include <mapmem.h>
15 #include <net.h>
16 #include <fdt_support.h>
17 #include <video.h>
18 #include <linux/libfdt.h>
19 #include <linux/string.h>
20 #include <linux/ctype.h>
21 #include <errno.h>
22 #include <linux/list.h>
23
24 #ifdef CONFIG_DM_RNG
25 #include <rng.h>
26 #endif
27
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
36 #define MAX_TFTP_PATH_LEN 512
37
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
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
64  * Return: 1 if OK, -ENOSPC if buffer is too small, -ENOENT is there is no
65  *      current ethernet device
66  */
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);
73                 return -ENOSPC;
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
86 /**
87  * get_relfile() - read a file relative to the PXE file
88  *
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  *
94  * @ctx: PXE context
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
99  */
100 static int get_relfile(struct pxe_context *ctx, const char *file_path,
101                        unsigned long file_addr, ulong *filesizep)
102 {
103         size_t path_len;
104         char relfile[MAX_TFTP_PATH_LEN + 1];
105         char addr_buf[18];
106         ulong size;
107         int ret;
108
109         if (file_path[0] == '/' && ctx->allow_abs_path)
110                 *relfile = '\0';
111         else
112                 strncpy(relfile, ctx->bootdir, MAX_TFTP_PATH_LEN);
113
114         path_len = strlen(file_path) + strlen(relfile);
115
116         if (path_len > MAX_TFTP_PATH_LEN) {
117                 printf("Base path too long (%s%s)\n", relfile, file_path);
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
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;
135 }
136
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  */
147 int get_pxe_file(struct pxe_context *ctx, const char *file_path,
148                  ulong file_addr)
149 {
150         ulong size;
151         int err;
152         char *buf;
153
154         err = get_relfile(ctx, file_path, file_addr, &size);
155         if (err < 0)
156                 return err;
157
158         buf = map_sysmem(file_addr + size, 1);
159         *buf = '\0';
160         unmap_sysmem(buf);
161
162         return 1;
163 }
164
165 #define PXELINUX_DIR "pxelinux.cfg/"
166
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  */
175 int get_pxelinux_path(struct pxe_context *ctx, const char *file,
176                       unsigned long pxefile_addr_r)
177 {
178         size_t base_len = strlen(PXELINUX_DIR);
179         char path[MAX_TFTP_PATH_LEN + 1];
180
181         if (base_len + strlen(file) > MAX_TFTP_PATH_LEN) {
182                 printf("path (%s%s) too long, skipping\n",
183                        PXELINUX_DIR, file);
184                 return -ENAMETOOLONG;
185         }
186
187         sprintf(path, PXELINUX_DIR "%s", file);
188
189         return get_pxe_file(ctx, path, pxefile_addr_r);
190 }
191
192 /**
193  * get_relfile_envaddr() - read a file to an address in an env var
194  *
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  *
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
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
207  */
208 static int get_relfile_envaddr(struct pxe_context *ctx, const char *file_path,
209                                const char *envaddr_name, ulong *filesizep)
210 {
211         unsigned long file_addr;
212         char *envaddr;
213
214         envaddr = from_env(envaddr_name);
215         if (!envaddr)
216                 return -ENOENT;
217
218         if (strict_strtoul(envaddr, 16, &file_addr) < 0)
219                 return -EINVAL;
220
221         return get_relfile(ctx, file_path, file_addr, filesizep);
222 }
223
224 /**
225  * label_create() - crate a new PXE label
226  *
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  *
230  * Returns a pointer to the label, or NULL if out of memory
231  */
232 static struct pxe_label *label_create(void)
233 {
234         struct pxe_label *label;
235
236         label = malloc(sizeof(struct pxe_label));
237         if (!label)
238                 return NULL;
239
240         memset(label, 0, sizeof(struct pxe_label));
241
242         return label;
243 }
244
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.
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.
255  *
256  * @label: Label to free
257  */
258 static void label_destroy(struct pxe_label *label)
259 {
260         free(label->name);
261         free(label->kernel_label);
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);
269         free(label);
270 }
271
272 /**
273  * label_print() - Print a label and its string members if they're defined
274  *
275  * This is passed as a callback to the menu code for displaying each
276  * menu entry.
277  *
278  * @data: Label to print (is cast to struct pxe_label *)
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
288 /**
289  * label_localboot() - Boot a label that specified 'localboot'
290  *
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
298  */
299 static int label_localboot(struct pxe_label *label)
300 {
301         char *localcmd;
302
303         localcmd = from_env("localcmd");
304         if (!localcmd)
305                 return -ENOENT;
306
307         if (label->append) {
308                 char bootargs[CONFIG_SYS_CBSIZE];
309
310                 cli_simple_process_macros(label->append, bootargs,
311                                           sizeof(bootargs));
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
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
381 /**
382  * label_boot_fdtoverlay() - Loads fdt overlays specified in 'fdtoverlays'
383  * or 'devicetree-overlay'
384  *
385  * @ctx: PXE context
386  * @label: Label to process
387  */
388 #ifdef CONFIG_OF_LIBFDT_OVERLAY
389 static void label_boot_fdtoverlay(struct pxe_context *ctx,
390                                   struct pxe_label *label)
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 */
400         fdt_addr = hextoul(env_get("fdt_addr_r"), NULL);
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
413         fdtoverlay_addr = hextoul(fdtoverlay_addr_env, NULL);
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 */
440                 err = get_relfile_envaddr(ctx, overlayfile, "fdtoverlay_addr_r",
441                                           NULL);
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
472 /**
473  * label_boot() - Boot according to the contents of a pxe_label
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.
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
491  */
492 static int label_boot(struct pxe_context *ctx, struct pxe_label *label)
493 {
494         char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL };
495         char *zboot_argv[] = { "zboot", NULL, "0", NULL, NULL };
496         char *kernel_addr = NULL;
497         char *initrd_addr_str = NULL;
498         char initrd_filesize[10];
499         char initrd_str[28];
500         char mac_str[29] = "";
501         char ip_str[68] = "";
502         char *fit_addr = NULL;
503         int bootm_argc = 2;
504         int zboot_argc = 3;
505         int len = 0;
506         ulong kernel_addr_r;
507         void *buf;
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
519         if (!label->kernel) {
520                 printf("No kernel given, skipping %s\n",
521                        label->name);
522                 return 1;
523         }
524
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         }
531
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
546         /* For FIT, the label can be identical to kernel one */
547         if (label->initrd && !strcmp(label->kernel_label, label->initrd)) {
548                 initrd_addr_str =  kernel_addr;
549         } else if (label->initrd) {
550                 ulong size;
551                 if (get_relfile_envaddr(ctx, label->initrd, "ramdisk_addr_r",
552                                         &size) < 0) {
553                         printf("Skipping %s for failure retrieving initrd\n",
554                                label->name);
555                         goto cleanup;
556                 }
557
558                 initrd_addr_str = env_get("ramdisk_addr_r");
559                 size = snprintf(initrd_str, sizeof(initrd_str), "%s:%lx",
560                                 initrd_addr_str, size);
561                 if (size >= sizeof(initrd_str))
562                         goto cleanup;
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
571         if (IS_ENABLED(CONFIG_CMD_NET)) {
572                 if (label->ipappend & 0x2) {
573                         int err;
574
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                 }
580         }
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));
592                         goto cleanup;
593                 }
594
595                 if (label->append)
596                         strncpy(bootargs, label->append, sizeof(bootargs));
597
598                 strcat(bootargs, ip_str);
599                 strcat(bootargs, mac_str);
600
601                 cli_simple_process_macros(bootargs, finalbootargs,
602                                           sizeof(finalbootargs));
603                 env_set("bootargs", finalbootargs);
604                 printf("append: %s\n", finalbootargs);
605         }
606
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: fdt blob is not available.
622          */
623         bootm_argv[3] = env_get("fdt_addr_r");
624
625         /* For FIT, the label can be identical to kernel one */
626         if (label->fdt && !strcmp(label->kernel_label, label->fdt)) {
627                 bootm_argv[3] = kernel_addr;
628         /* if fdt label is defined then get fdt from server */
629         } else if (bootm_argv[3]) {
630                 char *fdtfile = NULL;
631                 char *fdtfilefree = NULL;
632
633                 if (label->fdt) {
634                         fdtfile = label->fdt;
635                 } else if (label->fdtdir) {
636                         char *f1, *f2, *f3, *f4, *slash;
637
638                         f1 = env_get("fdtfile");
639                         if (f1) {
640                                 f2 = "";
641                                 f3 = "";
642                                 f4 = "";
643                         } else {
644                                 /*
645                                  * For complex cases where this code doesn't
646                                  * generate the correct filename, the board
647                                  * code should set $fdtfile during early boot,
648                                  * or the boot scripts should set $fdtfile
649                                  * before invoking "pxe" or "sysboot".
650                                  */
651                                 f1 = env_get("soc");
652                                 f2 = "-";
653                                 f3 = env_get("board");
654                                 f4 = ".dtb";
655                                 if (!f1) {
656                                         f1 = "";
657                                         f2 = "";
658                                 }
659                                 if (!f3) {
660                                         f2 = "";
661                                         f3 = "";
662                                 }
663                         }
664
665                         len = strlen(label->fdtdir);
666                         if (!len)
667                                 slash = "./";
668                         else if (label->fdtdir[len - 1] != '/')
669                                 slash = "/";
670                         else
671                                 slash = "";
672
673                         len = strlen(label->fdtdir) + strlen(slash) +
674                                 strlen(f1) + strlen(f2) + strlen(f3) +
675                                 strlen(f4) + 1;
676                         fdtfilefree = malloc(len);
677                         if (!fdtfilefree) {
678                                 printf("malloc fail (FDT filename)\n");
679                                 goto cleanup;
680                         }
681
682                         snprintf(fdtfilefree, len, "%s%s%s%s%s%s",
683                                  label->fdtdir, slash, f1, f2, f3, f4);
684                         fdtfile = fdtfilefree;
685                 }
686
687                 if (fdtfile) {
688                         int err = get_relfile_envaddr(ctx, fdtfile,
689                                                       "fdt_addr_r", NULL);
690
691                         free(fdtfilefree);
692                         if (err < 0) {
693                                 bootm_argv[3] = NULL;
694
695                                 if (label->fdt) {
696                                         printf("Skipping %s for failure retrieving FDT\n",
697                                                label->name);
698                                         goto cleanup;
699                                 }
700                         }
701
702                 if (label->kaslrseed)
703                         label_boot_kaslrseed();
704
705 #ifdef CONFIG_OF_LIBFDT_OVERLAY
706                         if (label->fdtoverlays)
707                                 label_boot_fdtoverlay(ctx, label);
708 #endif
709                 } else {
710                         bootm_argv[3] = NULL;
711                 }
712         }
713
714         bootm_argv[1] = kernel_addr;
715         zboot_argv[1] = kernel_addr;
716
717         if (initrd_addr_str) {
718                 bootm_argv[2] = initrd_str;
719                 bootm_argc = 3;
720
721                 zboot_argv[3] = initrd_addr_str;
722                 zboot_argv[4] = initrd_filesize;
723                 zboot_argc = 5;
724         }
725
726         if (!bootm_argv[3])
727                 bootm_argv[3] = env_get("fdt_addr");
728
729         if (bootm_argv[3]) {
730                 if (!bootm_argv[2])
731                         bootm_argv[2] = "-";
732                 bootm_argc = 4;
733         }
734
735         kernel_addr_r = genimg_get_kernel_addr(kernel_addr);
736         buf = map_sysmem(kernel_addr_r, 0);
737         /* Try bootm for legacy and FIT format image */
738         if (genimg_get_format(buf) != IMAGE_FORMAT_INVALID &&
739             IS_ENABLED(CONFIG_CMD_BOOTM))
740                 do_bootm(ctx->cmdtp, 0, bootm_argc, bootm_argv);
741         /* Try booting an AArch64 Linux kernel image */
742         else if (IS_ENABLED(CONFIG_CMD_BOOTI))
743                 do_booti(ctx->cmdtp, 0, bootm_argc, bootm_argv);
744         /* Try booting a Image */
745         else if (IS_ENABLED(CONFIG_CMD_BOOTZ))
746                 do_bootz(ctx->cmdtp, 0, bootm_argc, bootm_argv);
747         /* Try booting an x86_64 Linux kernel image */
748         else if (IS_ENABLED(CONFIG_CMD_ZBOOT))
749                 do_zboot_parent(ctx->cmdtp, 0, zboot_argc, zboot_argv, NULL);
750
751         unmap_sysmem(buf);
752
753 cleanup:
754         free(fit_addr);
755
756         return 1;
757 }
758
759 /** enum token_type - Tokens for the pxe file parser */
760 enum token_type {
761         T_EOL,
762         T_STRING,
763         T_EOF,
764         T_MENU,
765         T_TITLE,
766         T_TIMEOUT,
767         T_LABEL,
768         T_KERNEL,
769         T_LINUX,
770         T_APPEND,
771         T_INITRD,
772         T_LOCALBOOT,
773         T_DEFAULT,
774         T_PROMPT,
775         T_INCLUDE,
776         T_FDT,
777         T_FDTDIR,
778         T_FDTOVERLAYS,
779         T_ONTIMEOUT,
780         T_IPAPPEND,
781         T_BACKGROUND,
782         T_KASLRSEED,
783         T_INVALID
784 };
785
786 /** struct token - token - given by a value and a type */
787 struct token {
788         char *val;
789         enum token_type type;
790 };
791
792 /* Keywords recognized */
793 static const struct token keywords[] = {
794         {"menu", T_MENU},
795         {"title", T_TITLE},
796         {"timeout", T_TIMEOUT},
797         {"default", T_DEFAULT},
798         {"prompt", T_PROMPT},
799         {"label", T_LABEL},
800         {"kernel", T_KERNEL},
801         {"linux", T_LINUX},
802         {"localboot", T_LOCALBOOT},
803         {"append", T_APPEND},
804         {"initrd", T_INITRD},
805         {"include", T_INCLUDE},
806         {"devicetree", T_FDT},
807         {"fdt", T_FDT},
808         {"devicetreedir", T_FDTDIR},
809         {"fdtdir", T_FDTDIR},
810         {"fdtoverlays", T_FDTOVERLAYS},
811         {"devicetree-overlay", T_FDTOVERLAYS},
812         {"ontimeout", T_ONTIMEOUT,},
813         {"ipappend", T_IPAPPEND,},
814         {"background", T_BACKGROUND,},
815         {"kaslrseed", T_KASLRSEED,},
816         {NULL, T_INVALID}
817 };
818
819 /**
820  * enum lex_state - lexer state
821  *
822  * Since pxe(linux) files don't have a token to identify the start of a
823  * literal, we have to keep track of when we're in a state where a literal is
824  * expected vs when we're in a state a keyword is expected.
825  */
826 enum lex_state {
827         L_NORMAL = 0,
828         L_KEYWORD,
829         L_SLITERAL
830 };
831
832 /**
833  * get_string() - retrieves a string from *p and stores it as a token in *t.
834  *
835  * This is used for scanning both string literals and keywords.
836  *
837  * Characters from *p are copied into t-val until a character equal to
838  * delim is found, or a NUL byte is reached. If delim has the special value of
839  * ' ', any whitespace character will be used as a delimiter.
840  *
841  * If lower is unequal to 0, uppercase characters will be converted to
842  * lowercase in the result. This is useful to make keywords case
843  * insensitive.
844  *
845  * The location of *p is updated to point to the first character after the end
846  * of the token - the ending delimiter.
847  *
848  * Memory for t->val is allocated using malloc and must be free()'d to reclaim
849  * it.
850  *
851  * @p: Points to a pointer to the current position in the input being processed.
852  *      Updated to point at the first character after the current token
853  * @t: Pointers to a token to fill in
854  * @delim: Delimiter character to look for, either newline or space
855  * @lower: true to convert the string to lower case when storing
856  * Returns the new value of t->val, on success, NULL if out of memory
857  */
858 static char *get_string(char **p, struct token *t, char delim, int lower)
859 {
860         char *b, *e;
861         size_t len, i;
862
863         /*
864          * b and e both start at the beginning of the input stream.
865          *
866          * e is incremented until we find the ending delimiter, or a NUL byte
867          * is reached. Then, we take e - b to find the length of the token.
868          */
869         b = *p;
870         e = *p;
871         while (*e) {
872                 if ((delim == ' ' && isspace(*e)) || delim == *e)
873                         break;
874                 e++;
875         }
876
877         len = e - b;
878
879         /*
880          * Allocate memory to hold the string, and copy it in, converting
881          * characters to lowercase if lower is != 0.
882          */
883         t->val = malloc(len + 1);
884         if (!t->val)
885                 return NULL;
886
887         for (i = 0; i < len; i++, b++) {
888                 if (lower)
889                         t->val[i] = tolower(*b);
890                 else
891                         t->val[i] = *b;
892         }
893
894         t->val[len] = '\0';
895
896         /* Update *p so the caller knows where to continue scanning */
897         *p = e;
898         t->type = T_STRING;
899
900         return t->val;
901 }
902
903 /**
904  * get_keyword() - Populate a keyword token with a type and value
905  *
906  * Updates the ->type field based on the keyword string in @val
907  * @t: Token to populate
908  */
909 static void get_keyword(struct token *t)
910 {
911         int i;
912
913         for (i = 0; keywords[i].val; i++) {
914                 if (!strcmp(t->val, keywords[i].val)) {
915                         t->type = keywords[i].type;
916                         break;
917                 }
918         }
919 }
920
921 /**
922  * get_token() - Get the next token
923  *
924  * We have to keep track of which state we're in to know if we're looking to get
925  * a string literal or a keyword.
926  *
927  * @p: Points to a pointer to the current position in the input being processed.
928  *      Updated to point at the first character after the current token
929  */
930 static void get_token(char **p, struct token *t, enum lex_state state)
931 {
932         char *c = *p;
933
934         t->type = T_INVALID;
935
936         /* eat non EOL whitespace */
937         while (isblank(*c))
938                 c++;
939
940         /*
941          * eat comments. note that string literals can't begin with #, but
942          * can contain a # after their first character.
943          */
944         if (*c == '#') {
945                 while (*c && *c != '\n')
946                         c++;
947         }
948
949         if (*c == '\n') {
950                 t->type = T_EOL;
951                 c++;
952         } else if (*c == '\0') {
953                 t->type = T_EOF;
954                 c++;
955         } else if (state == L_SLITERAL) {
956                 get_string(&c, t, '\n', 0);
957         } else if (state == L_KEYWORD) {
958                 /*
959                  * when we expect a keyword, we first get the next string
960                  * token delimited by whitespace, and then check if it
961                  * matches a keyword in our keyword list. if it does, it's
962                  * converted to a keyword token of the appropriate type, and
963                  * if not, it remains a string token.
964                  */
965                 get_string(&c, t, ' ', 1);
966                 get_keyword(t);
967         }
968
969         *p = c;
970 }
971
972 /**
973  * eol_or_eof() - Find end of line
974  *
975  * Increment *c until we get to the end of the current line, or EOF
976  *
977  * @c: Points to a pointer to the current position in the input being processed.
978  *      Updated to point at the first character after the current token
979  */
980 static void eol_or_eof(char **c)
981 {
982         while (**c && **c != '\n')
983                 (*c)++;
984 }
985
986 /*
987  * All of these parse_* functions share some common behavior.
988  *
989  * They finish with *c pointing after the token they parse, and return 1 on
990  * success, or < 0 on error.
991  */
992
993 /*
994  * Parse a string literal and store a pointer it at *dst. String literals
995  * terminate at the end of the line.
996  */
997 static int parse_sliteral(char **c, char **dst)
998 {
999         struct token t;
1000         char *s = *c;
1001
1002         get_token(c, &t, L_SLITERAL);
1003
1004         if (t.type != T_STRING) {
1005                 printf("Expected string literal: %.*s\n", (int)(*c - s), s);
1006                 return -EINVAL;
1007         }
1008
1009         *dst = t.val;
1010
1011         return 1;
1012 }
1013
1014 /*
1015  * Parse a base 10 (unsigned) integer and store it at *dst.
1016  */
1017 static int parse_integer(char **c, int *dst)
1018 {
1019         struct token t;
1020         char *s = *c;
1021
1022         get_token(c, &t, L_SLITERAL);
1023         if (t.type != T_STRING) {
1024                 printf("Expected string: %.*s\n", (int)(*c - s), s);
1025                 return -EINVAL;
1026         }
1027
1028         *dst = simple_strtol(t.val, NULL, 10);
1029
1030         free(t.val);
1031
1032         return 1;
1033 }
1034
1035 static int parse_pxefile_top(struct pxe_context *ctx, char *p, ulong base,
1036                              struct pxe_menu *cfg, int nest_level);
1037
1038 /*
1039  * Parse an include statement, and retrieve and parse the file it mentions.
1040  *
1041  * base should point to a location where it's safe to store the file, and
1042  * nest_level should indicate how many nested includes have occurred. For this
1043  * include, nest_level has already been incremented and doesn't need to be
1044  * incremented here.
1045  */
1046 static int handle_include(struct pxe_context *ctx, char **c, unsigned long base,
1047                           struct pxe_menu *cfg, int nest_level)
1048 {
1049         char *include_path;
1050         char *s = *c;
1051         int err;
1052         char *buf;
1053         int ret;
1054
1055         err = parse_sliteral(c, &include_path);
1056         if (err < 0) {
1057                 printf("Expected include path: %.*s\n", (int)(*c - s), s);
1058                 return err;
1059         }
1060
1061         err = get_pxe_file(ctx, include_path, base);
1062         if (err < 0) {
1063                 printf("Couldn't retrieve %s\n", include_path);
1064                 return err;
1065         }
1066
1067         buf = map_sysmem(base, 0);
1068         ret = parse_pxefile_top(ctx, buf, base, cfg, nest_level);
1069         unmap_sysmem(buf);
1070
1071         return ret;
1072 }
1073
1074 /*
1075  * Parse lines that begin with 'menu'.
1076  *
1077  * base and nest are provided to handle the 'menu include' case.
1078  *
1079  * base should point to a location where it's safe to store the included file.
1080  *
1081  * nest_level should be 1 when parsing the top level pxe file, 2 when parsing
1082  * a file it includes, 3 when parsing a file included by that file, and so on.
1083  */
1084 static int parse_menu(struct pxe_context *ctx, char **c, struct pxe_menu *cfg,
1085                       unsigned long base, int nest_level)
1086 {
1087         struct token t;
1088         char *s = *c;
1089         int err = 0;
1090
1091         get_token(c, &t, L_KEYWORD);
1092
1093         switch (t.type) {
1094         case T_TITLE:
1095                 err = parse_sliteral(c, &cfg->title);
1096
1097                 break;
1098
1099         case T_INCLUDE:
1100                 err = handle_include(ctx, c, base, cfg, nest_level + 1);
1101                 break;
1102
1103         case T_BACKGROUND:
1104                 err = parse_sliteral(c, &cfg->bmp);
1105                 break;
1106
1107         default:
1108                 printf("Ignoring malformed menu command: %.*s\n",
1109                        (int)(*c - s), s);
1110         }
1111         if (err < 0)
1112                 return err;
1113
1114         eol_or_eof(c);
1115
1116         return 1;
1117 }
1118
1119 /*
1120  * Handles parsing a 'menu line' when we're parsing a label.
1121  */
1122 static int parse_label_menu(char **c, struct pxe_menu *cfg,
1123                             struct pxe_label *label)
1124 {
1125         struct token t;
1126         char *s;
1127
1128         s = *c;
1129
1130         get_token(c, &t, L_KEYWORD);
1131
1132         switch (t.type) {
1133         case T_DEFAULT:
1134                 if (!cfg->default_label)
1135                         cfg->default_label = strdup(label->name);
1136
1137                 if (!cfg->default_label)
1138                         return -ENOMEM;
1139
1140                 break;
1141         case T_LABEL:
1142                 parse_sliteral(c, &label->menu);
1143                 break;
1144         default:
1145                 printf("Ignoring malformed menu command: %.*s\n",
1146                        (int)(*c - s), s);
1147         }
1148
1149         eol_or_eof(c);
1150
1151         return 0;
1152 }
1153
1154 /*
1155  * Handles parsing a 'kernel' label.
1156  * expecting "filename" or "<fit_filename>#cfg"
1157  */
1158 static int parse_label_kernel(char **c, struct pxe_label *label)
1159 {
1160         char *s;
1161         int err;
1162
1163         err = parse_sliteral(c, &label->kernel);
1164         if (err < 0)
1165                 return err;
1166
1167         /* copy the kernel label to compare with FDT / INITRD when FIT is used */
1168         label->kernel_label = strdup(label->kernel);
1169         if (!label->kernel_label)
1170                 return -ENOMEM;
1171
1172         s = strstr(label->kernel, "#");
1173         if (!s)
1174                 return 1;
1175
1176         label->config = strdup(s);
1177         if (!label->config)
1178                 return -ENOMEM;
1179
1180         *s = 0;
1181
1182         return 1;
1183 }
1184
1185 /*
1186  * Parses a label and adds it to the list of labels for a menu.
1187  *
1188  * A label ends when we either get to the end of a file, or
1189  * get some input we otherwise don't have a handler defined
1190  * for.
1191  *
1192  */
1193 static int parse_label(char **c, struct pxe_menu *cfg)
1194 {
1195         struct token t;
1196         int len;
1197         char *s = *c;
1198         struct pxe_label *label;
1199         int err;
1200
1201         label = label_create();
1202         if (!label)
1203                 return -ENOMEM;
1204
1205         err = parse_sliteral(c, &label->name);
1206         if (err < 0) {
1207                 printf("Expected label name: %.*s\n", (int)(*c - s), s);
1208                 label_destroy(label);
1209                 return -EINVAL;
1210         }
1211
1212         list_add_tail(&label->list, &cfg->labels);
1213
1214         while (1) {
1215                 s = *c;
1216                 get_token(c, &t, L_KEYWORD);
1217
1218                 err = 0;
1219                 switch (t.type) {
1220                 case T_MENU:
1221                         err = parse_label_menu(c, cfg, label);
1222                         break;
1223
1224                 case T_KERNEL:
1225                 case T_LINUX:
1226                         err = parse_label_kernel(c, label);
1227                         break;
1228
1229                 case T_APPEND:
1230                         err = parse_sliteral(c, &label->append);
1231                         if (label->initrd)
1232                                 break;
1233                         s = strstr(label->append, "initrd=");
1234                         if (!s)
1235                                 break;
1236                         s += 7;
1237                         len = (int)(strchr(s, ' ') - s);
1238                         label->initrd = malloc(len + 1);
1239                         strncpy(label->initrd, s, len);
1240                         label->initrd[len] = '\0';
1241
1242                         break;
1243
1244                 case T_INITRD:
1245                         if (!label->initrd)
1246                                 err = parse_sliteral(c, &label->initrd);
1247                         break;
1248
1249                 case T_FDT:
1250                         if (!label->fdt)
1251                                 err = parse_sliteral(c, &label->fdt);
1252                         break;
1253
1254                 case T_FDTDIR:
1255                         if (!label->fdtdir)
1256                                 err = parse_sliteral(c, &label->fdtdir);
1257                         break;
1258
1259                 case T_FDTOVERLAYS:
1260                         if (!label->fdtoverlays)
1261                                 err = parse_sliteral(c, &label->fdtoverlays);
1262                         break;
1263
1264                 case T_LOCALBOOT:
1265                         label->localboot = 1;
1266                         err = parse_integer(c, &label->localboot_val);
1267                         break;
1268
1269                 case T_IPAPPEND:
1270                         err = parse_integer(c, &label->ipappend);
1271                         break;
1272
1273                 case T_KASLRSEED:
1274                         label->kaslrseed = 1;
1275                         break;
1276
1277                 case T_EOL:
1278                         break;
1279
1280                 default:
1281                         /*
1282                          * put the token back! we don't want it - it's the end
1283                          * of a label and whatever token this is, it's
1284                          * something for the menu level context to handle.
1285                          */
1286                         *c = s;
1287                         return 1;
1288                 }
1289
1290                 if (err < 0)
1291                         return err;
1292         }
1293 }
1294
1295 /*
1296  * This 16 comes from the limit pxelinux imposes on nested includes.
1297  *
1298  * There is no reason at all we couldn't do more, but some limit helps prevent
1299  * infinite (until crash occurs) recursion if a file tries to include itself.
1300  */
1301 #define MAX_NEST_LEVEL 16
1302
1303 /*
1304  * Entry point for parsing a menu file. nest_level indicates how many times
1305  * we've nested in includes.  It will be 1 for the top level menu file.
1306  *
1307  * Returns 1 on success, < 0 on error.
1308  */
1309 static int parse_pxefile_top(struct pxe_context *ctx, char *p, unsigned long base,
1310                              struct pxe_menu *cfg, int nest_level)
1311 {
1312         struct token t;
1313         char *s, *b, *label_name;
1314         int err;
1315
1316         b = p;
1317
1318         if (nest_level > MAX_NEST_LEVEL) {
1319                 printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL);
1320                 return -EMLINK;
1321         }
1322
1323         while (1) {
1324                 s = p;
1325
1326                 get_token(&p, &t, L_KEYWORD);
1327
1328                 err = 0;
1329                 switch (t.type) {
1330                 case T_MENU:
1331                         cfg->prompt = 1;
1332                         err = parse_menu(ctx, &p, cfg,
1333                                          base + ALIGN(strlen(b) + 1, 4),
1334                                          nest_level);
1335                         break;
1336
1337                 case T_TIMEOUT:
1338                         err = parse_integer(&p, &cfg->timeout);
1339                         break;
1340
1341                 case T_LABEL:
1342                         err = parse_label(&p, cfg);
1343                         break;
1344
1345                 case T_DEFAULT:
1346                 case T_ONTIMEOUT:
1347                         err = parse_sliteral(&p, &label_name);
1348
1349                         if (label_name) {
1350                                 if (cfg->default_label)
1351                                         free(cfg->default_label);
1352
1353                                 cfg->default_label = label_name;
1354                         }
1355
1356                         break;
1357
1358                 case T_INCLUDE:
1359                         err = handle_include(ctx, &p,
1360                                              base + ALIGN(strlen(b), 4), cfg,
1361                                              nest_level + 1);
1362                         break;
1363
1364                 case T_PROMPT:
1365                         err = parse_integer(&p, &cfg->prompt);
1366                         // Do not fail if prompt configuration is undefined
1367                         if (err <  0)
1368                                 eol_or_eof(&p);
1369                         break;
1370
1371                 case T_EOL:
1372                         break;
1373
1374                 case T_EOF:
1375                         return 1;
1376
1377                 default:
1378                         printf("Ignoring unknown command: %.*s\n",
1379                                (int)(p - s), s);
1380                         eol_or_eof(&p);
1381                 }
1382
1383                 if (err < 0)
1384                         return err;
1385         }
1386 }
1387
1388 /*
1389  */
1390 void destroy_pxe_menu(struct pxe_menu *cfg)
1391 {
1392         struct list_head *pos, *n;
1393         struct pxe_label *label;
1394
1395         free(cfg->title);
1396         free(cfg->default_label);
1397
1398         list_for_each_safe(pos, n, &cfg->labels) {
1399                 label = list_entry(pos, struct pxe_label, list);
1400
1401                 label_destroy(label);
1402         }
1403
1404         free(cfg);
1405 }
1406
1407 struct pxe_menu *parse_pxefile(struct pxe_context *ctx, unsigned long menucfg)
1408 {
1409         struct pxe_menu *cfg;
1410         char *buf;
1411         int r;
1412
1413         cfg = malloc(sizeof(struct pxe_menu));
1414         if (!cfg)
1415                 return NULL;
1416
1417         memset(cfg, 0, sizeof(struct pxe_menu));
1418
1419         INIT_LIST_HEAD(&cfg->labels);
1420
1421         buf = map_sysmem(menucfg, 0);
1422         r = parse_pxefile_top(ctx, buf, menucfg, cfg, 1);
1423         unmap_sysmem(buf);
1424         if (r < 0) {
1425                 destroy_pxe_menu(cfg);
1426                 return NULL;
1427         }
1428
1429         return cfg;
1430 }
1431
1432 /*
1433  * Converts a pxe_menu struct into a menu struct for use with U-Boot's generic
1434  * menu code.
1435  */
1436 static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)
1437 {
1438         struct pxe_label *label;
1439         struct list_head *pos;
1440         struct menu *m;
1441         char *label_override;
1442         int err;
1443         int i = 1;
1444         char *default_num = NULL;
1445         char *override_num = NULL;
1446
1447         /*
1448          * Create a menu and add items for all the labels.
1449          */
1450         m = menu_create(cfg->title, DIV_ROUND_UP(cfg->timeout, 10),
1451                         cfg->prompt, NULL, label_print, NULL, NULL);
1452         if (!m)
1453                 return NULL;
1454
1455         label_override = env_get("pxe_label_override");
1456
1457         list_for_each(pos, &cfg->labels) {
1458                 label = list_entry(pos, struct pxe_label, list);
1459
1460                 sprintf(label->num, "%d", i++);
1461                 if (menu_item_add(m, label->num, label) != 1) {
1462                         menu_destroy(m);
1463                         return NULL;
1464                 }
1465                 if (cfg->default_label &&
1466                     (strcmp(label->name, cfg->default_label) == 0))
1467                         default_num = label->num;
1468                 if (label_override && !strcmp(label->name, label_override))
1469                         override_num = label->num;
1470         }
1471
1472
1473         if (label_override) {
1474                 if (override_num)
1475                         default_num = override_num;
1476                 else
1477                         printf("Missing override pxe label: %s\n",
1478                               label_override);
1479         }
1480
1481         /*
1482          * After we've created items for each label in the menu, set the
1483          * menu's default label if one was specified.
1484          */
1485         if (default_num) {
1486                 err = menu_default_set(m, default_num);
1487                 if (err != 1) {
1488                         if (err != -ENOENT) {
1489                                 menu_destroy(m);
1490                                 return NULL;
1491                         }
1492
1493                         printf("Missing default: %s\n", cfg->default_label);
1494                 }
1495         }
1496
1497         return m;
1498 }
1499
1500 /*
1501  * Try to boot any labels we have yet to attempt to boot.
1502  */
1503 static void boot_unattempted_labels(struct pxe_context *ctx,
1504                                     struct pxe_menu *cfg)
1505 {
1506         struct list_head *pos;
1507         struct pxe_label *label;
1508
1509         list_for_each(pos, &cfg->labels) {
1510                 label = list_entry(pos, struct pxe_label, list);
1511
1512                 if (!label->attempted)
1513                         label_boot(ctx, label);
1514         }
1515 }
1516
1517 void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg)
1518 {
1519         void *choice;
1520         struct menu *m;
1521         int err;
1522
1523         if (IS_ENABLED(CONFIG_CMD_BMP)) {
1524                 /* display BMP if available */
1525                 if (cfg->bmp) {
1526                         if (get_relfile(ctx, cfg->bmp, image_load_addr, NULL)) {
1527 #if defined(CONFIG_VIDEO)
1528                                 struct udevice *dev;
1529
1530                                 err = uclass_first_device_err(UCLASS_VIDEO, &dev);
1531                                 if (!err)
1532                                         video_clear(dev);
1533 #endif
1534                                 bmp_display(image_load_addr,
1535                                             BMP_ALIGN_CENTER, BMP_ALIGN_CENTER);
1536                         } else {
1537                                 printf("Skipping background bmp %s for failure\n",
1538                                        cfg->bmp);
1539                         }
1540                 }
1541         }
1542
1543         m = pxe_menu_to_menu(cfg);
1544         if (!m)
1545                 return;
1546
1547         err = menu_get_choice(m, &choice);
1548         menu_destroy(m);
1549
1550         /*
1551          * err == 1 means we got a choice back from menu_get_choice.
1552          *
1553          * err == -ENOENT if the menu was setup to select the default but no
1554          * default was set. in that case, we should continue trying to boot
1555          * labels that haven't been attempted yet.
1556          *
1557          * otherwise, the user interrupted or there was some other error and
1558          * we give up.
1559          */
1560
1561         if (err == 1) {
1562                 err = label_boot(ctx, choice);
1563                 if (!err)
1564                         return;
1565         } else if (err != -ENOENT) {
1566                 return;
1567         }
1568
1569         boot_unattempted_labels(ctx, cfg);
1570 }
1571
1572 int pxe_setup_ctx(struct pxe_context *ctx, struct cmd_tbl *cmdtp,
1573                   pxe_getfile_func getfile, void *userdata,
1574                   bool allow_abs_path, const char *bootfile)
1575 {
1576         const char *last_slash;
1577         size_t path_len = 0;
1578
1579         memset(ctx, '\0', sizeof(*ctx));
1580         ctx->cmdtp = cmdtp;
1581         ctx->getfile = getfile;
1582         ctx->userdata = userdata;
1583         ctx->allow_abs_path = allow_abs_path;
1584
1585         /* figure out the boot directory, if there is one */
1586         if (bootfile && strlen(bootfile) >= MAX_TFTP_PATH_LEN)
1587                 return -ENOSPC;
1588         ctx->bootdir = strdup(bootfile ? bootfile : "");
1589         if (!ctx->bootdir)
1590                 return -ENOMEM;
1591
1592         if (bootfile) {
1593                 last_slash = strrchr(bootfile, '/');
1594                 if (last_slash)
1595                         path_len = (last_slash - bootfile) + 1;
1596         }
1597         ctx->bootdir[path_len] = '\0';
1598
1599         return 0;
1600 }
1601
1602 void pxe_destroy_ctx(struct pxe_context *ctx)
1603 {
1604         free(ctx->bootdir);
1605 }
1606
1607 int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt)
1608 {
1609         struct pxe_menu *cfg;
1610
1611         cfg = parse_pxefile(ctx, pxefile_addr_r);
1612         if (!cfg) {
1613                 printf("Error parsing config file\n");
1614                 return 1;
1615         }
1616
1617         if (prompt)
1618                 cfg->prompt = 1;
1619
1620         handle_pxe_menu(ctx, cfg);
1621
1622         destroy_pxe_menu(cfg);
1623
1624         return 0;
1625 }