cyclic: drop redundant cyclic_ready flag
[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);
262         free(label->config);
263         free(label->append);
264         free(label->initrd);
265         free(label->fdt);
266         free(label->fdtdir);
267         free(label->fdtoverlays);
268         free(label);
269 }
270
271 /**
272  * label_print() - Print a label and its string members if they're defined
273  *
274  * This is passed as a callback to the menu code for displaying each
275  * menu entry.
276  *
277  * @data: Label to print (is cast to struct pxe_label *)
278  */
279 static void label_print(void *data)
280 {
281         struct pxe_label *label = data;
282         const char *c = label->menu ? label->menu : label->name;
283
284         printf("%s:\t%s\n", label->num, c);
285 }
286
287 /**
288  * label_localboot() - Boot a label that specified 'localboot'
289  *
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'.
294  *
295  * @label: Label to process
296  * Returns 1 on success or < 0 on error
297  */
298 static int label_localboot(struct pxe_label *label)
299 {
300         char *localcmd;
301
302         localcmd = from_env("localcmd");
303         if (!localcmd)
304                 return -ENOENT;
305
306         if (label->append) {
307                 char bootargs[CONFIG_SYS_CBSIZE];
308
309                 cli_simple_process_macros(label->append, bootargs,
310                                           sizeof(bootargs));
311                 env_set("bootargs", bootargs);
312         }
313
314         debug("running: %s\n", localcmd);
315
316         return run_command_list(localcmd, strlen(localcmd), 0);
317 }
318
319 /*
320  * label_boot_kaslrseed generate kaslrseed from hw rng
321  */
322
323 static void label_boot_kaslrseed(void)
324 {
325 #ifdef CONFIG_DM_RNG
326         ulong fdt_addr;
327         struct fdt_header *working_fdt;
328         size_t n = 0x8;
329         struct udevice *dev;
330         u64 *buf;
331         int nodeoffset;
332         int err;
333
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);
338         if (err)
339                 return;
340
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);
344         if (err <= 0)
345                 return;
346
347         if (uclass_get_device(UCLASS_RNG, 0, &dev) || !dev) {
348                 printf("No RNG device\n");
349                 return;
350         }
351
352         nodeoffset = fdt_find_or_add_subnode(working_fdt, 0, "chosen");
353         if (nodeoffset < 0) {
354                 printf("Reading chosen node failed\n");
355                 return;
356         }
357
358         buf = malloc(n);
359         if (!buf) {
360                 printf("Out of memory\n");
361                 return;
362         }
363
364         if (dm_rng_read(dev, buf, n)) {
365                 printf("Reading RNG failed\n");
366                 goto err;
367         }
368
369         err = fdt_setprop(working_fdt, nodeoffset, "kaslr-seed", buf, sizeof(buf));
370         if (err < 0) {
371                 printf("Unable to set kaslr-seed on chosen node: %s\n", fdt_strerror(err));
372                 goto err;
373         }
374 err:
375         free(buf);
376 #endif
377         return;
378 }
379
380 /**
381  * label_boot_fdtoverlay() - Loads fdt overlays specified in 'fdtoverlays'
382  * or 'devicetree-overlay'
383  *
384  * @ctx: PXE context
385  * @label: Label to process
386  */
387 #ifdef CONFIG_OF_LIBFDT_OVERLAY
388 static void label_boot_fdtoverlay(struct pxe_context *ctx,
389                                   struct pxe_label *label)
390 {
391         char *fdtoverlay = label->fdtoverlays;
392         struct fdt_header *working_fdt;
393         char *fdtoverlay_addr_env;
394         ulong fdtoverlay_addr;
395         ulong fdt_addr;
396         int err;
397
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);
402         if (err)
403                 return;
404
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");
409                 return;
410         }
411
412         fdtoverlay_addr = hextoul(fdtoverlay_addr_env, NULL);
413
414         /* Cycle over the overlay files and apply them in order */
415         do {
416                 struct fdt_header *blob;
417                 char *overlayfile;
418                 char *end;
419                 int len;
420
421                 /* Drop leading spaces */
422                 while (*fdtoverlay == ' ')
423                         ++fdtoverlay;
424
425                 /* Copy a single filename if multiple provided */
426                 end = strstr(fdtoverlay, " ");
427                 if (end) {
428                         len = (int)(end - fdtoverlay);
429                         overlayfile = malloc(len + 1);
430                         strncpy(overlayfile, fdtoverlay, len);
431                         overlayfile[len] = '\0';
432                 } else
433                         overlayfile = fdtoverlay;
434
435                 if (!strlen(overlayfile))
436                         goto skip_overlay;
437
438                 /* Load overlay file */
439                 err = get_relfile_envaddr(ctx, overlayfile, "fdtoverlay_addr_r",
440                                           NULL);
441                 if (err < 0) {
442                         printf("Failed loading overlay %s\n", overlayfile);
443                         goto skip_overlay;
444                 }
445
446                 /* Resize main fdt */
447                 fdt_shrink_to_minimum(working_fdt, 8192);
448
449                 blob = map_sysmem(fdtoverlay_addr, 0);
450                 err = fdt_check_header(blob);
451                 if (err) {
452                         printf("Invalid overlay %s, skipping\n",
453                                overlayfile);
454                         goto skip_overlay;
455                 }
456
457                 err = fdt_overlay_apply_verbose(working_fdt, blob);
458                 if (err) {
459                         printf("Failed to apply overlay %s, skipping\n",
460                                overlayfile);
461                         goto skip_overlay;
462                 }
463
464 skip_overlay:
465                 if (end)
466                         free(overlayfile);
467         } while ((fdtoverlay = strstr(fdtoverlay, " ")));
468 }
469 #endif
470
471 /**
472  * label_boot() - Boot according to the contents of a pxe_label
473  *
474  * If we can't boot for any reason, we return.  A successful boot never
475  * returns.
476  *
477  * The kernel will be stored in the location given by the 'kernel_addr_r'
478  * environment variable.
479  *
480  * If the label specifies an initrd file, it will be stored in the location
481  * given by the 'ramdisk_addr_r' environment variable.
482  *
483  * If the label specifies an 'append' line, its contents will overwrite that
484  * of the 'bootargs' environment variable.
485  *
486  * @ctx: PXE context
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
490  */
491 static int label_boot(struct pxe_context *ctx, struct pxe_label *label)
492 {
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];
498         char initrd_str[28];
499         char mac_str[29] = "";
500         char ip_str[68] = "";
501         char *fit_addr = NULL;
502         int bootm_argc = 2;
503         int zboot_argc = 3;
504         int len = 0;
505         ulong kernel_addr_r;
506         void *buf;
507
508         label_print(label);
509
510         label->attempted = 1;
511
512         if (label->localboot) {
513                 if (label->localboot_val >= 0)
514                         label_localboot(label);
515                 return 0;
516         }
517
518         if (!label->kernel) {
519                 printf("No kernel given, skipping %s\n",
520                        label->name);
521                 return 1;
522         }
523
524         if (label->initrd) {
525                 ulong size;
526
527                 if (get_relfile_envaddr(ctx, label->initrd, "ramdisk_addr_r",
528                                         &size) < 0) {
529                         printf("Skipping %s for failure retrieving initrd\n",
530                                label->name);
531                         return 1;
532                 }
533
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))
538                         return 1;
539         }
540
541         if (get_relfile_envaddr(ctx, label->kernel, "kernel_addr_r",
542                                 NULL) < 0) {
543                 printf("Skipping %s for failure retrieving kernel\n",
544                        label->name);
545                 return 1;
546         }
547
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"));
552         }
553
554         if (IS_ENABLED(CONFIG_CMD_NET)) {
555                 if (label->ipappend & 0x2) {
556                         int err;
557
558                         strcpy(mac_str, " BOOTIF=");
559                         err = format_mac_pxe(mac_str + 8, sizeof(mac_str) - 8);
560                         if (err < 0)
561                                 mac_str[0] = '\0';
562                 }
563         }
564
565         if ((label->ipappend & 0x3) || label->append) {
566                 char bootargs[CONFIG_SYS_CBSIZE] = "";
567                 char finalbootargs[CONFIG_SYS_CBSIZE];
568
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),
574                                sizeof(bootargs));
575                         return 1;
576                 }
577
578                 if (label->append)
579                         strncpy(bootargs, label->append, sizeof(bootargs));
580
581                 strcat(bootargs, ip_str);
582                 strcat(bootargs, mac_str);
583
584                 cli_simple_process_macros(bootargs, finalbootargs,
585                                           sizeof(finalbootargs));
586                 env_set("bootargs", finalbootargs);
587                 printf("append: %s\n", finalbootargs);
588         }
589
590         kernel_addr = env_get("kernel_addr_r");
591
592         /* for FIT, append the configuration identifier */
593         if (label->config) {
594                 int len = strlen(kernel_addr) + strlen(label->config) + 1;
595
596                 fit_addr = malloc(len);
597                 if (!fit_addr) {
598                         printf("malloc fail (FIT address)\n");
599                         return 1;
600                 }
601                 snprintf(fit_addr, len, "%s%s", kernel_addr, label->config);
602                 kernel_addr = fit_addr;
603         }
604
605         /*
606          * fdt usage is optional:
607          * It handles the following scenarios.
608          *
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.
612          *
613          * If retrieve fails and no exact fdt blob is specified in pxe file with
614          * "fdt" label, try Scenario 2.
615          *
616          * Scenario 2: If there is an fdt_addr specified, pass it along to
617          * bootm, and adjust argc appropriately.
618          *
619          * Scenario 3: If there is an fdtcontroladdr specified, pass it along to
620          * bootm, and adjust argc appropriately.
621          *
622          * Scenario 4: fdt blob is not available.
623          */
624         bootm_argv[3] = env_get("fdt_addr_r");
625
626         /* if fdt label is defined then get fdt from server */
627         if (bootm_argv[3]) {
628                 char *fdtfile = NULL;
629                 char *fdtfilefree = NULL;
630
631                 if (label->fdt) {
632                         fdtfile = label->fdt;
633                 } else if (label->fdtdir) {
634                         char *f1, *f2, *f3, *f4, *slash;
635
636                         f1 = env_get("fdtfile");
637                         if (f1) {
638                                 f2 = "";
639                                 f3 = "";
640                                 f4 = "";
641                         } else {
642                                 /*
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".
648                                  */
649                                 f1 = env_get("soc");
650                                 f2 = "-";
651                                 f3 = env_get("board");
652                                 f4 = ".dtb";
653                                 if (!f1) {
654                                         f1 = "";
655                                         f2 = "";
656                                 }
657                                 if (!f3) {
658                                         f2 = "";
659                                         f3 = "";
660                                 }
661                         }
662
663                         len = strlen(label->fdtdir);
664                         if (!len)
665                                 slash = "./";
666                         else if (label->fdtdir[len - 1] != '/')
667                                 slash = "/";
668                         else
669                                 slash = "";
670
671                         len = strlen(label->fdtdir) + strlen(slash) +
672                                 strlen(f1) + strlen(f2) + strlen(f3) +
673                                 strlen(f4) + 1;
674                         fdtfilefree = malloc(len);
675                         if (!fdtfilefree) {
676                                 printf("malloc fail (FDT filename)\n");
677                                 goto cleanup;
678                         }
679
680                         snprintf(fdtfilefree, len, "%s%s%s%s%s%s",
681                                  label->fdtdir, slash, f1, f2, f3, f4);
682                         fdtfile = fdtfilefree;
683                 }
684
685                 if (fdtfile) {
686                         int err = get_relfile_envaddr(ctx, fdtfile,
687                                                       "fdt_addr_r", NULL);
688
689                         free(fdtfilefree);
690                         if (err < 0) {
691                                 bootm_argv[3] = NULL;
692
693                                 if (label->fdt) {
694                                         printf("Skipping %s for failure retrieving FDT\n",
695                                                label->name);
696                                         goto cleanup;
697                                 }
698                         }
699
700                 if (label->kaslrseed)
701                         label_boot_kaslrseed();
702
703 #ifdef CONFIG_OF_LIBFDT_OVERLAY
704                         if (label->fdtoverlays)
705                                 label_boot_fdtoverlay(ctx, label);
706 #endif
707                 } else {
708                         bootm_argv[3] = NULL;
709                 }
710         }
711
712         bootm_argv[1] = kernel_addr;
713         zboot_argv[1] = kernel_addr;
714
715         if (initrd_addr_str) {
716                 bootm_argv[2] = initrd_str;
717                 bootm_argc = 3;
718
719                 zboot_argv[3] = initrd_addr_str;
720                 zboot_argv[4] = initrd_filesize;
721                 zboot_argc = 5;
722         }
723
724         if (!bootm_argv[3])
725                 bootm_argv[3] = env_get("fdt_addr");
726
727         if (!bootm_argv[3])
728                 bootm_argv[3] = env_get("fdtcontroladdr");
729
730         if (bootm_argv[3]) {
731                 if (!bootm_argv[2])
732                         bootm_argv[2] = "-";
733                 bootm_argc = 4;
734         }
735
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);
751
752         unmap_sysmem(buf);
753
754 cleanup:
755         free(fit_addr);
756
757         return 1;
758 }
759
760 /** enum token_type - Tokens for the pxe file parser */
761 enum token_type {
762         T_EOL,
763         T_STRING,
764         T_EOF,
765         T_MENU,
766         T_TITLE,
767         T_TIMEOUT,
768         T_LABEL,
769         T_KERNEL,
770         T_LINUX,
771         T_APPEND,
772         T_INITRD,
773         T_LOCALBOOT,
774         T_DEFAULT,
775         T_PROMPT,
776         T_INCLUDE,
777         T_FDT,
778         T_FDTDIR,
779         T_FDTOVERLAYS,
780         T_ONTIMEOUT,
781         T_IPAPPEND,
782         T_BACKGROUND,
783         T_KASLRSEED,
784         T_INVALID
785 };
786
787 /** struct token - token - given by a value and a type */
788 struct token {
789         char *val;
790         enum token_type type;
791 };
792
793 /* Keywords recognized */
794 static const struct token keywords[] = {
795         {"menu", T_MENU},
796         {"title", T_TITLE},
797         {"timeout", T_TIMEOUT},
798         {"default", T_DEFAULT},
799         {"prompt", T_PROMPT},
800         {"label", T_LABEL},
801         {"kernel", T_KERNEL},
802         {"linux", T_LINUX},
803         {"localboot", T_LOCALBOOT},
804         {"append", T_APPEND},
805         {"initrd", T_INITRD},
806         {"include", T_INCLUDE},
807         {"devicetree", T_FDT},
808         {"fdt", 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,},
817         {NULL, T_INVALID}
818 };
819
820 /**
821  * enum lex_state - lexer state
822  *
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.
826  */
827 enum lex_state {
828         L_NORMAL = 0,
829         L_KEYWORD,
830         L_SLITERAL
831 };
832
833 /**
834  * get_string() - retrieves a string from *p and stores it as a token in *t.
835  *
836  * This is used for scanning both string literals and keywords.
837  *
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.
841  *
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
844  * insensitive.
845  *
846  * The location of *p is updated to point to the first character after the end
847  * of the token - the ending delimiter.
848  *
849  * Memory for t->val is allocated using malloc and must be free()'d to reclaim
850  * it.
851  *
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
858  */
859 static char *get_string(char **p, struct token *t, char delim, int lower)
860 {
861         char *b, *e;
862         size_t len, i;
863
864         /*
865          * b and e both start at the beginning of the input stream.
866          *
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.
869          */
870         b = *p;
871         e = *p;
872         while (*e) {
873                 if ((delim == ' ' && isspace(*e)) || delim == *e)
874                         break;
875                 e++;
876         }
877
878         len = e - b;
879
880         /*
881          * Allocate memory to hold the string, and copy it in, converting
882          * characters to lowercase if lower is != 0.
883          */
884         t->val = malloc(len + 1);
885         if (!t->val)
886                 return NULL;
887
888         for (i = 0; i < len; i++, b++) {
889                 if (lower)
890                         t->val[i] = tolower(*b);
891                 else
892                         t->val[i] = *b;
893         }
894
895         t->val[len] = '\0';
896
897         /* Update *p so the caller knows where to continue scanning */
898         *p = e;
899         t->type = T_STRING;
900
901         return t->val;
902 }
903
904 /**
905  * get_keyword() - Populate a keyword token with a type and value
906  *
907  * Updates the ->type field based on the keyword string in @val
908  * @t: Token to populate
909  */
910 static void get_keyword(struct token *t)
911 {
912         int i;
913
914         for (i = 0; keywords[i].val; i++) {
915                 if (!strcmp(t->val, keywords[i].val)) {
916                         t->type = keywords[i].type;
917                         break;
918                 }
919         }
920 }
921
922 /**
923  * get_token() - Get the next token
924  *
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.
927  *
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
930  */
931 static void get_token(char **p, struct token *t, enum lex_state state)
932 {
933         char *c = *p;
934
935         t->type = T_INVALID;
936
937         /* eat non EOL whitespace */
938         while (isblank(*c))
939                 c++;
940
941         /*
942          * eat comments. note that string literals can't begin with #, but
943          * can contain a # after their first character.
944          */
945         if (*c == '#') {
946                 while (*c && *c != '\n')
947                         c++;
948         }
949
950         if (*c == '\n') {
951                 t->type = T_EOL;
952                 c++;
953         } else if (*c == '\0') {
954                 t->type = T_EOF;
955                 c++;
956         } else if (state == L_SLITERAL) {
957                 get_string(&c, t, '\n', 0);
958         } else if (state == L_KEYWORD) {
959                 /*
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.
965                  */
966                 get_string(&c, t, ' ', 1);
967                 get_keyword(t);
968         }
969
970         *p = c;
971 }
972
973 /**
974  * eol_or_eof() - Find end of line
975  *
976  * Increment *c until we get to the end of the current line, or EOF
977  *
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
980  */
981 static void eol_or_eof(char **c)
982 {
983         while (**c && **c != '\n')
984                 (*c)++;
985 }
986
987 /*
988  * All of these parse_* functions share some common behavior.
989  *
990  * They finish with *c pointing after the token they parse, and return 1 on
991  * success, or < 0 on error.
992  */
993
994 /*
995  * Parse a string literal and store a pointer it at *dst. String literals
996  * terminate at the end of the line.
997  */
998 static int parse_sliteral(char **c, char **dst)
999 {
1000         struct token t;
1001         char *s = *c;
1002
1003         get_token(c, &t, L_SLITERAL);
1004
1005         if (t.type != T_STRING) {
1006                 printf("Expected string literal: %.*s\n", (int)(*c - s), s);
1007                 return -EINVAL;
1008         }
1009
1010         *dst = t.val;
1011
1012         return 1;
1013 }
1014
1015 /*
1016  * Parse a base 10 (unsigned) integer and store it at *dst.
1017  */
1018 static int parse_integer(char **c, int *dst)
1019 {
1020         struct token t;
1021         char *s = *c;
1022
1023         get_token(c, &t, L_SLITERAL);
1024         if (t.type != T_STRING) {
1025                 printf("Expected string: %.*s\n", (int)(*c - s), s);
1026                 return -EINVAL;
1027         }
1028
1029         *dst = simple_strtol(t.val, NULL, 10);
1030
1031         free(t.val);
1032
1033         return 1;
1034 }
1035
1036 static int parse_pxefile_top(struct pxe_context *ctx, char *p, ulong base,
1037                              struct pxe_menu *cfg, int nest_level);
1038
1039 /*
1040  * Parse an include statement, and retrieve and parse the file it mentions.
1041  *
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
1045  * incremented here.
1046  */
1047 static int handle_include(struct pxe_context *ctx, char **c, unsigned long base,
1048                           struct pxe_menu *cfg, int nest_level)
1049 {
1050         char *include_path;
1051         char *s = *c;
1052         int err;
1053         char *buf;
1054         int ret;
1055
1056         err = parse_sliteral(c, &include_path);
1057         if (err < 0) {
1058                 printf("Expected include path: %.*s\n", (int)(*c - s), s);
1059                 return err;
1060         }
1061
1062         err = get_pxe_file(ctx, include_path, base);
1063         if (err < 0) {
1064                 printf("Couldn't retrieve %s\n", include_path);
1065                 return err;
1066         }
1067
1068         buf = map_sysmem(base, 0);
1069         ret = parse_pxefile_top(ctx, buf, base, cfg, nest_level);
1070         unmap_sysmem(buf);
1071
1072         return ret;
1073 }
1074
1075 /*
1076  * Parse lines that begin with 'menu'.
1077  *
1078  * base and nest are provided to handle the 'menu include' case.
1079  *
1080  * base should point to a location where it's safe to store the included file.
1081  *
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.
1084  */
1085 static int parse_menu(struct pxe_context *ctx, char **c, struct pxe_menu *cfg,
1086                       unsigned long base, int nest_level)
1087 {
1088         struct token t;
1089         char *s = *c;
1090         int err = 0;
1091
1092         get_token(c, &t, L_KEYWORD);
1093
1094         switch (t.type) {
1095         case T_TITLE:
1096                 err = parse_sliteral(c, &cfg->title);
1097
1098                 break;
1099
1100         case T_INCLUDE:
1101                 err = handle_include(ctx, c, base, cfg, nest_level + 1);
1102                 break;
1103
1104         case T_BACKGROUND:
1105                 err = parse_sliteral(c, &cfg->bmp);
1106                 break;
1107
1108         default:
1109                 printf("Ignoring malformed menu command: %.*s\n",
1110                        (int)(*c - s), s);
1111         }
1112         if (err < 0)
1113                 return err;
1114
1115         eol_or_eof(c);
1116
1117         return 1;
1118 }
1119
1120 /*
1121  * Handles parsing a 'menu line' when we're parsing a label.
1122  */
1123 static int parse_label_menu(char **c, struct pxe_menu *cfg,
1124                             struct pxe_label *label)
1125 {
1126         struct token t;
1127         char *s;
1128
1129         s = *c;
1130
1131         get_token(c, &t, L_KEYWORD);
1132
1133         switch (t.type) {
1134         case T_DEFAULT:
1135                 if (!cfg->default_label)
1136                         cfg->default_label = strdup(label->name);
1137
1138                 if (!cfg->default_label)
1139                         return -ENOMEM;
1140
1141                 break;
1142         case T_LABEL:
1143                 parse_sliteral(c, &label->menu);
1144                 break;
1145         default:
1146                 printf("Ignoring malformed menu command: %.*s\n",
1147                        (int)(*c - s), s);
1148         }
1149
1150         eol_or_eof(c);
1151
1152         return 0;
1153 }
1154
1155 /*
1156  * Handles parsing a 'kernel' label.
1157  * expecting "filename" or "<fit_filename>#cfg"
1158  */
1159 static int parse_label_kernel(char **c, struct pxe_label *label)
1160 {
1161         char *s;
1162         int err;
1163
1164         err = parse_sliteral(c, &label->kernel);
1165         if (err < 0)
1166                 return err;
1167
1168         s = strstr(label->kernel, "#");
1169         if (!s)
1170                 return 1;
1171
1172         label->config = malloc(strlen(s) + 1);
1173         if (!label->config)
1174                 return -ENOMEM;
1175
1176         strcpy(label->config, s);
1177         *s = 0;
1178
1179         return 1;
1180 }
1181
1182 /*
1183  * Parses a label and adds it to the list of labels for a menu.
1184  *
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
1187  * for.
1188  *
1189  */
1190 static int parse_label(char **c, struct pxe_menu *cfg)
1191 {
1192         struct token t;
1193         int len;
1194         char *s = *c;
1195         struct pxe_label *label;
1196         int err;
1197
1198         label = label_create();
1199         if (!label)
1200                 return -ENOMEM;
1201
1202         err = parse_sliteral(c, &label->name);
1203         if (err < 0) {
1204                 printf("Expected label name: %.*s\n", (int)(*c - s), s);
1205                 label_destroy(label);
1206                 return -EINVAL;
1207         }
1208
1209         list_add_tail(&label->list, &cfg->labels);
1210
1211         while (1) {
1212                 s = *c;
1213                 get_token(c, &t, L_KEYWORD);
1214
1215                 err = 0;
1216                 switch (t.type) {
1217                 case T_MENU:
1218                         err = parse_label_menu(c, cfg, label);
1219                         break;
1220
1221                 case T_KERNEL:
1222                 case T_LINUX:
1223                         err = parse_label_kernel(c, label);
1224                         break;
1225
1226                 case T_APPEND:
1227                         err = parse_sliteral(c, &label->append);
1228                         if (label->initrd)
1229                                 break;
1230                         s = strstr(label->append, "initrd=");
1231                         if (!s)
1232                                 break;
1233                         s += 7;
1234                         len = (int)(strchr(s, ' ') - s);
1235                         label->initrd = malloc(len + 1);
1236                         strncpy(label->initrd, s, len);
1237                         label->initrd[len] = '\0';
1238
1239                         break;
1240
1241                 case T_INITRD:
1242                         if (!label->initrd)
1243                                 err = parse_sliteral(c, &label->initrd);
1244                         break;
1245
1246                 case T_FDT:
1247                         if (!label->fdt)
1248                                 err = parse_sliteral(c, &label->fdt);
1249                         break;
1250
1251                 case T_FDTDIR:
1252                         if (!label->fdtdir)
1253                                 err = parse_sliteral(c, &label->fdtdir);
1254                         break;
1255
1256                 case T_FDTOVERLAYS:
1257                         if (!label->fdtoverlays)
1258                                 err = parse_sliteral(c, &label->fdtoverlays);
1259                         break;
1260
1261                 case T_LOCALBOOT:
1262                         label->localboot = 1;
1263                         err = parse_integer(c, &label->localboot_val);
1264                         break;
1265
1266                 case T_IPAPPEND:
1267                         err = parse_integer(c, &label->ipappend);
1268                         break;
1269
1270                 case T_KASLRSEED:
1271                         label->kaslrseed = 1;
1272                         break;
1273
1274                 case T_EOL:
1275                         break;
1276
1277                 default:
1278                         /*
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.
1282                          */
1283                         *c = s;
1284                         return 1;
1285                 }
1286
1287                 if (err < 0)
1288                         return err;
1289         }
1290 }
1291
1292 /*
1293  * This 16 comes from the limit pxelinux imposes on nested includes.
1294  *
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.
1297  */
1298 #define MAX_NEST_LEVEL 16
1299
1300 /*
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.
1303  *
1304  * Returns 1 on success, < 0 on error.
1305  */
1306 static int parse_pxefile_top(struct pxe_context *ctx, char *p, unsigned long base,
1307                              struct pxe_menu *cfg, int nest_level)
1308 {
1309         struct token t;
1310         char *s, *b, *label_name;
1311         int err;
1312
1313         b = p;
1314
1315         if (nest_level > MAX_NEST_LEVEL) {
1316                 printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL);
1317                 return -EMLINK;
1318         }
1319
1320         while (1) {
1321                 s = p;
1322
1323                 get_token(&p, &t, L_KEYWORD);
1324
1325                 err = 0;
1326                 switch (t.type) {
1327                 case T_MENU:
1328                         cfg->prompt = 1;
1329                         err = parse_menu(ctx, &p, cfg,
1330                                          base + ALIGN(strlen(b) + 1, 4),
1331                                          nest_level);
1332                         break;
1333
1334                 case T_TIMEOUT:
1335                         err = parse_integer(&p, &cfg->timeout);
1336                         break;
1337
1338                 case T_LABEL:
1339                         err = parse_label(&p, cfg);
1340                         break;
1341
1342                 case T_DEFAULT:
1343                 case T_ONTIMEOUT:
1344                         err = parse_sliteral(&p, &label_name);
1345
1346                         if (label_name) {
1347                                 if (cfg->default_label)
1348                                         free(cfg->default_label);
1349
1350                                 cfg->default_label = label_name;
1351                         }
1352
1353                         break;
1354
1355                 case T_INCLUDE:
1356                         err = handle_include(ctx, &p,
1357                                              base + ALIGN(strlen(b), 4), cfg,
1358                                              nest_level + 1);
1359                         break;
1360
1361                 case T_PROMPT:
1362                         eol_or_eof(&p);
1363                         break;
1364
1365                 case T_EOL:
1366                         break;
1367
1368                 case T_EOF:
1369                         return 1;
1370
1371                 default:
1372                         printf("Ignoring unknown command: %.*s\n",
1373                                (int)(p - s), s);
1374                         eol_or_eof(&p);
1375                 }
1376
1377                 if (err < 0)
1378                         return err;
1379         }
1380 }
1381
1382 /*
1383  */
1384 void destroy_pxe_menu(struct pxe_menu *cfg)
1385 {
1386         struct list_head *pos, *n;
1387         struct pxe_label *label;
1388
1389         free(cfg->title);
1390         free(cfg->default_label);
1391
1392         list_for_each_safe(pos, n, &cfg->labels) {
1393                 label = list_entry(pos, struct pxe_label, list);
1394
1395                 label_destroy(label);
1396         }
1397
1398         free(cfg);
1399 }
1400
1401 struct pxe_menu *parse_pxefile(struct pxe_context *ctx, unsigned long menucfg)
1402 {
1403         struct pxe_menu *cfg;
1404         char *buf;
1405         int r;
1406
1407         cfg = malloc(sizeof(struct pxe_menu));
1408         if (!cfg)
1409                 return NULL;
1410
1411         memset(cfg, 0, sizeof(struct pxe_menu));
1412
1413         INIT_LIST_HEAD(&cfg->labels);
1414
1415         buf = map_sysmem(menucfg, 0);
1416         r = parse_pxefile_top(ctx, buf, menucfg, cfg, 1);
1417         unmap_sysmem(buf);
1418         if (r < 0) {
1419                 destroy_pxe_menu(cfg);
1420                 return NULL;
1421         }
1422
1423         return cfg;
1424 }
1425
1426 /*
1427  * Converts a pxe_menu struct into a menu struct for use with U-Boot's generic
1428  * menu code.
1429  */
1430 static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)
1431 {
1432         struct pxe_label *label;
1433         struct list_head *pos;
1434         struct menu *m;
1435         char *label_override;
1436         int err;
1437         int i = 1;
1438         char *default_num = NULL;
1439         char *override_num = NULL;
1440
1441         /*
1442          * Create a menu and add items for all the labels.
1443          */
1444         m = menu_create(cfg->title, DIV_ROUND_UP(cfg->timeout, 10),
1445                         cfg->prompt, NULL, label_print, NULL, NULL);
1446         if (!m)
1447                 return NULL;
1448
1449         label_override = env_get("pxe_label_override");
1450
1451         list_for_each(pos, &cfg->labels) {
1452                 label = list_entry(pos, struct pxe_label, list);
1453
1454                 sprintf(label->num, "%d", i++);
1455                 if (menu_item_add(m, label->num, label) != 1) {
1456                         menu_destroy(m);
1457                         return NULL;
1458                 }
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;
1464         }
1465
1466
1467         if (label_override) {
1468                 if (override_num)
1469                         default_num = override_num;
1470                 else
1471                         printf("Missing override pxe label: %s\n",
1472                               label_override);
1473         }
1474
1475         /*
1476          * After we've created items for each label in the menu, set the
1477          * menu's default label if one was specified.
1478          */
1479         if (default_num) {
1480                 err = menu_default_set(m, default_num);
1481                 if (err != 1) {
1482                         if (err != -ENOENT) {
1483                                 menu_destroy(m);
1484                                 return NULL;
1485                         }
1486
1487                         printf("Missing default: %s\n", cfg->default_label);
1488                 }
1489         }
1490
1491         return m;
1492 }
1493
1494 /*
1495  * Try to boot any labels we have yet to attempt to boot.
1496  */
1497 static void boot_unattempted_labels(struct pxe_context *ctx,
1498                                     struct pxe_menu *cfg)
1499 {
1500         struct list_head *pos;
1501         struct pxe_label *label;
1502
1503         list_for_each(pos, &cfg->labels) {
1504                 label = list_entry(pos, struct pxe_label, list);
1505
1506                 if (!label->attempted)
1507                         label_boot(ctx, label);
1508         }
1509 }
1510
1511 void handle_pxe_menu(struct pxe_context *ctx, struct pxe_menu *cfg)
1512 {
1513         void *choice;
1514         struct menu *m;
1515         int err;
1516
1517         if (IS_ENABLED(CONFIG_CMD_BMP)) {
1518                 /* display BMP if available */
1519                 if (cfg->bmp) {
1520                         if (get_relfile(ctx, cfg->bmp, image_load_addr, NULL)) {
1521 #if defined(CONFIG_VIDEO)
1522                                 struct udevice *dev;
1523
1524                                 err = uclass_first_device_err(UCLASS_VIDEO, &dev);
1525                                 if (!err)
1526                                         video_clear(dev);
1527 #endif
1528                                 bmp_display(image_load_addr,
1529                                             BMP_ALIGN_CENTER, BMP_ALIGN_CENTER);
1530                         } else {
1531                                 printf("Skipping background bmp %s for failure\n",
1532                                        cfg->bmp);
1533                         }
1534                 }
1535         }
1536
1537         m = pxe_menu_to_menu(cfg);
1538         if (!m)
1539                 return;
1540
1541         err = menu_get_choice(m, &choice);
1542         menu_destroy(m);
1543
1544         /*
1545          * err == 1 means we got a choice back from menu_get_choice.
1546          *
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.
1550          *
1551          * otherwise, the user interrupted or there was some other error and
1552          * we give up.
1553          */
1554
1555         if (err == 1) {
1556                 err = label_boot(ctx, choice);
1557                 if (!err)
1558                         return;
1559         } else if (err != -ENOENT) {
1560                 return;
1561         }
1562
1563         boot_unattempted_labels(ctx, cfg);
1564 }
1565
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)
1569 {
1570         const char *last_slash;
1571         size_t path_len = 0;
1572
1573         memset(ctx, '\0', sizeof(*ctx));
1574         ctx->cmdtp = cmdtp;
1575         ctx->getfile = getfile;
1576         ctx->userdata = userdata;
1577         ctx->allow_abs_path = allow_abs_path;
1578
1579         /* figure out the boot directory, if there is one */
1580         if (bootfile && strlen(bootfile) >= MAX_TFTP_PATH_LEN)
1581                 return -ENOSPC;
1582         ctx->bootdir = strdup(bootfile ? bootfile : "");
1583         if (!ctx->bootdir)
1584                 return -ENOMEM;
1585
1586         if (bootfile) {
1587                 last_slash = strrchr(bootfile, '/');
1588                 if (last_slash)
1589                         path_len = (last_slash - bootfile) + 1;
1590         }
1591         ctx->bootdir[path_len] = '\0';
1592
1593         return 0;
1594 }
1595
1596 void pxe_destroy_ctx(struct pxe_context *ctx)
1597 {
1598         free(ctx->bootdir);
1599 }
1600
1601 int pxe_process(struct pxe_context *ctx, ulong pxefile_addr_r, bool prompt)
1602 {
1603         struct pxe_menu *cfg;
1604
1605         cfg = parse_pxefile(ctx, pxefile_addr_r);
1606         if (!cfg) {
1607                 printf("Error parsing config file\n");
1608                 return 1;
1609         }
1610
1611         if (prompt)
1612                 cfg->prompt = 1;
1613
1614         handle_pxe_menu(ctx, cfg);
1615
1616         destroy_pxe_menu(cfg);
1617
1618         return 0;
1619 }