2 * Copyright 2010-2011 Calxeda, Inc.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the Free
6 * Software Foundation; either version 2 of the License, or (at your option)
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
20 #include <linux/string.h>
21 #include <linux/ctype.h>
23 #include <linux/list.h>
27 #define MAX_TFTP_PATH_LEN 127
30 * Like getenv, but prints an error if envvar isn't defined in the
31 * environment. It always returns what getenv does, so it can be used in
32 * place of getenv without changing error handling otherwise.
34 static char *from_env(char *envvar)
41 printf("missing environment variable: %s\n", envvar);
47 * Convert an ethaddr from the environment to the format used by pxelinux
48 * filenames based on mac addresses. Convert's ':' to '-', and adds "01-" to
49 * the beginning of the ethernet address to indicate a hardware type of
50 * Ethernet. Also converts uppercase hex characters into lowercase, to match
51 * pxelinux's behavior.
53 * Returns 1 for success, -ENOENT if 'ethaddr' is undefined in the
54 * environment, or some other value < 0 on error.
56 static int format_mac_pxe(char *outbuf, size_t outbuf_len)
61 ethaddr = from_env("ethaddr");
66 ethaddr_len = strlen(ethaddr);
69 * ethaddr_len + 4 gives room for "01-", ethaddr, and a NUL byte at
72 if (outbuf_len < ethaddr_len + 4) {
73 printf("outbuf is too small (%d < %d)\n",
74 outbuf_len, ethaddr_len + 4);
79 strcpy(outbuf, "01-");
81 for (p = outbuf + 3; *ethaddr; ethaddr++, p++) {
85 *p = tolower(*ethaddr);
94 * Returns the directory the file specified in the bootfile env variable is
95 * in. If bootfile isn't defined in the environment, return NULL, which should
96 * be interpreted as "don't prepend anything to paths".
98 static int get_bootfile_path(const char *file_path, char *bootfile_path,
99 size_t bootfile_path_size)
101 char *bootfile, *last_slash;
104 if (file_path[0] == '/')
107 bootfile = from_env("bootfile");
112 last_slash = strrchr(bootfile, '/');
114 if (last_slash == NULL)
117 path_len = (last_slash - bootfile) + 1;
119 if (bootfile_path_size < path_len) {
120 printf("bootfile_path too small. (%d < %d)\n",
121 bootfile_path_size, path_len);
126 strncpy(bootfile_path, bootfile, path_len);
129 bootfile_path[path_len] = '\0';
134 static int (*do_getfile)(char *file_path, char *file_addr);
136 static int do_get_tftp(char *file_path, char *file_addr)
138 char *tftp_argv[] = {"tftp", NULL, NULL, NULL};
140 tftp_argv[1] = file_addr;
141 tftp_argv[2] = file_path;
143 if (do_tftpb(NULL, 0, 3, tftp_argv))
149 static char *fs_argv[5];
151 static int do_get_ext2(char *file_path, char *file_addr)
153 #ifdef CONFIG_CMD_EXT2
154 fs_argv[0] = "ext2load";
155 fs_argv[3] = file_addr;
156 fs_argv[4] = file_path;
158 if (!do_ext2load(NULL, 0, 5, fs_argv))
164 static int do_get_fat(char *file_path, char *file_addr)
166 #ifdef CONFIG_CMD_FAT
167 fs_argv[0] = "fatload";
168 fs_argv[3] = file_addr;
169 fs_argv[4] = file_path;
171 if (!do_fat_fsload(NULL, 0, 5, fs_argv))
178 * As in pxelinux, paths to files referenced from files we retrieve are
179 * relative to the location of bootfile. get_relfile takes such a path and
180 * joins it with the bootfile path to get the full path to the target file. If
181 * the bootfile path is NULL, we use file_path as is.
183 * Returns 1 for success, or < 0 on error.
185 static int get_relfile(char *file_path, void *file_addr)
188 char relfile[MAX_TFTP_PATH_LEN+1];
192 err = get_bootfile_path(file_path, relfile, sizeof(relfile));
197 path_len = strlen(file_path);
198 path_len += strlen(relfile);
200 if (path_len > MAX_TFTP_PATH_LEN) {
201 printf("Base path too long (%s%s)\n",
205 return -ENAMETOOLONG;
208 strcat(relfile, file_path);
210 printf("Retrieving file: %s\n", relfile);
212 sprintf(addr_buf, "%p", file_addr);
214 return do_getfile(relfile, addr_buf);
218 * Retrieve the file at 'file_path' to the locate given by 'file_addr'. If
219 * 'bootfile' was specified in the environment, the path to bootfile will be
220 * prepended to 'file_path' and the resulting path will be used.
222 * Returns 1 on success, or < 0 for error.
224 static int get_pxe_file(char *file_path, void *file_addr)
226 unsigned long config_file_size;
230 err = get_relfile(file_path, file_addr);
236 * the file comes without a NUL byte at the end, so find out its size
237 * and add the NUL byte.
239 tftp_filesize = from_env("filesize");
244 if (strict_strtoul(tftp_filesize, 16, &config_file_size) < 0)
247 *(char *)(file_addr + config_file_size) = '\0';
252 #define PXELINUX_DIR "pxelinux.cfg/"
255 * Retrieves a file in the 'pxelinux.cfg' folder. Since this uses get_pxe_file
256 * to do the hard work, the location of the 'pxelinux.cfg' folder is generated
257 * from the bootfile path, as described above.
259 * Returns 1 on success or < 0 on error.
261 static int get_pxelinux_path(char *file, void *pxefile_addr_r)
263 size_t base_len = strlen(PXELINUX_DIR);
264 char path[MAX_TFTP_PATH_LEN+1];
266 if (base_len + strlen(file) > MAX_TFTP_PATH_LEN) {
267 printf("path (%s%s) too long, skipping\n",
269 return -ENAMETOOLONG;
272 sprintf(path, PXELINUX_DIR "%s", file);
274 return get_pxe_file(path, pxefile_addr_r);
278 * Looks for a pxe file with a name based on the pxeuuid environment variable.
280 * Returns 1 on success or < 0 on error.
282 static int pxe_uuid_path(void *pxefile_addr_r)
286 uuid_str = from_env("pxeuuid");
291 return get_pxelinux_path(uuid_str, pxefile_addr_r);
295 * Looks for a pxe file with a name based on the 'ethaddr' environment
298 * Returns 1 on success or < 0 on error.
300 static int pxe_mac_path(void *pxefile_addr_r)
305 err = format_mac_pxe(mac_str, sizeof(mac_str));
310 return get_pxelinux_path(mac_str, pxefile_addr_r);
314 * Looks for pxe files with names based on our IP address. See pxelinux
315 * documentation for details on what these file names look like. We match
318 * Returns 1 on success or < 0 on error.
320 static int pxe_ipaddr_paths(void *pxefile_addr_r)
325 sprintf(ip_addr, "%08X", ntohl(NetOurIP));
327 for (mask_pos = 7; mask_pos >= 0; mask_pos--) {
328 err = get_pxelinux_path(ip_addr, pxefile_addr_r);
333 ip_addr[mask_pos] = '\0';
340 * Entry point for the 'pxe get' command.
341 * This Follows pxelinux's rules to download a config file from a tftp server.
342 * The file is stored at the location given by the pxefile_addr_r environment
343 * variable, which must be set.
345 * UUID comes from pxeuuid env variable, if defined
346 * MAC addr comes from ethaddr env variable, if defined
349 * see http://syslinux.zytor.com/wiki/index.php/PXELINUX
351 * Returns 0 on success or 1 on error.
354 do_pxe_get(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
356 char *pxefile_addr_str;
357 unsigned long pxefile_addr_r;
360 do_getfile = do_get_tftp;
363 return CMD_RET_USAGE;
365 pxefile_addr_str = from_env("pxefile_addr_r");
367 if (!pxefile_addr_str)
370 err = strict_strtoul(pxefile_addr_str, 16,
371 (unsigned long *)&pxefile_addr_r);
376 * Keep trying paths until we successfully get a file we're looking
379 if (pxe_uuid_path((void *)pxefile_addr_r) > 0
380 || pxe_mac_path((void *)pxefile_addr_r) > 0
381 || pxe_ipaddr_paths((void *)pxefile_addr_r) > 0
382 || get_pxelinux_path("default", (void *)pxefile_addr_r) > 0) {
384 printf("Config file found\n");
389 printf("Config file not found\n");
395 * Wrapper to make it easier to store the file at file_path in the location
396 * specified by envaddr_name. file_path will be joined to the bootfile path,
397 * if any is specified.
399 * Returns 1 on success or < 0 on error.
401 static int get_relfile_envaddr(char *file_path, char *envaddr_name)
403 unsigned long file_addr;
406 envaddr = from_env(envaddr_name);
411 if (strict_strtoul(envaddr, 16, &file_addr) < 0)
414 return get_relfile(file_path, (void *)file_addr);
418 * A note on the pxe file parser.
420 * We're parsing files that use syslinux grammar, which has a few quirks.
421 * String literals must be recognized based on context - there is no
422 * quoting or escaping support. There's also nothing to explicitly indicate
423 * when a label section completes. We deal with that by ending a label
424 * section whenever we see a line that doesn't include.
426 * As with the syslinux family, this same file format could be reused in the
427 * future for non pxe purposes. The only action it takes during parsing that
428 * would throw this off is handling of include files. It assumes we're using
429 * pxe, and does a tftp download of a file listed as an include file in the
430 * middle of the parsing operation. That could be handled by refactoring it to
431 * take a 'include file getter' function.
435 * Describes a single label given in a pxe file.
437 * Create these with the 'label_create' function given below.
439 * name - the name of the menu as given on the 'menu label' line.
440 * kernel - the path to the kernel file to use for this label.
441 * append - kernel command line to use when booting this label
442 * initrd - path to the initrd to use for this label.
443 * attempted - 0 if we haven't tried to boot this label, 1 if we have.
444 * localboot - 1 if this label specified 'localboot', 0 otherwise.
445 * list - lets these form a list, which a pxe_menu struct will hold.
455 struct list_head list;
459 * Describes a pxe menu as given via pxe files.
461 * title - the name of the menu as given by a 'menu title' line.
462 * default_label - the name of the default label, if any.
463 * timeout - time in tenths of a second to wait for a user key-press before
464 * booting the default label.
465 * prompt - if 0, don't prompt for a choice unless the timeout period is
466 * interrupted. If 1, always prompt for a choice regardless of
468 * labels - a list of labels defined for the menu.
475 struct list_head labels;
479 * Allocates memory for and initializes a pxe_label. This uses malloc, so the
480 * result must be free()'d to reclaim the memory.
482 * Returns NULL if malloc fails.
484 static struct pxe_label *label_create(void)
486 struct pxe_label *label;
488 label = malloc(sizeof(struct pxe_label));
493 memset(label, 0, sizeof(struct pxe_label));
499 * Free the memory used by a pxe_label, including that used by its name,
500 * kernel, append and initrd members, if they're non NULL.
502 * So - be sure to only use dynamically allocated memory for the members of
503 * the pxe_label struct, unless you want to clean it up first. These are
504 * currently only created by the pxe file parsing code.
506 static void label_destroy(struct pxe_label *label)
524 * Print a label and its string members if they're defined.
526 * This is passed as a callback to the menu code for displaying each
529 static void label_print(void *data)
531 struct pxe_label *label = data;
532 const char *c = label->menu ? label->menu : label->kernel;
534 printf("%s:\t%s\n", label->name, c);
537 printf("\t\tkernel: %s\n", label->kernel);
540 printf("\t\tappend: %s\n", label->append);
543 printf("\t\tinitrd: %s\n", label->initrd);
547 * Boot a label that specified 'localboot'. This requires that the 'localcmd'
548 * environment variable is defined. Its contents will be executed as U-boot
549 * command. If the label specified an 'append' line, its contents will be
550 * used to overwrite the contents of the 'bootargs' environment variable prior
551 * to running 'localcmd'.
553 * Returns 1 on success or < 0 on error.
555 static int label_localboot(struct pxe_label *label)
557 char *localcmd, *dupcmd;
560 localcmd = from_env("localcmd");
566 * dup the command to avoid any issues with the version of it existing
567 * in the environment changing during the execution of the command.
569 dupcmd = strdup(localcmd);
575 setenv("bootargs", label->append);
577 printf("running: %s\n", dupcmd);
579 ret = run_command(dupcmd, 0);
587 * Boot according to the contents of a pxe_label.
589 * If we can't boot for any reason, we return. A successful boot never
592 * The kernel will be stored in the location given by the 'kernel_addr_r'
593 * environment variable.
595 * If the label specifies an initrd file, it will be stored in the location
596 * given by the 'ramdisk_addr_r' environment variable.
598 * If the label specifies an 'append' line, its contents will overwrite that
599 * of the 'bootargs' environment variable.
601 static void label_boot(struct pxe_label *label)
603 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL };
608 label->attempted = 1;
610 if (label->localboot) {
611 label_localboot(label);
615 if (label->kernel == NULL) {
616 printf("No kernel given, skipping %s\n",
622 if (get_relfile_envaddr(label->initrd, "ramdisk_addr_r") < 0) {
623 printf("Skipping %s for failure retrieving initrd\n",
628 bootm_argv[2] = getenv("ramdisk_addr_r");
633 if (get_relfile_envaddr(label->kernel, "kernel_addr_r") < 0) {
634 printf("Skipping %s for failure retrieving kernel\n",
640 setenv("bootargs", label->append);
642 bootm_argv[1] = getenv("kernel_addr_r");
645 * fdt usage is optional. If there is an fdt_addr specified, we will
646 * pass it along to bootm, and adjust argc appropriately.
648 bootm_argv[3] = getenv("fdt_addr");
653 do_bootm(NULL, 0, bootm_argc, bootm_argv);
657 * Tokens for the pxe file parser.
679 * A token - given by a value and a type.
683 enum token_type type;
687 * Keywords recognized.
689 static const struct token keywords[] = {
692 {"timeout", T_TIMEOUT},
693 {"default", T_DEFAULT},
694 {"prompt", T_PROMPT},
696 {"kernel", T_KERNEL},
698 {"localboot", T_LOCALBOOT},
699 {"append", T_APPEND},
700 {"initrd", T_INITRD},
701 {"include", T_INCLUDE},
706 * Since pxe(linux) files don't have a token to identify the start of a
707 * literal, we have to keep track of when we're in a state where a literal is
708 * expected vs when we're in a state a keyword is expected.
717 * get_string retrieves a string from *p and stores it as a token in
720 * get_string used for scanning both string literals and keywords.
722 * Characters from *p are copied into t-val until a character equal to
723 * delim is found, or a NUL byte is reached. If delim has the special value of
724 * ' ', any whitespace character will be used as a delimiter.
726 * If lower is unequal to 0, uppercase characters will be converted to
727 * lowercase in the result. This is useful to make keywords case
730 * The location of *p is updated to point to the first character after the end
731 * of the token - the ending delimiter.
733 * On success, the new value of t->val is returned. Memory for t->val is
734 * allocated using malloc and must be free()'d to reclaim it. If insufficient
735 * memory is available, NULL is returned.
737 static char *get_string(char **p, struct token *t, char delim, int lower)
743 * b and e both start at the beginning of the input stream.
745 * e is incremented until we find the ending delimiter, or a NUL byte
746 * is reached. Then, we take e - b to find the length of the token.
751 if ((delim == ' ' && isspace(*e)) || delim == *e)
759 * Allocate memory to hold the string, and copy it in, converting
760 * characters to lowercase if lower is != 0.
762 t->val = malloc(len + 1);
766 for (i = 0; i < len; i++, b++) {
768 t->val[i] = tolower(*b);
776 * Update *p so the caller knows where to continue scanning.
786 * Populate a keyword token with a type and value.
788 static void get_keyword(struct token *t)
792 for (i = 0; keywords[i].val; i++) {
793 if (!strcmp(t->val, keywords[i].val)) {
794 t->type = keywords[i].type;
801 * Get the next token. We have to keep track of which state we're in to know
802 * if we're looking to get a string literal or a keyword.
804 * *p is updated to point at the first character after the current token.
806 static void get_token(char **p, struct token *t, enum lex_state state)
812 /* eat non EOL whitespace */
817 * eat comments. note that string literals can't begin with #, but
818 * can contain a # after their first character.
821 while (*c && *c != '\n')
828 } else if (*c == '\0') {
831 } else if (state == L_SLITERAL) {
832 get_string(&c, t, '\n', 0);
833 } else if (state == L_KEYWORD) {
835 * when we expect a keyword, we first get the next string
836 * token delimited by whitespace, and then check if it
837 * matches a keyword in our keyword list. if it does, it's
838 * converted to a keyword token of the appropriate type, and
839 * if not, it remains a string token.
841 get_string(&c, t, ' ', 1);
849 * Increment *c until we get to the end of the current line, or EOF.
851 static void eol_or_eof(char **c)
853 while (**c && **c != '\n')
858 * All of these parse_* functions share some common behavior.
860 * They finish with *c pointing after the token they parse, and return 1 on
861 * success, or < 0 on error.
865 * Parse a string literal and store a pointer it at *dst. String literals
866 * terminate at the end of the line.
868 static int parse_sliteral(char **c, char **dst)
873 get_token(c, &t, L_SLITERAL);
875 if (t.type != T_STRING) {
876 printf("Expected string literal: %.*s\n", (int)(*c - s), s);
886 * Parse a base 10 (unsigned) integer and store it at *dst.
888 static int parse_integer(char **c, int *dst)
894 get_token(c, &t, L_SLITERAL);
896 if (t.type != T_STRING) {
897 printf("Expected string: %.*s\n", (int)(*c - s), s);
901 if (strict_strtoul(t.val, 10, &temp) < 0) {
902 printf("Expected unsigned integer: %s\n", t.val);
913 static int parse_pxefile_top(char *p, struct pxe_menu *cfg, int nest_level);
916 * Parse an include statement, and retrieve and parse the file it mentions.
918 * base should point to a location where it's safe to store the file, and
919 * nest_level should indicate how many nested includes have occurred. For this
920 * include, nest_level has already been incremented and doesn't need to be
923 static int handle_include(char **c, char *base,
924 struct pxe_menu *cfg, int nest_level)
930 err = parse_sliteral(c, &include_path);
933 printf("Expected include path: %.*s\n",
938 err = get_pxe_file(include_path, base);
941 printf("Couldn't retrieve %s\n", include_path);
945 return parse_pxefile_top(base, cfg, nest_level);
949 * Parse lines that begin with 'menu'.
951 * b and nest are provided to handle the 'menu include' case.
953 * b should be the address where the file currently being parsed is stored.
955 * nest_level should be 1 when parsing the top level pxe file, 2 when parsing
956 * a file it includes, 3 when parsing a file included by that file, and so on.
958 static int parse_menu(char **c, struct pxe_menu *cfg, char *b, int nest_level)
964 get_token(c, &t, L_KEYWORD);
968 err = parse_sliteral(c, &cfg->title);
973 err = handle_include(c, b + strlen(b) + 1, cfg,
978 printf("Ignoring malformed menu command: %.*s\n",
991 * Handles parsing a 'menu line' when we're parsing a label.
993 static int parse_label_menu(char **c, struct pxe_menu *cfg,
994 struct pxe_label *label)
1001 get_token(c, &t, L_KEYWORD);
1005 if (cfg->default_label)
1006 free(cfg->default_label);
1008 cfg->default_label = strdup(label->name);
1010 if (!cfg->default_label)
1015 parse_sliteral(c, &label->menu);
1018 printf("Ignoring malformed menu command: %.*s\n",
1028 * Parses a label and adds it to the list of labels for a menu.
1030 * A label ends when we either get to the end of a file, or
1031 * get some input we otherwise don't have a handler defined
1035 static int parse_label(char **c, struct pxe_menu *cfg)
1040 struct pxe_label *label;
1043 label = label_create();
1047 err = parse_sliteral(c, &label->name);
1049 printf("Expected label name: %.*s\n", (int)(*c - s), s);
1050 label_destroy(label);
1054 list_add_tail(&label->list, &cfg->labels);
1058 get_token(c, &t, L_KEYWORD);
1063 err = parse_label_menu(c, cfg, label);
1068 err = parse_sliteral(c, &label->kernel);
1072 err = parse_sliteral(c, &label->append);
1075 s = strstr(label->append, "initrd=");
1079 len = (int)(strchr(s, ' ') - s);
1080 label->initrd = malloc(len + 1);
1081 strncpy(label->initrd, s, len);
1082 label->initrd[len] = '\0';
1088 err = parse_sliteral(c, &label->initrd);
1092 err = parse_integer(c, &label->localboot);
1100 * put the token back! we don't want it - it's the end
1101 * of a label and whatever token this is, it's
1102 * something for the menu level context to handle.
1114 * This 16 comes from the limit pxelinux imposes on nested includes.
1116 * There is no reason at all we couldn't do more, but some limit helps prevent
1117 * infinite (until crash occurs) recursion if a file tries to include itself.
1119 #define MAX_NEST_LEVEL 16
1122 * Entry point for parsing a menu file. nest_level indicates how many times
1123 * we've nested in includes. It will be 1 for the top level menu file.
1125 * Returns 1 on success, < 0 on error.
1127 static int parse_pxefile_top(char *p, struct pxe_menu *cfg, int nest_level)
1130 char *s, *b, *label_name;
1135 if (nest_level > MAX_NEST_LEVEL) {
1136 printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL);
1143 get_token(&p, &t, L_KEYWORD);
1148 err = parse_menu(&p, cfg, b, nest_level);
1152 err = parse_integer(&p, &cfg->timeout);
1156 err = parse_label(&p, cfg);
1160 err = parse_sliteral(&p, &label_name);
1163 if (cfg->default_label)
1164 free(cfg->default_label);
1166 cfg->default_label = label_name;
1172 err = handle_include(&p, b + ALIGN(strlen(b), 4), cfg,
1177 err = parse_integer(&p, &cfg->prompt);
1187 printf("Ignoring unknown command: %.*s\n",
1198 * Free the memory used by a pxe_menu and its labels.
1200 static void destroy_pxe_menu(struct pxe_menu *cfg)
1202 struct list_head *pos, *n;
1203 struct pxe_label *label;
1208 if (cfg->default_label)
1209 free(cfg->default_label);
1211 list_for_each_safe(pos, n, &cfg->labels) {
1212 label = list_entry(pos, struct pxe_label, list);
1214 label_destroy(label);
1221 * Entry point for parsing a pxe file. This is only used for the top level
1224 * Returns NULL if there is an error, otherwise, returns a pointer to a
1225 * pxe_menu struct populated with the results of parsing the pxe file (and any
1226 * files it includes). The resulting pxe_menu struct can be free()'d by using
1227 * the destroy_pxe_menu() function.
1229 static struct pxe_menu *parse_pxefile(char *menucfg)
1231 struct pxe_menu *cfg;
1233 cfg = malloc(sizeof(struct pxe_menu));
1238 memset(cfg, 0, sizeof(struct pxe_menu));
1240 INIT_LIST_HEAD(&cfg->labels);
1242 if (parse_pxefile_top(menucfg, cfg, 1) < 0) {
1243 destroy_pxe_menu(cfg);
1251 * Converts a pxe_menu struct into a menu struct for use with U-boot's generic
1254 static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)
1256 struct pxe_label *label;
1257 struct list_head *pos;
1262 * Create a menu and add items for all the labels.
1264 m = menu_create(cfg->title, cfg->timeout, cfg->prompt, label_print);
1269 list_for_each(pos, &cfg->labels) {
1270 label = list_entry(pos, struct pxe_label, list);
1272 if (menu_item_add(m, label->name, label) != 1) {
1279 * After we've created items for each label in the menu, set the
1280 * menu's default label if one was specified.
1282 if (cfg->default_label) {
1283 err = menu_default_set(m, cfg->default_label);
1285 if (err != -ENOENT) {
1290 printf("Missing default: %s\n", cfg->default_label);
1298 * Try to boot any labels we have yet to attempt to boot.
1300 static void boot_unattempted_labels(struct pxe_menu *cfg)
1302 struct list_head *pos;
1303 struct pxe_label *label;
1305 list_for_each(pos, &cfg->labels) {
1306 label = list_entry(pos, struct pxe_label, list);
1308 if (!label->attempted)
1314 * Boot the system as prescribed by a pxe_menu.
1316 * Use the menu system to either get the user's choice or the default, based
1317 * on config or user input. If there is no default or user's choice,
1318 * attempted to boot labels in the order they were given in pxe files.
1319 * If the default or user's choice fails to boot, attempt to boot other
1320 * labels in the order they were given in pxe files.
1322 * If this function returns, there weren't any labels that successfully
1323 * booted, or the user interrupted the menu selection via ctrl+c.
1325 static void handle_pxe_menu(struct pxe_menu *cfg)
1331 m = pxe_menu_to_menu(cfg);
1335 err = menu_get_choice(m, &choice);
1340 * err == 1 means we got a choice back from menu_get_choice.
1342 * err == -ENOENT if the menu was setup to select the default but no
1343 * default was set. in that case, we should continue trying to boot
1344 * labels that haven't been attempted yet.
1346 * otherwise, the user interrupted or there was some other error and
1352 else if (err != -ENOENT)
1355 boot_unattempted_labels(cfg);
1359 * Boots a system using a pxe file
1361 * Returns 0 on success, 1 on error.
1364 do_pxe_boot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1366 unsigned long pxefile_addr_r;
1367 struct pxe_menu *cfg;
1368 char *pxefile_addr_str;
1370 do_getfile = do_get_tftp;
1373 pxefile_addr_str = from_env("pxefile_addr_r");
1374 if (!pxefile_addr_str)
1377 } else if (argc == 2) {
1378 pxefile_addr_str = argv[1];
1380 return CMD_RET_USAGE;
1383 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
1384 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
1388 cfg = parse_pxefile((char *)(pxefile_addr_r));
1391 printf("Error parsing config file\n");
1395 handle_pxe_menu(cfg);
1397 destroy_pxe_menu(cfg);
1402 static cmd_tbl_t cmd_pxe_sub[] = {
1403 U_BOOT_CMD_MKENT(get, 1, 1, do_pxe_get, "", ""),
1404 U_BOOT_CMD_MKENT(boot, 2, 1, do_pxe_boot, "", "")
1407 int do_pxe(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1412 return CMD_RET_USAGE;
1414 /* drop initial "pxe" arg */
1418 cp = find_cmd_tbl(argv[0], cmd_pxe_sub, ARRAY_SIZE(cmd_pxe_sub));
1421 return cp->cmd(cmdtp, flag, argc, argv);
1423 return CMD_RET_USAGE;
1428 "commands to get and boot from pxe files",
1429 "get - try to retrieve a pxe file using tftp\npxe "
1430 "boot [pxefile_addr_r] - boot from the pxe file at pxefile_addr_r\n"
1434 * Boots a system using a local disk syslinux/extlinux file
1436 * Returns 0 on success, 1 on error.
1438 int do_sysboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1440 unsigned long pxefile_addr_r;
1441 struct pxe_menu *cfg;
1442 char *pxefile_addr_str;
1446 if (strstr(argv[1], "-p")) {
1453 return cmd_usage(cmdtp);
1456 pxefile_addr_str = from_env("pxefile_addr_r");
1457 if (!pxefile_addr_str)
1460 pxefile_addr_str = argv[4];
1464 filename = getenv("bootfile");
1467 setenv("bootfile", filename);
1470 if (strstr(argv[3], "ext2"))
1471 do_getfile = do_get_ext2;
1472 else if (strstr(argv[3], "fat"))
1473 do_getfile = do_get_fat;
1475 printf("Invalid filesystem: %s\n", argv[3]);
1478 fs_argv[1] = argv[1];
1479 fs_argv[2] = argv[2];
1481 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
1482 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
1486 if (get_pxe_file(filename, (void *)pxefile_addr_r) < 0) {
1487 printf("Error reading config file\n");
1491 cfg = parse_pxefile((char *)(pxefile_addr_r));
1494 printf("Error parsing config file\n");
1501 handle_pxe_menu(cfg);
1503 destroy_pxe_menu(cfg);
1509 sysboot, 7, 1, do_sysboot,
1510 "command to get and boot from syslinux files",
1511 "[-p] <interface> <dev[:part]> <ext2|fat> [addr] [filename]\n"
1512 " - load and parse syslinux menu file 'filename' from ext2 or fat\n"
1513 " filesystem on 'dev' on 'interface' to address 'addr'"