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,
35 #ifdef CONFIG_MODEM_SUPPORT
36 #include <malloc.h> /* for free() prototype */
39 #ifdef CONFIG_SYS_HUSH_PARSER
44 #include <linux/ctype.h>
47 #if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
48 DECLARE_GLOBAL_DATA_PTR;
52 * Board-specific Platform code can reimplement show_boot_progress () if needed
54 void inline __show_boot_progress (int val) {}
55 void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
57 #if defined(CONFIG_UPDATE_TFTP)
58 int update_tftp (ulong addr);
59 #endif /* CONFIG_UPDATE_TFTP */
61 #define MAX_DELAY_STOP_STR 32
65 char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
67 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
68 static const char erase_seq[] = "\b \b"; /* erase sequence */
69 static const char tab_seq[] = " "; /* used to expand TABs */
71 #ifdef CONFIG_BOOT_RETRY_TIME
72 static uint64_t endtime = 0; /* must be set, default is instant timeout */
73 static int retry_time = -1; /* -1 so can call readline before main_loop */
76 #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
78 #ifndef CONFIG_BOOT_RETRY_MIN
79 #define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
82 #ifdef CONFIG_MODEM_SUPPORT
84 extern void mdm_init(void); /* defined in board.c */
87 /***************************************************************************
88 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
89 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
91 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
92 # if defined(CONFIG_AUTOBOOT_KEYED)
96 int abortboot(int bootdelay)
99 uint64_t etime = endtick(bootdelay);
106 { str: getenv ("bootdelaykey"), retry: 1 },
107 { str: getenv ("bootdelaykey2"), retry: 1 },
108 { str: getenv ("bootstopkey"), retry: 0 },
109 { str: getenv ("bootstopkey2"), retry: 0 },
112 char presskey [MAX_DELAY_STOP_STR];
113 u_int presskey_len = 0;
114 u_int presskey_max = 0;
117 #ifndef CONFIG_ZERO_BOOTDELAY_CHECK
122 # ifdef CONFIG_AUTOBOOT_PROMPT
123 printf(CONFIG_AUTOBOOT_PROMPT);
126 # ifdef CONFIG_AUTOBOOT_DELAY_STR
127 if (delaykey[0].str == NULL)
128 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
130 # ifdef CONFIG_AUTOBOOT_DELAY_STR2
131 if (delaykey[1].str == NULL)
132 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
134 # ifdef CONFIG_AUTOBOOT_STOP_STR
135 if (delaykey[2].str == NULL)
136 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
138 # ifdef CONFIG_AUTOBOOT_STOP_STR2
139 if (delaykey[3].str == NULL)
140 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
143 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
144 delaykey[i].len = delaykey[i].str == NULL ?
145 0 : strlen (delaykey[i].str);
146 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
147 MAX_DELAY_STOP_STR : delaykey[i].len;
149 presskey_max = presskey_max > delaykey[i].len ?
150 presskey_max : delaykey[i].len;
153 printf("%s key:<%s>\n",
154 delaykey[i].retry ? "delay" : "stop",
155 delaykey[i].str ? delaykey[i].str : "NULL");
159 /* In order to keep up with incoming data, check timeout only
164 if (presskey_len < presskey_max) {
165 presskey [presskey_len ++] = getc();
168 for (i = 0; i < presskey_max - 1; i ++)
169 presskey [i] = presskey [i + 1];
171 presskey [i] = getc();
175 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
176 if (delaykey[i].len > 0 &&
177 presskey_len >= delaykey[i].len &&
178 memcmp (presskey + presskey_len - delaykey[i].len,
180 delaykey[i].len) == 0) {
182 printf("got %skey\n",
183 delaykey[i].retry ? "delay" : "stop");
186 # ifdef CONFIG_BOOT_RETRY_TIME
187 /* don't retry auto boot */
188 if (! delaykey[i].retry)
194 } while (!abort && get_ticks() <= etime);
198 puts("key timeout\n");
201 #ifdef CONFIG_SILENT_CONSOLE
203 gd->flags &= ~GD_FLG_SILENT;
209 # else /* !defined(CONFIG_AUTOBOOT_KEYED) */
211 #ifdef CONFIG_MENUKEY
212 static int menukey = 0;
218 int abortboot(int bootdelay)
222 #ifdef CONFIG_MENUPROMPT
223 printf(CONFIG_MENUPROMPT);
225 printf("Hit any key to stop autoboot: %2d ", bootdelay);
228 #if defined CONFIG_ZERO_BOOTDELAY_CHECK
230 * Check if key already pressed
231 * Don't check if bootdelay < 0
233 if (bootdelay >= 0) {
234 if (tstc()) { /* we got a key press */
235 (void) getc(); /* consume input */
237 abort = 1; /* don't auto boot */
242 while ((bootdelay > 0) && (!abort)) {
246 /* delay 100 * 10ms */
247 for (i=0; !abort && i<100; ++i) {
248 if (tstc()) { /* we got a key press */
249 abort = 1; /* don't auto boot */
250 bootdelay = 0; /* no more delay */
251 # ifdef CONFIG_MENUKEY
254 (void) getc(); /* consume input */
261 printf("\b\b\b%2d ", bootdelay);
266 #ifdef CONFIG_SILENT_CONSOLE
268 gd->flags &= ~GD_FLG_SILENT;
273 # endif /* CONFIG_AUTOBOOT_KEYED */
274 #endif /* CONFIG_BOOTDELAY >= 0 */
276 /****************************************************************************/
278 void main_loop (void)
280 #ifndef CONFIG_SYS_HUSH_PARSER
281 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
287 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
291 #ifdef CONFIG_PREBOOT
294 #ifdef CONFIG_BOOTCOUNT_LIMIT
295 unsigned long bootcount = 0;
296 unsigned long bootlimit = 0;
299 #endif /* CONFIG_BOOTCOUNT_LIMIT */
301 #ifdef CONFIG_BOOTCOUNT_LIMIT
302 bootcount = bootcount_load();
304 bootcount_store (bootcount);
305 sprintf (bcs_set, "%lu", bootcount);
306 setenv ("bootcount", bcs_set);
307 bcs = getenv ("bootlimit");
308 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
309 #endif /* CONFIG_BOOTCOUNT_LIMIT */
311 #ifdef CONFIG_MODEM_SUPPORT
312 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
314 char *str = strdup(getenv("mdm_cmd"));
315 setenv ("preboot", str); /* set or delete definition */
318 mdm_init(); /* wait for modem connection */
320 #endif /* CONFIG_MODEM_SUPPORT */
322 #ifdef CONFIG_VERSION_VARIABLE
324 setenv ("ver", version_string); /* set version variable */
326 #endif /* CONFIG_VERSION_VARIABLE */
328 #ifdef CONFIG_SYS_HUSH_PARSER
329 u_boot_hush_start ();
332 #if defined(CONFIG_HUSH_INIT_VAR)
336 #ifdef CONFIG_PREBOOT
337 if ((p = getenv ("preboot")) != NULL) {
338 # ifdef CONFIG_AUTOBOOT_KEYED
339 int prev = disable_ctrlc(1); /* disable Control C checking */
342 run_command_list(p, -1, 0);
344 # ifdef CONFIG_AUTOBOOT_KEYED
345 disable_ctrlc(prev); /* restore Control C checking */
348 #endif /* CONFIG_PREBOOT */
350 #if defined(CONFIG_UPDATE_TFTP)
352 #endif /* CONFIG_UPDATE_TFTP */
354 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
355 s = getenv ("bootdelay");
356 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
358 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
360 #if defined(CONFIG_MENU_SHOW)
361 bootdelay = menu_show(bootdelay);
363 # ifdef CONFIG_BOOT_RETRY_TIME
365 # endif /* CONFIG_BOOT_RETRY_TIME */
368 if (gd->flags & GD_FLG_POSTFAIL) {
369 s = getenv("failbootcmd");
372 #endif /* CONFIG_POST */
373 #ifdef CONFIG_BOOTCOUNT_LIMIT
374 if (bootlimit && (bootcount > bootlimit)) {
375 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
376 (unsigned)bootlimit);
377 s = getenv ("altbootcmd");
380 #endif /* CONFIG_BOOTCOUNT_LIMIT */
381 s = getenv ("bootcmd");
383 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
385 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
386 # ifdef CONFIG_AUTOBOOT_KEYED
387 int prev = disable_ctrlc(1); /* disable Control C checking */
390 run_command_list(s, -1, 0);
392 # ifdef CONFIG_AUTOBOOT_KEYED
393 disable_ctrlc(prev); /* restore Control C checking */
397 # ifdef CONFIG_MENUKEY
398 if (menukey == CONFIG_MENUKEY) {
399 s = getenv("menucmd");
401 run_command_list(s, -1, 0);
403 #endif /* CONFIG_MENUKEY */
404 #endif /* CONFIG_BOOTDELAY */
407 * Main Loop for Monitor Command Processing
409 #ifdef CONFIG_SYS_HUSH_PARSER
411 /* This point is never reached */
415 #ifdef CONFIG_BOOT_RETRY_TIME
417 /* Saw enough of a valid command to
418 * restart the timeout.
423 len = readline (CONFIG_SYS_PROMPT);
425 flag = 0; /* assume no special flags for now */
427 strcpy (lastcommand, console_buffer);
429 flag |= CMD_FLAG_REPEAT;
430 #ifdef CONFIG_BOOT_RETRY_TIME
431 else if (len == -2) {
432 /* -2 means timed out, retry autoboot
434 puts ("\nTimed out waiting for command\n");
435 # ifdef CONFIG_RESET_TO_RETRY
436 /* Reinit board to run initialization code again */
437 do_reset (NULL, 0, 0, NULL);
439 return; /* retry autoboot */
445 puts ("<INTERRUPT>\n");
447 rc = run_command(lastcommand, flag);
450 /* invalid command or not repeatable, forget it */
454 #endif /*CONFIG_SYS_HUSH_PARSER*/
457 #ifdef CONFIG_BOOT_RETRY_TIME
458 /***************************************************************************
459 * initialize command line timeout
461 void init_cmd_timeout(void)
463 char *s = getenv ("bootretry");
466 retry_time = (int)simple_strtol(s, NULL, 10);
468 retry_time = CONFIG_BOOT_RETRY_TIME;
470 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
471 retry_time = CONFIG_BOOT_RETRY_MIN;
474 /***************************************************************************
475 * reset command line timeout to retry_time seconds
477 void reset_cmd_timeout(void)
479 endtime = endtick(retry_time);
483 #ifdef CONFIG_CMDLINE_EDITING
486 * cmdline-editing related codes from vivi.
487 * Author: Janghoon Lyu <nandy@mizi.com>
490 #define putnstr(str,n) do { \
491 printf ("%.*s", (int)n, str); \
494 #define CTL_CH(c) ((c) - 'a' + 1)
495 #define CTL_BACKSPACE ('\b')
496 #define DEL ((char)255)
497 #define DEL7 ((char)127)
498 #define CREAD_HIST_CHAR ('!')
500 #define getcmd_putch(ch) putc(ch)
501 #define getcmd_getch() getc()
502 #define getcmd_cbeep() getcmd_putch('\a')
505 #define HIST_SIZE CONFIG_SYS_CBSIZE
507 static int hist_max = 0;
508 static int hist_add_idx = 0;
509 static int hist_cur = -1;
510 unsigned hist_num = 0;
512 char* hist_list[HIST_MAX];
513 char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
515 #define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
517 static void hist_init(void)
526 for (i = 0; i < HIST_MAX; i++) {
527 hist_list[i] = hist_lines[i];
528 hist_list[i][0] = '\0';
532 static void cread_add_to_hist(char *line)
534 strcpy(hist_list[hist_add_idx], line);
536 if (++hist_add_idx >= HIST_MAX)
539 if (hist_add_idx > hist_max)
540 hist_max = hist_add_idx;
545 static char* hist_prev(void)
557 if (hist_cur == hist_add_idx) {
561 ret = hist_list[hist_cur];
566 static char* hist_next(void)
573 if (hist_cur == hist_add_idx)
576 if (++hist_cur > hist_max)
579 if (hist_cur == hist_add_idx) {
582 ret = hist_list[hist_cur];
587 #ifndef CONFIG_CMDLINE_EDITING
588 static void cread_print_hist_list(void)
593 n = hist_num - hist_max;
595 i = hist_add_idx + 1;
599 if (i == hist_add_idx)
601 printf("%s\n", hist_list[i]);
606 #endif /* CONFIG_CMDLINE_EDITING */
608 #define BEGINNING_OF_LINE() { \
610 getcmd_putch(CTL_BACKSPACE); \
615 #define ERASE_TO_EOL() { \
616 if (num < eol_num) { \
617 printf("%*s", (int)(eol_num - num), ""); \
619 getcmd_putch(CTL_BACKSPACE); \
620 } while (--eol_num > num); \
624 #define REFRESH_TO_EOL() { \
625 if (num < eol_num) { \
626 wlen = eol_num - num; \
627 putnstr(buf + num, wlen); \
632 static void cread_add_char(char ichar, int insert, unsigned long *num,
633 unsigned long *eol_num, char *buf, unsigned long len)
638 if (insert || *num == *eol_num) {
639 if (*eol_num > len - 1) {
647 wlen = *eol_num - *num;
649 memmove(&buf[*num+1], &buf[*num], wlen-1);
653 putnstr(buf + *num, wlen);
656 getcmd_putch(CTL_BACKSPACE);
659 /* echo the character */
662 putnstr(buf + *num, wlen);
667 static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
668 unsigned long *eol_num, char *buf, unsigned long len)
671 cread_add_char(*str, insert, num, eol_num, buf, len);
676 static int cread_line(const char *const prompt, char *buf, unsigned int *len,
679 unsigned long num = 0;
680 unsigned long eol_num = 0;
686 int init_len = strlen(buf);
690 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
693 #ifdef CONFIG_BOOT_RETRY_TIME
694 while (!tstc()) { /* while no incoming data */
695 if (retry_time >= 0 && get_ticks() > endtime)
696 return (-2); /* timed out */
700 if (first && timeout) {
701 uint64_t etime = endtick(timeout);
703 while (!tstc()) { /* while no incoming data */
704 if (get_ticks() >= etime)
705 return -2; /* timed out */
711 ichar = getcmd_getch();
713 if ((ichar == '\n') || (ichar == '\r')) {
719 * handle standard linux xterm esc sequences for arrow key, etc.
724 esc_save[esc_len] = ichar;
727 cread_add_str(esc_save, esc_len, insert,
728 &num, &eol_num, buf, *len);
736 case 'D': /* <- key */
740 case 'C': /* -> key */
743 break; /* pass off to ^F handler */
744 case 'H': /* Home key */
747 break; /* pass off to ^A handler */
748 case 'A': /* up arrow */
751 break; /* pass off to ^P handler */
752 case 'B': /* down arrow */
755 break; /* pass off to ^N handler */
757 esc_save[esc_len++] = ichar;
758 cread_add_str(esc_save, esc_len, insert,
759 &num, &eol_num, buf, *len);
768 esc_save[esc_len] = ichar;
771 puts("impossible condition #876\n");
779 case CTL_CH('c'): /* ^C - break */
780 *buf = '\0'; /* discard input */
784 getcmd_putch(buf[num]);
790 getcmd_putch(CTL_BACKSPACE);
796 wlen = eol_num - num - 1;
798 memmove(&buf[num], &buf[num+1], wlen);
799 putnstr(buf + num, wlen);
804 getcmd_putch(CTL_BACKSPACE);
827 wlen = eol_num - num;
829 memmove(&buf[num], &buf[num+1], wlen);
830 getcmd_putch(CTL_BACKSPACE);
831 putnstr(buf + num, wlen);
834 getcmd_putch(CTL_BACKSPACE);
846 if (ichar == CTL_CH('p'))
856 /* nuke the current line */
860 /* erase to end of line */
863 /* copy new line into place and display */
865 eol_num = strlen(buf);
869 #ifdef CONFIG_AUTO_COMPLETE
873 /* do not autocomplete when in the middle */
880 col = strlen(prompt) + eol_num;
882 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
891 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
896 buf[eol_num] = '\0'; /* lose the newline */
898 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
899 cread_add_to_hist(buf);
900 hist_cur = hist_add_idx;
905 #endif /* CONFIG_CMDLINE_EDITING */
907 /****************************************************************************/
910 * Prompt for input and read a line.
911 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
912 * time out when time goes past endtime (timebase time in ticks).
913 * Return: number of read characters
917 int readline (const char *const prompt)
920 * If console_buffer isn't 0-length the user will be prompted to modify
921 * it instead of entering it from scratch as desired.
923 console_buffer[0] = '\0';
925 return readline_into_buffer(prompt, console_buffer, 0);
929 int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
932 #ifdef CONFIG_CMDLINE_EDITING
933 unsigned int len = CONFIG_SYS_CBSIZE;
935 static int initted = 0;
938 * History uses a global array which is not
939 * writable until after relocation to RAM.
940 * Revert to non-history version if still
941 * running from flash.
943 if (gd->flags & GD_FLG_RELOC) {
952 rc = cread_line(prompt, p, &len, timeout);
953 return rc < 0 ? rc : len;
956 #endif /* CONFIG_CMDLINE_EDITING */
958 int n = 0; /* buffer index */
959 int plen = 0; /* prompt length */
960 int col; /* output column cnt */
965 plen = strlen (prompt);
971 #ifdef CONFIG_BOOT_RETRY_TIME
972 while (!tstc()) { /* while no incoming data */
973 if (retry_time >= 0 && get_ticks() > endtime)
974 return (-2); /* timed out */
978 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
980 #ifdef CONFIG_SHOW_ACTIVITY
989 * Special character handling
992 case '\r': /* Enter */
1001 case 0x03: /* ^C - break */
1002 p_buf[0] = '\0'; /* discard input */
1005 case 0x15: /* ^U - erase line */
1006 while (col > plen) {
1014 case 0x17: /* ^W - erase word */
1015 p=delete_char(p_buf, p, &col, &n, plen);
1016 while ((n > 0) && (*p != ' ')) {
1017 p=delete_char(p_buf, p, &col, &n, plen);
1021 case 0x08: /* ^H - backspace */
1022 case 0x7F: /* DEL - backspace */
1023 p=delete_char(p_buf, p, &col, &n, plen);
1028 * Must be a normal character then
1030 if (n < CONFIG_SYS_CBSIZE-2) {
1031 if (c == '\t') { /* expand TABs */
1032 #ifdef CONFIG_AUTO_COMPLETE
1033 /* if auto completion triggered just continue */
1035 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
1036 p = p_buf + n; /* reset */
1040 puts (tab_seq+(col&07));
1041 col += 8 - (col&07);
1043 ++col; /* echo input */
1048 } else { /* Buffer full */
1053 #ifdef CONFIG_CMDLINE_EDITING
1058 /****************************************************************************/
1060 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1068 if (*(--p) == '\t') { /* will retype the whole line */
1069 while (*colp > plen) {
1073 for (s=buffer; s<p; ++s) {
1075 puts (tab_seq+((*colp) & 07));
1076 *colp += 8 - ((*colp) & 07);
1090 /****************************************************************************/
1092 int parse_line (char *line, char *argv[])
1097 printf ("parse_line: \"%s\"\n", line);
1099 while (nargs < CONFIG_SYS_MAXARGS) {
1101 /* skip any white space */
1102 while (isblank(*line))
1105 if (*line == '\0') { /* end of line, no more args */
1108 printf ("parse_line: nargs=%d\n", nargs);
1113 argv[nargs++] = line; /* begin of argument string */
1115 /* find end of string */
1116 while (*line && !isblank(*line))
1119 if (*line == '\0') { /* end of line, no more args */
1122 printf ("parse_line: nargs=%d\n", nargs);
1127 *line++ = '\0'; /* terminate current arg */
1130 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
1133 printf ("parse_line: nargs=%d\n", nargs);
1138 /****************************************************************************/
1140 #ifndef CONFIG_SYS_HUSH_PARSER
1141 static void process_macros (const char *input, char *output)
1144 const char *varname_start = NULL;
1145 int inputcnt = strlen (input);
1146 int outputcnt = CONFIG_SYS_CBSIZE;
1147 int state = 0; /* 0 = waiting for '$' */
1149 /* 1 = waiting for '(' or '{' */
1150 /* 2 = waiting for ')' or '}' */
1151 /* 3 = waiting for ''' */
1153 char *output_start = output;
1155 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1159 prev = '\0'; /* previous character */
1161 while (inputcnt && outputcnt) {
1166 /* remove one level of escape characters */
1167 if ((c == '\\') && (prev != '\\')) {
1168 if (inputcnt-- == 0)
1176 case 0: /* Waiting for (unescaped) $ */
1177 if ((c == '\'') && (prev != '\\')) {
1181 if ((c == '$') && (prev != '\\')) {
1188 case 1: /* Waiting for ( */
1189 if (c == '(' || c == '{') {
1191 varname_start = input;
1203 case 2: /* Waiting for ) */
1204 if (c == ')' || c == '}') {
1206 char envname[CONFIG_SYS_CBSIZE], *envval;
1207 int envcnt = input - varname_start - 1; /* Varname # of chars */
1209 /* Get the varname */
1210 for (i = 0; i < envcnt; i++) {
1211 envname[i] = varname_start[i];
1216 envval = getenv (envname);
1218 /* Copy into the line if it exists */
1220 while ((*envval) && outputcnt) {
1221 *(output++) = *(envval++);
1224 /* Look for another '$' */
1228 case 3: /* Waiting for ' */
1229 if ((c == '\'') && (prev != '\\')) {
1246 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
1247 strlen (output_start), output_start);
1251 /****************************************************************************
1253 * 1 - command executed, repeatable
1254 * 0 - command executed but not repeatable, interrupted commands are
1255 * always considered not repeatable
1256 * -1 - not executed (unrecognized, bootd recursion or too many args)
1257 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
1258 * considered unrecognized)
1262 * We must create a temporary copy of the command since the command we get
1263 * may be the result from getenv(), which returns a pointer directly to
1264 * the environment data, which may change magicly when the command we run
1265 * creates or modifies environment variables (like "bootp" does).
1267 static int builtin_run_command(const char *cmd, int flag)
1269 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
1270 char *token; /* start of token in cmdbuf */
1271 char *sep; /* end of token (separator) in cmdbuf */
1272 char finaltoken[CONFIG_SYS_CBSIZE];
1274 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
1280 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1281 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1285 clear_ctrlc(); /* forget any previous Control C */
1287 if (!cmd || !*cmd) {
1288 return -1; /* empty command */
1291 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
1292 puts ("## Command too long!\n");
1296 strcpy (cmdbuf, cmd);
1298 /* Process separators and check for invalid
1299 * repeatable commands
1303 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1308 * Find separator, or string end
1309 * Allow simple escape of ';' by writing "\;"
1311 for (inquotes = 0, sep = str; *sep; sep++) {
1317 (*sep == ';') && /* separator */
1318 ( sep != str) && /* past string start */
1319 (*(sep-1) != '\\')) /* and NOT escaped */
1324 * Limit the token to data between separators
1328 str = sep + 1; /* start of command for next pass */
1332 str = sep; /* no more commands for next pass */
1334 printf ("token: \"%s\"\n", token);
1337 /* find macros in this token and replace them */
1338 process_macros (token, finaltoken);
1340 /* Extract arguments */
1341 if ((argc = parse_line (finaltoken, argv)) == 0) {
1342 rc = -1; /* no command at all */
1346 if (cmd_process(flag, argc, argv, &repeatable))
1349 /* Did the user stop this? */
1351 return -1; /* if stopped then not repeatable */
1354 return rc ? rc : repeatable;
1359 * Run a command using the selected parser.
1361 * @param cmd Command to run
1362 * @param flag Execution flags (CMD_FLAG_...)
1363 * @return 0 on success, or != 0 on error.
1365 int run_command(const char *cmd, int flag)
1367 #ifndef CONFIG_SYS_HUSH_PARSER
1369 * builtin_run_command can return 0 or 1 for success, so clean up
1372 if (builtin_run_command(cmd, flag) == -1)
1377 return parse_string_outer(cmd,
1378 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP);
1382 #ifndef CONFIG_SYS_HUSH_PARSER
1384 * Execute a list of command separated by ; or \n using the built-in parser.
1386 * This function cannot take a const char * for the command, since if it
1387 * finds newlines in the string, it replaces them with \0.
1389 * @param cmd String containing list of commands
1390 * @param flag Execution flags (CMD_FLAG_...)
1391 * @return 0 on success, or != 0 on error.
1393 static int builtin_run_command_list(char *cmd, int flag)
1399 * Break into individual lines, and execute each line; terminate on
1404 if (*next == '\n') {
1406 /* run only non-empty commands */
1408 debug("** exec: \"%s\"\n", line);
1409 if (builtin_run_command(line, 0) < 0) {
1418 if (rcode == 0 && *line)
1419 rcode = (builtin_run_command(line, 0) >= 0);
1425 int run_command_list(const char *cmd, int len, int flag)
1428 char *buff = (char *)cmd; /* cast away const */
1433 #ifdef CONFIG_SYS_HUSH_PARSER
1434 /* hush will never change our string */
1437 /* the built-in parser will change our string if it sees \n */
1438 need_buff = strchr(cmd, '\n') != NULL;
1442 buff = malloc(len + 1);
1445 memcpy(buff, cmd, len);
1448 #ifdef CONFIG_SYS_HUSH_PARSER
1449 rcode = parse_string_outer(buff, FLAG_PARSE_SEMICOLON);
1452 * This function will overwrite any \n it sees with a \0, which
1453 * is why it can't work with a const char *. Here we are making
1454 * using of internal knowledge of this function, to avoid always
1455 * doing a malloc() which is actually required only in a case that
1458 rcode = builtin_run_command_list(buff, flag);
1466 /****************************************************************************/
1468 #if defined(CONFIG_CMD_RUN)
1469 int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
1474 return CMD_RET_USAGE;
1476 for (i=1; i<argc; ++i) {
1479 if ((arg = getenv (argv[i])) == NULL) {
1480 printf ("## Error: \"%s\" not defined\n", argv[i]);
1484 if (run_command(arg, flag) != 0)