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)
559 localcmd = from_env("localcmd");
565 setenv("bootargs", label->append);
567 debug("running: %s\n", localcmd);
569 return run_command_list(localcmd, strlen(localcmd), 0);
573 * Boot according to the contents of a pxe_label.
575 * If we can't boot for any reason, we return. A successful boot never
578 * The kernel will be stored in the location given by the 'kernel_addr_r'
579 * environment variable.
581 * If the label specifies an initrd file, it will be stored in the location
582 * given by the 'ramdisk_addr_r' environment variable.
584 * If the label specifies an 'append' line, its contents will overwrite that
585 * of the 'bootargs' environment variable.
587 static void label_boot(struct pxe_label *label)
589 char *bootm_argv[] = { "bootm", NULL, NULL, NULL, NULL };
594 label->attempted = 1;
596 if (label->localboot) {
597 label_localboot(label);
601 if (label->kernel == NULL) {
602 printf("No kernel given, skipping %s\n",
608 if (get_relfile_envaddr(label->initrd, "ramdisk_addr_r") < 0) {
609 printf("Skipping %s for failure retrieving initrd\n",
614 bootm_argv[2] = getenv("ramdisk_addr_r");
619 if (get_relfile_envaddr(label->kernel, "kernel_addr_r") < 0) {
620 printf("Skipping %s for failure retrieving kernel\n",
626 setenv("bootargs", label->append);
628 bootm_argv[1] = getenv("kernel_addr_r");
631 * fdt usage is optional. If there is an fdt_addr specified, we will
632 * pass it along to bootm, and adjust argc appropriately.
634 bootm_argv[3] = getenv("fdt_addr");
639 do_bootm(NULL, 0, bootm_argc, bootm_argv);
643 * Tokens for the pxe file parser.
665 * A token - given by a value and a type.
669 enum token_type type;
673 * Keywords recognized.
675 static const struct token keywords[] = {
678 {"timeout", T_TIMEOUT},
679 {"default", T_DEFAULT},
680 {"prompt", T_PROMPT},
682 {"kernel", T_KERNEL},
684 {"localboot", T_LOCALBOOT},
685 {"append", T_APPEND},
686 {"initrd", T_INITRD},
687 {"include", T_INCLUDE},
692 * Since pxe(linux) files don't have a token to identify the start of a
693 * literal, we have to keep track of when we're in a state where a literal is
694 * expected vs when we're in a state a keyword is expected.
703 * get_string retrieves a string from *p and stores it as a token in
706 * get_string used for scanning both string literals and keywords.
708 * Characters from *p are copied into t-val until a character equal to
709 * delim is found, or a NUL byte is reached. If delim has the special value of
710 * ' ', any whitespace character will be used as a delimiter.
712 * If lower is unequal to 0, uppercase characters will be converted to
713 * lowercase in the result. This is useful to make keywords case
716 * The location of *p is updated to point to the first character after the end
717 * of the token - the ending delimiter.
719 * On success, the new value of t->val is returned. Memory for t->val is
720 * allocated using malloc and must be free()'d to reclaim it. If insufficient
721 * memory is available, NULL is returned.
723 static char *get_string(char **p, struct token *t, char delim, int lower)
729 * b and e both start at the beginning of the input stream.
731 * e is incremented until we find the ending delimiter, or a NUL byte
732 * is reached. Then, we take e - b to find the length of the token.
737 if ((delim == ' ' && isspace(*e)) || delim == *e)
745 * Allocate memory to hold the string, and copy it in, converting
746 * characters to lowercase if lower is != 0.
748 t->val = malloc(len + 1);
752 for (i = 0; i < len; i++, b++) {
754 t->val[i] = tolower(*b);
762 * Update *p so the caller knows where to continue scanning.
772 * Populate a keyword token with a type and value.
774 static void get_keyword(struct token *t)
778 for (i = 0; keywords[i].val; i++) {
779 if (!strcmp(t->val, keywords[i].val)) {
780 t->type = keywords[i].type;
787 * Get the next token. We have to keep track of which state we're in to know
788 * if we're looking to get a string literal or a keyword.
790 * *p is updated to point at the first character after the current token.
792 static void get_token(char **p, struct token *t, enum lex_state state)
798 /* eat non EOL whitespace */
803 * eat comments. note that string literals can't begin with #, but
804 * can contain a # after their first character.
807 while (*c && *c != '\n')
814 } else if (*c == '\0') {
817 } else if (state == L_SLITERAL) {
818 get_string(&c, t, '\n', 0);
819 } else if (state == L_KEYWORD) {
821 * when we expect a keyword, we first get the next string
822 * token delimited by whitespace, and then check if it
823 * matches a keyword in our keyword list. if it does, it's
824 * converted to a keyword token of the appropriate type, and
825 * if not, it remains a string token.
827 get_string(&c, t, ' ', 1);
835 * Increment *c until we get to the end of the current line, or EOF.
837 static void eol_or_eof(char **c)
839 while (**c && **c != '\n')
844 * All of these parse_* functions share some common behavior.
846 * They finish with *c pointing after the token they parse, and return 1 on
847 * success, or < 0 on error.
851 * Parse a string literal and store a pointer it at *dst. String literals
852 * terminate at the end of the line.
854 static int parse_sliteral(char **c, char **dst)
859 get_token(c, &t, L_SLITERAL);
861 if (t.type != T_STRING) {
862 printf("Expected string literal: %.*s\n", (int)(*c - s), s);
872 * Parse a base 10 (unsigned) integer and store it at *dst.
874 static int parse_integer(char **c, int *dst)
880 get_token(c, &t, L_SLITERAL);
882 if (t.type != T_STRING) {
883 printf("Expected string: %.*s\n", (int)(*c - s), s);
887 if (strict_strtoul(t.val, 10, &temp) < 0) {
888 printf("Expected unsigned integer: %s\n", t.val);
899 static int parse_pxefile_top(char *p, struct pxe_menu *cfg, int nest_level);
902 * Parse an include statement, and retrieve and parse the file it mentions.
904 * base should point to a location where it's safe to store the file, and
905 * nest_level should indicate how many nested includes have occurred. For this
906 * include, nest_level has already been incremented and doesn't need to be
909 static int handle_include(char **c, char *base,
910 struct pxe_menu *cfg, int nest_level)
916 err = parse_sliteral(c, &include_path);
919 printf("Expected include path: %.*s\n",
924 err = get_pxe_file(include_path, base);
927 printf("Couldn't retrieve %s\n", include_path);
931 return parse_pxefile_top(base, cfg, nest_level);
935 * Parse lines that begin with 'menu'.
937 * b and nest are provided to handle the 'menu include' case.
939 * b should be the address where the file currently being parsed is stored.
941 * nest_level should be 1 when parsing the top level pxe file, 2 when parsing
942 * a file it includes, 3 when parsing a file included by that file, and so on.
944 static int parse_menu(char **c, struct pxe_menu *cfg, char *b, int nest_level)
950 get_token(c, &t, L_KEYWORD);
954 err = parse_sliteral(c, &cfg->title);
959 err = handle_include(c, b + strlen(b) + 1, cfg,
964 printf("Ignoring malformed menu command: %.*s\n",
977 * Handles parsing a 'menu line' when we're parsing a label.
979 static int parse_label_menu(char **c, struct pxe_menu *cfg,
980 struct pxe_label *label)
987 get_token(c, &t, L_KEYWORD);
991 if (cfg->default_label)
992 free(cfg->default_label);
994 cfg->default_label = strdup(label->name);
996 if (!cfg->default_label)
1001 parse_sliteral(c, &label->menu);
1004 printf("Ignoring malformed menu command: %.*s\n",
1014 * Parses a label and adds it to the list of labels for a menu.
1016 * A label ends when we either get to the end of a file, or
1017 * get some input we otherwise don't have a handler defined
1021 static int parse_label(char **c, struct pxe_menu *cfg)
1026 struct pxe_label *label;
1029 label = label_create();
1033 err = parse_sliteral(c, &label->name);
1035 printf("Expected label name: %.*s\n", (int)(*c - s), s);
1036 label_destroy(label);
1040 list_add_tail(&label->list, &cfg->labels);
1044 get_token(c, &t, L_KEYWORD);
1049 err = parse_label_menu(c, cfg, label);
1054 err = parse_sliteral(c, &label->kernel);
1058 err = parse_sliteral(c, &label->append);
1061 s = strstr(label->append, "initrd=");
1065 len = (int)(strchr(s, ' ') - s);
1066 label->initrd = malloc(len + 1);
1067 strncpy(label->initrd, s, len);
1068 label->initrd[len] = '\0';
1074 err = parse_sliteral(c, &label->initrd);
1078 err = parse_integer(c, &label->localboot);
1086 * put the token back! we don't want it - it's the end
1087 * of a label and whatever token this is, it's
1088 * something for the menu level context to handle.
1100 * This 16 comes from the limit pxelinux imposes on nested includes.
1102 * There is no reason at all we couldn't do more, but some limit helps prevent
1103 * infinite (until crash occurs) recursion if a file tries to include itself.
1105 #define MAX_NEST_LEVEL 16
1108 * Entry point for parsing a menu file. nest_level indicates how many times
1109 * we've nested in includes. It will be 1 for the top level menu file.
1111 * Returns 1 on success, < 0 on error.
1113 static int parse_pxefile_top(char *p, struct pxe_menu *cfg, int nest_level)
1116 char *s, *b, *label_name;
1121 if (nest_level > MAX_NEST_LEVEL) {
1122 printf("Maximum nesting (%d) exceeded\n", MAX_NEST_LEVEL);
1129 get_token(&p, &t, L_KEYWORD);
1134 err = parse_menu(&p, cfg, b, nest_level);
1138 err = parse_integer(&p, &cfg->timeout);
1142 err = parse_label(&p, cfg);
1146 err = parse_sliteral(&p, &label_name);
1149 if (cfg->default_label)
1150 free(cfg->default_label);
1152 cfg->default_label = label_name;
1158 err = handle_include(&p, b + ALIGN(strlen(b), 4), cfg,
1163 err = parse_integer(&p, &cfg->prompt);
1173 printf("Ignoring unknown command: %.*s\n",
1184 * Free the memory used by a pxe_menu and its labels.
1186 static void destroy_pxe_menu(struct pxe_menu *cfg)
1188 struct list_head *pos, *n;
1189 struct pxe_label *label;
1194 if (cfg->default_label)
1195 free(cfg->default_label);
1197 list_for_each_safe(pos, n, &cfg->labels) {
1198 label = list_entry(pos, struct pxe_label, list);
1200 label_destroy(label);
1207 * Entry point for parsing a pxe file. This is only used for the top level
1210 * Returns NULL if there is an error, otherwise, returns a pointer to a
1211 * pxe_menu struct populated with the results of parsing the pxe file (and any
1212 * files it includes). The resulting pxe_menu struct can be free()'d by using
1213 * the destroy_pxe_menu() function.
1215 static struct pxe_menu *parse_pxefile(char *menucfg)
1217 struct pxe_menu *cfg;
1219 cfg = malloc(sizeof(struct pxe_menu));
1224 memset(cfg, 0, sizeof(struct pxe_menu));
1226 INIT_LIST_HEAD(&cfg->labels);
1228 if (parse_pxefile_top(menucfg, cfg, 1) < 0) {
1229 destroy_pxe_menu(cfg);
1237 * Converts a pxe_menu struct into a menu struct for use with U-boot's generic
1240 static struct menu *pxe_menu_to_menu(struct pxe_menu *cfg)
1242 struct pxe_label *label;
1243 struct list_head *pos;
1248 * Create a menu and add items for all the labels.
1250 m = menu_create(cfg->title, cfg->timeout, cfg->prompt, label_print);
1255 list_for_each(pos, &cfg->labels) {
1256 label = list_entry(pos, struct pxe_label, list);
1258 if (menu_item_add(m, label->name, label) != 1) {
1265 * After we've created items for each label in the menu, set the
1266 * menu's default label if one was specified.
1268 if (cfg->default_label) {
1269 err = menu_default_set(m, cfg->default_label);
1271 if (err != -ENOENT) {
1276 printf("Missing default: %s\n", cfg->default_label);
1284 * Try to boot any labels we have yet to attempt to boot.
1286 static void boot_unattempted_labels(struct pxe_menu *cfg)
1288 struct list_head *pos;
1289 struct pxe_label *label;
1291 list_for_each(pos, &cfg->labels) {
1292 label = list_entry(pos, struct pxe_label, list);
1294 if (!label->attempted)
1300 * Boot the system as prescribed by a pxe_menu.
1302 * Use the menu system to either get the user's choice or the default, based
1303 * on config or user input. If there is no default or user's choice,
1304 * attempted to boot labels in the order they were given in pxe files.
1305 * If the default or user's choice fails to boot, attempt to boot other
1306 * labels in the order they were given in pxe files.
1308 * If this function returns, there weren't any labels that successfully
1309 * booted, or the user interrupted the menu selection via ctrl+c.
1311 static void handle_pxe_menu(struct pxe_menu *cfg)
1317 m = pxe_menu_to_menu(cfg);
1321 err = menu_get_choice(m, &choice);
1326 * err == 1 means we got a choice back from menu_get_choice.
1328 * err == -ENOENT if the menu was setup to select the default but no
1329 * default was set. in that case, we should continue trying to boot
1330 * labels that haven't been attempted yet.
1332 * otherwise, the user interrupted or there was some other error and
1338 else if (err != -ENOENT)
1341 boot_unattempted_labels(cfg);
1345 * Boots a system using a pxe file
1347 * Returns 0 on success, 1 on error.
1350 do_pxe_boot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1352 unsigned long pxefile_addr_r;
1353 struct pxe_menu *cfg;
1354 char *pxefile_addr_str;
1356 do_getfile = do_get_tftp;
1359 pxefile_addr_str = from_env("pxefile_addr_r");
1360 if (!pxefile_addr_str)
1363 } else if (argc == 2) {
1364 pxefile_addr_str = argv[1];
1366 return CMD_RET_USAGE;
1369 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
1370 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
1374 cfg = parse_pxefile((char *)(pxefile_addr_r));
1377 printf("Error parsing config file\n");
1381 handle_pxe_menu(cfg);
1383 destroy_pxe_menu(cfg);
1388 static cmd_tbl_t cmd_pxe_sub[] = {
1389 U_BOOT_CMD_MKENT(get, 1, 1, do_pxe_get, "", ""),
1390 U_BOOT_CMD_MKENT(boot, 2, 1, do_pxe_boot, "", "")
1393 int do_pxe(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1398 return CMD_RET_USAGE;
1400 /* drop initial "pxe" arg */
1404 cp = find_cmd_tbl(argv[0], cmd_pxe_sub, ARRAY_SIZE(cmd_pxe_sub));
1407 return cp->cmd(cmdtp, flag, argc, argv);
1409 return CMD_RET_USAGE;
1414 "commands to get and boot from pxe files",
1415 "get - try to retrieve a pxe file using tftp\npxe "
1416 "boot [pxefile_addr_r] - boot from the pxe file at pxefile_addr_r\n"
1420 * Boots a system using a local disk syslinux/extlinux file
1422 * Returns 0 on success, 1 on error.
1424 int do_sysboot(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1426 unsigned long pxefile_addr_r;
1427 struct pxe_menu *cfg;
1428 char *pxefile_addr_str;
1432 if (strstr(argv[1], "-p")) {
1439 return cmd_usage(cmdtp);
1442 pxefile_addr_str = from_env("pxefile_addr_r");
1443 if (!pxefile_addr_str)
1446 pxefile_addr_str = argv[4];
1450 filename = getenv("bootfile");
1453 setenv("bootfile", filename);
1456 if (strstr(argv[3], "ext2"))
1457 do_getfile = do_get_ext2;
1458 else if (strstr(argv[3], "fat"))
1459 do_getfile = do_get_fat;
1461 printf("Invalid filesystem: %s\n", argv[3]);
1464 fs_argv[1] = argv[1];
1465 fs_argv[2] = argv[2];
1467 if (strict_strtoul(pxefile_addr_str, 16, &pxefile_addr_r) < 0) {
1468 printf("Invalid pxefile address: %s\n", pxefile_addr_str);
1472 if (get_pxe_file(filename, (void *)pxefile_addr_r) < 0) {
1473 printf("Error reading config file\n");
1477 cfg = parse_pxefile((char *)(pxefile_addr_r));
1480 printf("Error parsing config file\n");
1487 handle_pxe_menu(cfg);
1489 destroy_pxe_menu(cfg);
1495 sysboot, 7, 1, do_sysboot,
1496 "command to get and boot from syslinux files",
1497 "[-p] <interface> <dev[:part]> <ext2|fat> [addr] [filename]\n"
1498 " - load and parse syslinux menu file 'filename' from ext2 or fat\n"
1499 " filesystem on 'dev' on 'interface' to address 'addr'"