3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * Add to readline cmdline-editing by
7 * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
34 #ifdef CONFIG_MODEM_SUPPORT
35 #include <malloc.h> /* for free() prototype */
38 #ifdef CONFIG_SYS_HUSH_PARSER
43 #include <linux/ctype.h>
46 #if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
47 DECLARE_GLOBAL_DATA_PTR;
51 * Board-specific Platform code can reimplement show_boot_progress () if needed
53 void inline __show_boot_progress (int val) {}
54 void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
56 #if defined(CONFIG_UPDATE_TFTP)
57 int update_tftp (ulong addr);
58 #endif /* CONFIG_UPDATE_TFTP */
60 #define MAX_DELAY_STOP_STR 32
64 char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
66 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
67 static const char erase_seq[] = "\b \b"; /* erase sequence */
68 static const char tab_seq[] = " "; /* used to expand TABs */
70 #ifdef CONFIG_BOOT_RETRY_TIME
71 static uint64_t endtime = 0; /* must be set, default is instant timeout */
72 static int retry_time = -1; /* -1 so can call readline before main_loop */
75 #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
77 #ifndef CONFIG_BOOT_RETRY_MIN
78 #define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
81 #ifdef CONFIG_MODEM_SUPPORT
83 extern void mdm_init(void); /* defined in board.c */
86 /***************************************************************************
87 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
88 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
90 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
91 # if defined(CONFIG_AUTOBOOT_KEYED)
95 int abortboot(int bootdelay)
98 uint64_t etime = endtick(bootdelay);
105 { str: getenv ("bootdelaykey"), retry: 1 },
106 { str: getenv ("bootdelaykey2"), retry: 1 },
107 { str: getenv ("bootstopkey"), retry: 0 },
108 { str: getenv ("bootstopkey2"), retry: 0 },
111 char presskey [MAX_DELAY_STOP_STR];
112 u_int presskey_len = 0;
113 u_int presskey_max = 0;
116 # ifdef CONFIG_AUTOBOOT_PROMPT
117 printf(CONFIG_AUTOBOOT_PROMPT);
120 # ifdef CONFIG_AUTOBOOT_DELAY_STR
121 if (delaykey[0].str == NULL)
122 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
124 # ifdef CONFIG_AUTOBOOT_DELAY_STR2
125 if (delaykey[1].str == NULL)
126 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
128 # ifdef CONFIG_AUTOBOOT_STOP_STR
129 if (delaykey[2].str == NULL)
130 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
132 # ifdef CONFIG_AUTOBOOT_STOP_STR2
133 if (delaykey[3].str == NULL)
134 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
137 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
138 delaykey[i].len = delaykey[i].str == NULL ?
139 0 : strlen (delaykey[i].str);
140 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
141 MAX_DELAY_STOP_STR : delaykey[i].len;
143 presskey_max = presskey_max > delaykey[i].len ?
144 presskey_max : delaykey[i].len;
147 printf("%s key:<%s>\n",
148 delaykey[i].retry ? "delay" : "stop",
149 delaykey[i].str ? delaykey[i].str : "NULL");
153 /* In order to keep up with incoming data, check timeout only
158 if (presskey_len < presskey_max) {
159 presskey [presskey_len ++] = getc();
162 for (i = 0; i < presskey_max - 1; i ++)
163 presskey [i] = presskey [i + 1];
165 presskey [i] = getc();
169 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
170 if (delaykey[i].len > 0 &&
171 presskey_len >= delaykey[i].len &&
172 memcmp (presskey + presskey_len - delaykey[i].len,
174 delaykey[i].len) == 0) {
176 printf("got %skey\n",
177 delaykey[i].retry ? "delay" : "stop");
180 # ifdef CONFIG_BOOT_RETRY_TIME
181 /* don't retry auto boot */
182 if (! delaykey[i].retry)
188 } while (!abort && get_ticks() <= etime);
192 puts("key timeout\n");
195 #ifdef CONFIG_SILENT_CONSOLE
197 gd->flags &= ~GD_FLG_SILENT;
203 # else /* !defined(CONFIG_AUTOBOOT_KEYED) */
205 #ifdef CONFIG_MENUKEY
206 static int menukey = 0;
212 int abortboot(int bootdelay)
216 #ifdef CONFIG_MENUPROMPT
217 printf(CONFIG_MENUPROMPT);
219 printf("Hit any key to stop autoboot: %2d ", bootdelay);
222 #if defined CONFIG_ZERO_BOOTDELAY_CHECK
224 * Check if key already pressed
225 * Don't check if bootdelay < 0
227 if (bootdelay >= 0) {
228 if (tstc()) { /* we got a key press */
229 (void) getc(); /* consume input */
231 abort = 1; /* don't auto boot */
236 while ((bootdelay > 0) && (!abort)) {
240 /* delay 100 * 10ms */
241 for (i=0; !abort && i<100; ++i) {
242 if (tstc()) { /* we got a key press */
243 abort = 1; /* don't auto boot */
244 bootdelay = 0; /* no more delay */
245 # ifdef CONFIG_MENUKEY
248 (void) getc(); /* consume input */
255 printf("\b\b\b%2d ", bootdelay);
260 #ifdef CONFIG_SILENT_CONSOLE
262 gd->flags &= ~GD_FLG_SILENT;
267 # endif /* CONFIG_AUTOBOOT_KEYED */
268 #endif /* CONFIG_BOOTDELAY >= 0 */
271 * Return 0 on success, or != 0 on error.
273 int run_command2(const char *cmd, int flag)
275 #ifndef CONFIG_SYS_HUSH_PARSER
277 * run_command can return 0 or 1 for success, so clean up its result.
279 if (run_command(cmd, flag) == -1)
284 return parse_string_outer(cmd,
285 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP);
289 /****************************************************************************/
291 void main_loop (void)
293 #ifndef CONFIG_SYS_HUSH_PARSER
294 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
300 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
304 #ifdef CONFIG_PREBOOT
307 #ifdef CONFIG_BOOTCOUNT_LIMIT
308 unsigned long bootcount = 0;
309 unsigned long bootlimit = 0;
312 #endif /* CONFIG_BOOTCOUNT_LIMIT */
314 #ifdef CONFIG_BOOTCOUNT_LIMIT
315 bootcount = bootcount_load();
317 bootcount_store (bootcount);
318 sprintf (bcs_set, "%lu", bootcount);
319 setenv ("bootcount", bcs_set);
320 bcs = getenv ("bootlimit");
321 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
322 #endif /* CONFIG_BOOTCOUNT_LIMIT */
324 #ifdef CONFIG_MODEM_SUPPORT
325 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
327 char *str = strdup(getenv("mdm_cmd"));
328 setenv ("preboot", str); /* set or delete definition */
331 mdm_init(); /* wait for modem connection */
333 #endif /* CONFIG_MODEM_SUPPORT */
335 #ifdef CONFIG_VERSION_VARIABLE
337 setenv ("ver", version_string); /* set version variable */
339 #endif /* CONFIG_VERSION_VARIABLE */
341 #ifdef CONFIG_SYS_HUSH_PARSER
342 u_boot_hush_start ();
345 #if defined(CONFIG_HUSH_INIT_VAR)
349 #ifdef CONFIG_PREBOOT
350 if ((p = getenv ("preboot")) != NULL) {
351 # ifdef CONFIG_AUTOBOOT_KEYED
352 int prev = disable_ctrlc(1); /* disable Control C checking */
357 # ifdef CONFIG_AUTOBOOT_KEYED
358 disable_ctrlc(prev); /* restore Control C checking */
361 #endif /* CONFIG_PREBOOT */
363 #if defined(CONFIG_UPDATE_TFTP)
365 #endif /* CONFIG_UPDATE_TFTP */
367 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
368 s = getenv ("bootdelay");
369 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
371 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
373 #if defined(CONFIG_MENU_SHOW)
374 bootdelay = menu_show(bootdelay);
376 # ifdef CONFIG_BOOT_RETRY_TIME
378 # endif /* CONFIG_BOOT_RETRY_TIME */
381 if (gd->flags & GD_FLG_POSTFAIL) {
382 s = getenv("failbootcmd");
385 #endif /* CONFIG_POST */
386 #ifdef CONFIG_BOOTCOUNT_LIMIT
387 if (bootlimit && (bootcount > bootlimit)) {
388 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
389 (unsigned)bootlimit);
390 s = getenv ("altbootcmd");
393 #endif /* CONFIG_BOOTCOUNT_LIMIT */
394 s = getenv ("bootcmd");
396 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
398 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
399 # ifdef CONFIG_AUTOBOOT_KEYED
400 int prev = disable_ctrlc(1); /* disable Control C checking */
405 # ifdef CONFIG_AUTOBOOT_KEYED
406 disable_ctrlc(prev); /* restore Control C checking */
410 # ifdef CONFIG_MENUKEY
411 if (menukey == CONFIG_MENUKEY) {
412 s = getenv("menucmd");
416 #endif /* CONFIG_MENUKEY */
417 #endif /* CONFIG_BOOTDELAY */
420 * Main Loop for Monitor Command Processing
422 #ifdef CONFIG_SYS_HUSH_PARSER
424 /* This point is never reached */
428 #ifdef CONFIG_BOOT_RETRY_TIME
430 /* Saw enough of a valid command to
431 * restart the timeout.
436 len = readline (CONFIG_SYS_PROMPT);
438 flag = 0; /* assume no special flags for now */
440 strcpy (lastcommand, console_buffer);
442 flag |= CMD_FLAG_REPEAT;
443 #ifdef CONFIG_BOOT_RETRY_TIME
444 else if (len == -2) {
445 /* -2 means timed out, retry autoboot
447 puts ("\nTimed out waiting for command\n");
448 # ifdef CONFIG_RESET_TO_RETRY
449 /* Reinit board to run initialization code again */
450 do_reset (NULL, 0, 0, NULL);
452 return; /* retry autoboot */
458 puts ("<INTERRUPT>\n");
460 rc = run_command (lastcommand, flag);
463 /* invalid command or not repeatable, forget it */
467 #endif /*CONFIG_SYS_HUSH_PARSER*/
470 #ifdef CONFIG_BOOT_RETRY_TIME
471 /***************************************************************************
472 * initialize command line timeout
474 void init_cmd_timeout(void)
476 char *s = getenv ("bootretry");
479 retry_time = (int)simple_strtol(s, NULL, 10);
481 retry_time = CONFIG_BOOT_RETRY_TIME;
483 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
484 retry_time = CONFIG_BOOT_RETRY_MIN;
487 /***************************************************************************
488 * reset command line timeout to retry_time seconds
490 void reset_cmd_timeout(void)
492 endtime = endtick(retry_time);
496 #ifdef CONFIG_CMDLINE_EDITING
499 * cmdline-editing related codes from vivi.
500 * Author: Janghoon Lyu <nandy@mizi.com>
503 #define putnstr(str,n) do { \
504 printf ("%.*s", (int)n, str); \
507 #define CTL_CH(c) ((c) - 'a' + 1)
508 #define CTL_BACKSPACE ('\b')
509 #define DEL ((char)255)
510 #define DEL7 ((char)127)
511 #define CREAD_HIST_CHAR ('!')
513 #define getcmd_putch(ch) putc(ch)
514 #define getcmd_getch() getc()
515 #define getcmd_cbeep() getcmd_putch('\a')
518 #define HIST_SIZE CONFIG_SYS_CBSIZE
520 static int hist_max = 0;
521 static int hist_add_idx = 0;
522 static int hist_cur = -1;
523 unsigned hist_num = 0;
525 char* hist_list[HIST_MAX];
526 char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
528 #define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
530 static void hist_init(void)
539 for (i = 0; i < HIST_MAX; i++) {
540 hist_list[i] = hist_lines[i];
541 hist_list[i][0] = '\0';
545 static void cread_add_to_hist(char *line)
547 strcpy(hist_list[hist_add_idx], line);
549 if (++hist_add_idx >= HIST_MAX)
552 if (hist_add_idx > hist_max)
553 hist_max = hist_add_idx;
558 static char* hist_prev(void)
570 if (hist_cur == hist_add_idx) {
574 ret = hist_list[hist_cur];
579 static char* hist_next(void)
586 if (hist_cur == hist_add_idx)
589 if (++hist_cur > hist_max)
592 if (hist_cur == hist_add_idx) {
595 ret = hist_list[hist_cur];
600 #ifndef CONFIG_CMDLINE_EDITING
601 static void cread_print_hist_list(void)
606 n = hist_num - hist_max;
608 i = hist_add_idx + 1;
612 if (i == hist_add_idx)
614 printf("%s\n", hist_list[i]);
619 #endif /* CONFIG_CMDLINE_EDITING */
621 #define BEGINNING_OF_LINE() { \
623 getcmd_putch(CTL_BACKSPACE); \
628 #define ERASE_TO_EOL() { \
629 if (num < eol_num) { \
630 printf("%*s", (int)(eol_num - num), ""); \
632 getcmd_putch(CTL_BACKSPACE); \
633 } while (--eol_num > num); \
637 #define REFRESH_TO_EOL() { \
638 if (num < eol_num) { \
639 wlen = eol_num - num; \
640 putnstr(buf + num, wlen); \
645 static void cread_add_char(char ichar, int insert, unsigned long *num,
646 unsigned long *eol_num, char *buf, unsigned long len)
651 if (insert || *num == *eol_num) {
652 if (*eol_num > len - 1) {
660 wlen = *eol_num - *num;
662 memmove(&buf[*num+1], &buf[*num], wlen-1);
666 putnstr(buf + *num, wlen);
669 getcmd_putch(CTL_BACKSPACE);
672 /* echo the character */
675 putnstr(buf + *num, wlen);
680 static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
681 unsigned long *eol_num, char *buf, unsigned long len)
684 cread_add_char(*str, insert, num, eol_num, buf, len);
689 static int cread_line(const char *const prompt, char *buf, unsigned int *len,
692 unsigned long num = 0;
693 unsigned long eol_num = 0;
699 int init_len = strlen(buf);
703 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
706 #ifdef CONFIG_BOOT_RETRY_TIME
707 while (!tstc()) { /* while no incoming data */
708 if (retry_time >= 0 && get_ticks() > endtime)
709 return (-2); /* timed out */
713 if (first && timeout) {
714 uint64_t etime = endtick(timeout);
716 while (!tstc()) { /* while no incoming data */
717 if (get_ticks() >= etime)
718 return -2; /* timed out */
724 ichar = getcmd_getch();
726 if ((ichar == '\n') || (ichar == '\r')) {
732 * handle standard linux xterm esc sequences for arrow key, etc.
737 esc_save[esc_len] = ichar;
740 cread_add_str(esc_save, esc_len, insert,
741 &num, &eol_num, buf, *len);
749 case 'D': /* <- key */
753 case 'C': /* -> key */
756 break; /* pass off to ^F handler */
757 case 'H': /* Home key */
760 break; /* pass off to ^A handler */
761 case 'A': /* up arrow */
764 break; /* pass off to ^P handler */
765 case 'B': /* down arrow */
768 break; /* pass off to ^N handler */
770 esc_save[esc_len++] = ichar;
771 cread_add_str(esc_save, esc_len, insert,
772 &num, &eol_num, buf, *len);
781 esc_save[esc_len] = ichar;
784 puts("impossible condition #876\n");
792 case CTL_CH('c'): /* ^C - break */
793 *buf = '\0'; /* discard input */
797 getcmd_putch(buf[num]);
803 getcmd_putch(CTL_BACKSPACE);
809 wlen = eol_num - num - 1;
811 memmove(&buf[num], &buf[num+1], wlen);
812 putnstr(buf + num, wlen);
817 getcmd_putch(CTL_BACKSPACE);
840 wlen = eol_num - num;
842 memmove(&buf[num], &buf[num+1], wlen);
843 getcmd_putch(CTL_BACKSPACE);
844 putnstr(buf + num, wlen);
847 getcmd_putch(CTL_BACKSPACE);
859 if (ichar == CTL_CH('p'))
869 /* nuke the current line */
873 /* erase to end of line */
876 /* copy new line into place and display */
878 eol_num = strlen(buf);
882 #ifdef CONFIG_AUTO_COMPLETE
886 /* do not autocomplete when in the middle */
893 col = strlen(prompt) + eol_num;
895 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
904 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
909 buf[eol_num] = '\0'; /* lose the newline */
911 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
912 cread_add_to_hist(buf);
913 hist_cur = hist_add_idx;
918 #endif /* CONFIG_CMDLINE_EDITING */
920 /****************************************************************************/
923 * Prompt for input and read a line.
924 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
925 * time out when time goes past endtime (timebase time in ticks).
926 * Return: number of read characters
930 int readline (const char *const prompt)
933 * If console_buffer isn't 0-length the user will be prompted to modify
934 * it instead of entering it from scratch as desired.
936 console_buffer[0] = '\0';
938 return readline_into_buffer(prompt, console_buffer, 0);
942 int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
945 #ifdef CONFIG_CMDLINE_EDITING
946 unsigned int len = CONFIG_SYS_CBSIZE;
948 static int initted = 0;
951 * History uses a global array which is not
952 * writable until after relocation to RAM.
953 * Revert to non-history version if still
954 * running from flash.
956 if (gd->flags & GD_FLG_RELOC) {
965 rc = cread_line(prompt, p, &len, timeout);
966 return rc < 0 ? rc : len;
969 #endif /* CONFIG_CMDLINE_EDITING */
971 int n = 0; /* buffer index */
972 int plen = 0; /* prompt length */
973 int col; /* output column cnt */
978 plen = strlen (prompt);
984 #ifdef CONFIG_BOOT_RETRY_TIME
985 while (!tstc()) { /* while no incoming data */
986 if (retry_time >= 0 && get_ticks() > endtime)
987 return (-2); /* timed out */
991 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
993 #ifdef CONFIG_SHOW_ACTIVITY
995 extern void show_activity(int arg);
1003 * Special character handling
1006 case '\r': /* Enter */
1012 case '\0': /* nul */
1015 case 0x03: /* ^C - break */
1016 p_buf[0] = '\0'; /* discard input */
1019 case 0x15: /* ^U - erase line */
1020 while (col > plen) {
1028 case 0x17: /* ^W - erase word */
1029 p=delete_char(p_buf, p, &col, &n, plen);
1030 while ((n > 0) && (*p != ' ')) {
1031 p=delete_char(p_buf, p, &col, &n, plen);
1035 case 0x08: /* ^H - backspace */
1036 case 0x7F: /* DEL - backspace */
1037 p=delete_char(p_buf, p, &col, &n, plen);
1042 * Must be a normal character then
1044 if (n < CONFIG_SYS_CBSIZE-2) {
1045 if (c == '\t') { /* expand TABs */
1046 #ifdef CONFIG_AUTO_COMPLETE
1047 /* if auto completion triggered just continue */
1049 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
1050 p = p_buf + n; /* reset */
1054 puts (tab_seq+(col&07));
1055 col += 8 - (col&07);
1057 ++col; /* echo input */
1062 } else { /* Buffer full */
1067 #ifdef CONFIG_CMDLINE_EDITING
1072 /****************************************************************************/
1074 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1082 if (*(--p) == '\t') { /* will retype the whole line */
1083 while (*colp > plen) {
1087 for (s=buffer; s<p; ++s) {
1089 puts (tab_seq+((*colp) & 07));
1090 *colp += 8 - ((*colp) & 07);
1104 /****************************************************************************/
1106 int parse_line (char *line, char *argv[])
1111 printf ("parse_line: \"%s\"\n", line);
1113 while (nargs < CONFIG_SYS_MAXARGS) {
1115 /* skip any white space */
1116 while (isblank(*line))
1119 if (*line == '\0') { /* end of line, no more args */
1122 printf ("parse_line: nargs=%d\n", nargs);
1127 argv[nargs++] = line; /* begin of argument string */
1129 /* find end of string */
1130 while (*line && !isblank(*line))
1133 if (*line == '\0') { /* end of line, no more args */
1136 printf ("parse_line: nargs=%d\n", nargs);
1141 *line++ = '\0'; /* terminate current arg */
1144 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
1147 printf ("parse_line: nargs=%d\n", nargs);
1152 /****************************************************************************/
1154 static void process_macros (const char *input, char *output)
1157 const char *varname_start = NULL;
1158 int inputcnt = strlen (input);
1159 int outputcnt = CONFIG_SYS_CBSIZE;
1160 int state = 0; /* 0 = waiting for '$' */
1162 /* 1 = waiting for '(' or '{' */
1163 /* 2 = waiting for ')' or '}' */
1164 /* 3 = waiting for ''' */
1166 char *output_start = output;
1168 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1172 prev = '\0'; /* previous character */
1174 while (inputcnt && outputcnt) {
1179 /* remove one level of escape characters */
1180 if ((c == '\\') && (prev != '\\')) {
1181 if (inputcnt-- == 0)
1189 case 0: /* Waiting for (unescaped) $ */
1190 if ((c == '\'') && (prev != '\\')) {
1194 if ((c == '$') && (prev != '\\')) {
1201 case 1: /* Waiting for ( */
1202 if (c == '(' || c == '{') {
1204 varname_start = input;
1216 case 2: /* Waiting for ) */
1217 if (c == ')' || c == '}') {
1219 char envname[CONFIG_SYS_CBSIZE], *envval;
1220 int envcnt = input - varname_start - 1; /* Varname # of chars */
1222 /* Get the varname */
1223 for (i = 0; i < envcnt; i++) {
1224 envname[i] = varname_start[i];
1229 envval = getenv (envname);
1231 /* Copy into the line if it exists */
1233 while ((*envval) && outputcnt) {
1234 *(output++) = *(envval++);
1237 /* Look for another '$' */
1241 case 3: /* Waiting for ' */
1242 if ((c == '\'') && (prev != '\\')) {
1259 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
1260 strlen (output_start), output_start);
1264 /****************************************************************************
1266 * 1 - command executed, repeatable
1267 * 0 - command executed but not repeatable, interrupted commands are
1268 * always considered not repeatable
1269 * -1 - not executed (unrecognized, bootd recursion or too many args)
1270 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
1271 * considered unrecognized)
1275 * We must create a temporary copy of the command since the command we get
1276 * may be the result from getenv(), which returns a pointer directly to
1277 * the environment data, which may change magicly when the command we run
1278 * creates or modifies environment variables (like "bootp" does).
1281 int run_command (const char *cmd, int flag)
1284 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
1285 char *token; /* start of token in cmdbuf */
1286 char *sep; /* end of token (separator) in cmdbuf */
1287 char finaltoken[CONFIG_SYS_CBSIZE];
1289 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
1295 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1296 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1300 clear_ctrlc(); /* forget any previous Control C */
1302 if (!cmd || !*cmd) {
1303 return -1; /* empty command */
1306 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
1307 puts ("## Command too long!\n");
1311 strcpy (cmdbuf, cmd);
1313 /* Process separators and check for invalid
1314 * repeatable commands
1318 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1323 * Find separator, or string end
1324 * Allow simple escape of ';' by writing "\;"
1326 for (inquotes = 0, sep = str; *sep; sep++) {
1332 (*sep == ';') && /* separator */
1333 ( sep != str) && /* past string start */
1334 (*(sep-1) != '\\')) /* and NOT escaped */
1339 * Limit the token to data between separators
1343 str = sep + 1; /* start of command for next pass */
1347 str = sep; /* no more commands for next pass */
1349 printf ("token: \"%s\"\n", token);
1352 /* find macros in this token and replace them */
1353 process_macros (token, finaltoken);
1355 /* Extract arguments */
1356 if ((argc = parse_line (finaltoken, argv)) == 0) {
1357 rc = -1; /* no command at all */
1361 /* Look up command in command table */
1362 if ((cmdtp = find_cmd(argv[0])) == NULL) {
1363 printf ("Unknown command '%s' - try 'help'\n", argv[0]);
1364 rc = -1; /* give up after bad command */
1368 /* found - check max args */
1369 if (argc > cmdtp->maxargs) {
1375 #if defined(CONFIG_CMD_BOOTD)
1376 /* avoid "bootd" recursion */
1377 if (cmdtp->cmd == do_bootd) {
1379 printf ("[%s]\n", finaltoken);
1381 if (flag & CMD_FLAG_BOOTD) {
1382 puts ("'bootd' recursion detected\n");
1386 flag |= CMD_FLAG_BOOTD;
1391 /* OK - call function to do the command */
1392 if ((cmdtp->cmd) (cmdtp, flag, argc, argv) != 0) {
1396 repeatable &= cmdtp->repeatable;
1398 /* Did the user stop this? */
1400 return -1; /* if stopped then not repeatable */
1403 return rc ? rc : repeatable;
1406 /****************************************************************************/
1408 #if defined(CONFIG_CMD_RUN)
1409 int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
1414 return cmd_usage(cmdtp);
1416 for (i=1; i<argc; ++i) {
1419 if ((arg = getenv (argv[i])) == NULL) {
1420 printf ("## Error: \"%s\" not defined\n", argv[i]);
1424 if (run_command2(arg, flag) != 0)