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,
33 #ifdef CONFIG_MODEM_SUPPORT
34 #include <malloc.h> /* for free() prototype */
37 #ifdef CONFIG_SYS_HUSH_PARSER
43 #if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
44 DECLARE_GLOBAL_DATA_PTR;
48 * Board-specific Platform code can reimplement show_boot_progress () if needed
50 void inline __show_boot_progress (int val) {}
51 void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
53 #if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY)
54 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); /* for do_reset() prototype */
57 extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
59 #if defined(CONFIG_UPDATE_TFTP)
60 void update_tftp (void);
61 #endif /* CONFIG_UPDATE_TFTP */
63 #define MAX_DELAY_STOP_STR 32
65 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
66 static int abortboot(int);
71 char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
73 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
74 static char erase_seq[] = "\b \b"; /* erase sequence */
75 static char tab_seq[] = " "; /* used to expand TABs */
77 #ifdef CONFIG_BOOT_RETRY_TIME
78 static uint64_t endtime = 0; /* must be set, default is instant timeout */
79 static int retry_time = -1; /* -1 so can call readline before main_loop */
82 #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
84 #ifndef CONFIG_BOOT_RETRY_MIN
85 #define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
88 #ifdef CONFIG_MODEM_SUPPORT
90 extern void mdm_init(void); /* defined in board.c */
93 /***************************************************************************
94 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
95 * returns: 0 - no key string, allow autoboot
96 * 1 - got key string, abort
98 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
99 # if defined(CONFIG_AUTOBOOT_KEYED)
100 static __inline__ int abortboot(int bootdelay)
103 uint64_t etime = endtick(bootdelay);
110 { str: getenv ("bootdelaykey"), retry: 1 },
111 { str: getenv ("bootdelaykey2"), retry: 1 },
112 { str: getenv ("bootstopkey"), retry: 0 },
113 { str: getenv ("bootstopkey2"), retry: 0 },
116 char presskey [MAX_DELAY_STOP_STR];
117 u_int presskey_len = 0;
118 u_int presskey_max = 0;
121 # ifdef CONFIG_AUTOBOOT_PROMPT
122 printf(CONFIG_AUTOBOOT_PROMPT);
125 # ifdef CONFIG_AUTOBOOT_DELAY_STR
126 if (delaykey[0].str == NULL)
127 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
129 # ifdef CONFIG_AUTOBOOT_DELAY_STR2
130 if (delaykey[1].str == NULL)
131 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
133 # ifdef CONFIG_AUTOBOOT_STOP_STR
134 if (delaykey[2].str == NULL)
135 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
137 # ifdef CONFIG_AUTOBOOT_STOP_STR2
138 if (delaykey[3].str == NULL)
139 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
142 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
143 delaykey[i].len = delaykey[i].str == NULL ?
144 0 : strlen (delaykey[i].str);
145 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
146 MAX_DELAY_STOP_STR : delaykey[i].len;
148 presskey_max = presskey_max > delaykey[i].len ?
149 presskey_max : delaykey[i].len;
152 printf("%s key:<%s>\n",
153 delaykey[i].retry ? "delay" : "stop",
154 delaykey[i].str ? delaykey[i].str : "NULL");
158 /* In order to keep up with incoming data, check timeout only
163 if (presskey_len < presskey_max) {
164 presskey [presskey_len ++] = getc();
167 for (i = 0; i < presskey_max - 1; i ++)
168 presskey [i] = presskey [i + 1];
170 presskey [i] = getc();
174 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
175 if (delaykey[i].len > 0 &&
176 presskey_len >= delaykey[i].len &&
177 memcmp (presskey + presskey_len - delaykey[i].len,
179 delaykey[i].len) == 0) {
181 printf("got %skey\n",
182 delaykey[i].retry ? "delay" : "stop");
185 # ifdef CONFIG_BOOT_RETRY_TIME
186 /* don't retry auto boot */
187 if (! delaykey[i].retry)
193 } while (!abort && get_ticks() <= etime);
197 puts("key timeout\n");
200 #ifdef CONFIG_SILENT_CONSOLE
202 gd->flags &= ~GD_FLG_SILENT;
208 # else /* !defined(CONFIG_AUTOBOOT_KEYED) */
210 #ifdef CONFIG_MENUKEY
211 static int menukey = 0;
214 static __inline__ int abortboot(int bootdelay)
218 #ifdef CONFIG_MENUPROMPT
219 printf(CONFIG_MENUPROMPT);
221 printf("Hit any key to stop autoboot: %2d ", bootdelay);
224 #if defined CONFIG_ZERO_BOOTDELAY_CHECK
226 * Check if key already pressed
227 * Don't check if bootdelay < 0
229 if (bootdelay >= 0) {
230 if (tstc()) { /* we got a key press */
231 (void) getc(); /* consume input */
233 abort = 1; /* don't auto boot */
238 while ((bootdelay > 0) && (!abort)) {
242 /* delay 100 * 10ms */
243 for (i=0; !abort && i<100; ++i) {
244 if (tstc()) { /* we got a key press */
245 abort = 1; /* don't auto boot */
246 bootdelay = 0; /* no more delay */
247 # ifdef CONFIG_MENUKEY
250 (void) getc(); /* consume input */
257 printf("\b\b\b%2d ", bootdelay);
262 #ifdef CONFIG_SILENT_CONSOLE
264 gd->flags &= ~GD_FLG_SILENT;
269 # endif /* CONFIG_AUTOBOOT_KEYED */
270 #endif /* CONFIG_BOOTDELAY >= 0 */
272 /****************************************************************************/
274 void main_loop (void)
276 #ifndef CONFIG_SYS_HUSH_PARSER
277 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
283 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
287 #ifdef CONFIG_PREBOOT
290 #ifdef CONFIG_BOOTCOUNT_LIMIT
291 unsigned long bootcount = 0;
292 unsigned long bootlimit = 0;
295 #endif /* CONFIG_BOOTCOUNT_LIMIT */
297 #if defined(CONFIG_VFD) && defined(VFD_TEST_LOGO)
298 ulong bmp = 0; /* default bitmap */
299 extern int trab_vfd (ulong bitmap);
301 #ifdef CONFIG_MODEM_SUPPORT
303 bmp = 1; /* alternate bitmap */
306 #endif /* CONFIG_VFD && VFD_TEST_LOGO */
308 #ifdef CONFIG_BOOTCOUNT_LIMIT
309 bootcount = bootcount_load();
311 bootcount_store (bootcount);
312 sprintf (bcs_set, "%lu", bootcount);
313 setenv ("bootcount", bcs_set);
314 bcs = getenv ("bootlimit");
315 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
316 #endif /* CONFIG_BOOTCOUNT_LIMIT */
318 #ifdef CONFIG_MODEM_SUPPORT
319 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
321 char *str = strdup(getenv("mdm_cmd"));
322 setenv ("preboot", str); /* set or delete definition */
325 mdm_init(); /* wait for modem connection */
327 #endif /* CONFIG_MODEM_SUPPORT */
329 #ifdef CONFIG_VERSION_VARIABLE
331 extern char version_string[];
333 setenv ("ver", version_string); /* set version variable */
335 #endif /* CONFIG_VERSION_VARIABLE */
337 #ifdef CONFIG_SYS_HUSH_PARSER
338 u_boot_hush_start ();
341 #if defined(CONFIG_HUSH_INIT_VAR)
345 #ifdef CONFIG_AUTO_COMPLETE
346 install_auto_complete();
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 */
355 # ifndef CONFIG_SYS_HUSH_PARSER
358 parse_string_outer(p, FLAG_PARSE_SEMICOLON |
359 FLAG_EXIT_FROM_LOOP);
362 # ifdef CONFIG_AUTOBOOT_KEYED
363 disable_ctrlc(prev); /* restore Control C checking */
366 #endif /* CONFIG_PREBOOT */
368 #if defined(CONFIG_UPDATE_TFTP)
370 #endif /* CONFIG_UPDATE_TFTP */
372 #if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
373 s = getenv ("bootdelay");
374 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
376 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
378 # ifdef CONFIG_BOOT_RETRY_TIME
380 # endif /* CONFIG_BOOT_RETRY_TIME */
383 if (gd->flags & GD_FLG_POSTFAIL) {
384 s = getenv("failbootcmd");
387 #endif /* CONFIG_POST */
388 #ifdef CONFIG_BOOTCOUNT_LIMIT
389 if (bootlimit && (bootcount > bootlimit)) {
390 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
391 (unsigned)bootlimit);
392 s = getenv ("altbootcmd");
395 #endif /* CONFIG_BOOTCOUNT_LIMIT */
396 s = getenv ("bootcmd");
398 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
400 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
401 # ifdef CONFIG_AUTOBOOT_KEYED
402 int prev = disable_ctrlc(1); /* disable Control C checking */
405 # ifndef CONFIG_SYS_HUSH_PARSER
408 parse_string_outer(s, FLAG_PARSE_SEMICOLON |
409 FLAG_EXIT_FROM_LOOP);
412 # ifdef CONFIG_AUTOBOOT_KEYED
413 disable_ctrlc(prev); /* restore Control C checking */
417 # ifdef CONFIG_MENUKEY
418 if (menukey == CONFIG_MENUKEY) {
419 s = getenv("menucmd");
421 # ifndef CONFIG_SYS_HUSH_PARSER
424 parse_string_outer(s, FLAG_PARSE_SEMICOLON |
425 FLAG_EXIT_FROM_LOOP);
429 #endif /* CONFIG_MENUKEY */
430 #endif /* CONFIG_BOOTDELAY */
433 * Main Loop for Monitor Command Processing
435 #ifdef CONFIG_SYS_HUSH_PARSER
437 /* This point is never reached */
441 #ifdef CONFIG_BOOT_RETRY_TIME
443 /* Saw enough of a valid command to
444 * restart the timeout.
449 len = readline (CONFIG_SYS_PROMPT);
451 flag = 0; /* assume no special flags for now */
453 strcpy (lastcommand, console_buffer);
455 flag |= CMD_FLAG_REPEAT;
456 #ifdef CONFIG_BOOT_RETRY_TIME
457 else if (len == -2) {
458 /* -2 means timed out, retry autoboot
460 puts ("\nTimed out waiting for command\n");
461 # ifdef CONFIG_RESET_TO_RETRY
462 /* Reinit board to run initialization code again */
463 do_reset (NULL, 0, 0, NULL);
465 return; /* retry autoboot */
471 puts ("<INTERRUPT>\n");
473 rc = run_command (lastcommand, flag);
476 /* invalid command or not repeatable, forget it */
480 #endif /*CONFIG_SYS_HUSH_PARSER*/
483 #ifdef CONFIG_BOOT_RETRY_TIME
484 /***************************************************************************
485 * initialize command line timeout
487 void init_cmd_timeout(void)
489 char *s = getenv ("bootretry");
492 retry_time = (int)simple_strtol(s, NULL, 10);
494 retry_time = CONFIG_BOOT_RETRY_TIME;
496 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
497 retry_time = CONFIG_BOOT_RETRY_MIN;
500 /***************************************************************************
501 * reset command line timeout to retry_time seconds
503 void reset_cmd_timeout(void)
505 endtime = endtick(retry_time);
509 #ifdef CONFIG_CMDLINE_EDITING
512 * cmdline-editing related codes from vivi.
513 * Author: Janghoon Lyu <nandy@mizi.com>
516 #define putnstr(str,n) do { \
517 printf ("%.*s", (int)n, str); \
520 #define CTL_CH(c) ((c) - 'a' + 1)
522 #define MAX_CMDBUF_SIZE CONFIG_SYS_CBSIZE
524 #define CTL_BACKSPACE ('\b')
525 #define DEL ((char)255)
526 #define DEL7 ((char)127)
527 #define CREAD_HIST_CHAR ('!')
529 #define getcmd_putch(ch) putc(ch)
530 #define getcmd_getch() getc()
531 #define getcmd_cbeep() getcmd_putch('\a')
534 #define HIST_SIZE MAX_CMDBUF_SIZE
536 static int hist_max = 0;
537 static int hist_add_idx = 0;
538 static int hist_cur = -1;
539 unsigned hist_num = 0;
541 char* hist_list[HIST_MAX];
542 char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
544 #define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
546 static void hist_init(void)
555 for (i = 0; i < HIST_MAX; i++) {
556 hist_list[i] = hist_lines[i];
557 hist_list[i][0] = '\0';
561 static void cread_add_to_hist(char *line)
563 strcpy(hist_list[hist_add_idx], line);
565 if (++hist_add_idx >= HIST_MAX)
568 if (hist_add_idx > hist_max)
569 hist_max = hist_add_idx;
574 static char* hist_prev(void)
586 if (hist_cur == hist_add_idx) {
590 ret = hist_list[hist_cur];
595 static char* hist_next(void)
602 if (hist_cur == hist_add_idx)
605 if (++hist_cur > hist_max)
608 if (hist_cur == hist_add_idx) {
611 ret = hist_list[hist_cur];
616 #ifndef CONFIG_CMDLINE_EDITING
617 static void cread_print_hist_list(void)
622 n = hist_num - hist_max;
624 i = hist_add_idx + 1;
628 if (i == hist_add_idx)
630 printf("%s\n", hist_list[i]);
635 #endif /* CONFIG_CMDLINE_EDITING */
637 #define BEGINNING_OF_LINE() { \
639 getcmd_putch(CTL_BACKSPACE); \
644 #define ERASE_TO_EOL() { \
645 if (num < eol_num) { \
646 printf("%*s", (int)(eol_num - num), ""); \
648 getcmd_putch(CTL_BACKSPACE); \
649 } while (--eol_num > num); \
653 #define REFRESH_TO_EOL() { \
654 if (num < eol_num) { \
655 wlen = eol_num - num; \
656 putnstr(buf + num, wlen); \
661 static void cread_add_char(char ichar, int insert, unsigned long *num,
662 unsigned long *eol_num, char *buf, unsigned long len)
667 if (insert || *num == *eol_num) {
668 if (*eol_num > len - 1) {
676 wlen = *eol_num - *num;
678 memmove(&buf[*num+1], &buf[*num], wlen-1);
682 putnstr(buf + *num, wlen);
685 getcmd_putch(CTL_BACKSPACE);
688 /* echo the character */
691 putnstr(buf + *num, wlen);
696 static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
697 unsigned long *eol_num, char *buf, unsigned long len)
700 cread_add_char(*str, insert, num, eol_num, buf, len);
705 static int cread_line(const char *const prompt, char *buf, unsigned int *len)
707 unsigned long num = 0;
708 unsigned long eol_num = 0;
714 int init_len = strlen(buf);
717 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
720 #ifdef CONFIG_BOOT_RETRY_TIME
721 while (!tstc()) { /* while no incoming data */
722 if (retry_time >= 0 && get_ticks() > endtime)
723 return (-2); /* timed out */
728 ichar = getcmd_getch();
730 if ((ichar == '\n') || (ichar == '\r')) {
736 * handle standard linux xterm esc sequences for arrow key, etc.
741 esc_save[esc_len] = ichar;
744 cread_add_str(esc_save, esc_len, insert,
745 &num, &eol_num, buf, *len);
753 case 'D': /* <- key */
757 case 'C': /* -> key */
760 break; /* pass off to ^F handler */
761 case 'H': /* Home key */
764 break; /* pass off to ^A handler */
765 case 'A': /* up arrow */
768 break; /* pass off to ^P handler */
769 case 'B': /* down arrow */
772 break; /* pass off to ^N handler */
774 esc_save[esc_len++] = ichar;
775 cread_add_str(esc_save, esc_len, insert,
776 &num, &eol_num, buf, *len);
785 esc_save[esc_len] = ichar;
788 puts("impossible condition #876\n");
796 case CTL_CH('c'): /* ^C - break */
797 *buf = '\0'; /* discard input */
801 getcmd_putch(buf[num]);
807 getcmd_putch(CTL_BACKSPACE);
813 wlen = eol_num - num - 1;
815 memmove(&buf[num], &buf[num+1], wlen);
816 putnstr(buf + num, wlen);
821 getcmd_putch(CTL_BACKSPACE);
844 wlen = eol_num - num;
846 memmove(&buf[num], &buf[num+1], wlen);
847 getcmd_putch(CTL_BACKSPACE);
848 putnstr(buf + num, wlen);
851 getcmd_putch(CTL_BACKSPACE);
863 if (ichar == CTL_CH('p'))
873 /* nuke the current line */
877 /* erase to end of line */
880 /* copy new line into place and display */
882 eol_num = strlen(buf);
886 #ifdef CONFIG_AUTO_COMPLETE
890 /* do not autocomplete when in the middle */
897 col = strlen(prompt) + eol_num;
899 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
908 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
913 buf[eol_num] = '\0'; /* lose the newline */
915 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
916 cread_add_to_hist(buf);
917 hist_cur = hist_add_idx;
922 #endif /* CONFIG_CMDLINE_EDITING */
924 /****************************************************************************/
927 * Prompt for input and read a line.
928 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
929 * time out when time goes past endtime (timebase time in ticks).
930 * Return: number of read characters
934 int readline (const char *const prompt)
937 * If console_buffer isn't 0-length the user will be prompted to modify
938 * it instead of entering it from scratch as desired.
940 console_buffer[0] = '\0';
942 return readline_into_buffer(prompt, console_buffer);
946 int readline_into_buffer (const char *const prompt, char * buffer)
949 #ifdef CONFIG_CMDLINE_EDITING
950 unsigned int len=MAX_CMDBUF_SIZE;
952 static int initted = 0;
955 * History uses a global array which is not
956 * writable until after relocation to RAM.
957 * Revert to non-history version if still
958 * running from flash.
960 if (gd->flags & GD_FLG_RELOC) {
969 rc = cread_line(prompt, p, &len);
970 return rc < 0 ? rc : len;
973 #endif /* CONFIG_CMDLINE_EDITING */
975 int n = 0; /* buffer index */
976 int plen = 0; /* prompt length */
977 int col; /* output column cnt */
982 plen = strlen (prompt);
988 #ifdef CONFIG_BOOT_RETRY_TIME
989 while (!tstc()) { /* while no incoming data */
990 if (retry_time >= 0 && get_ticks() > endtime)
991 return (-2); /* timed out */
995 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
997 #ifdef CONFIG_SHOW_ACTIVITY
999 extern void show_activity(int arg);
1007 * Special character handling
1010 case '\r': /* Enter */
1016 case '\0': /* nul */
1019 case 0x03: /* ^C - break */
1020 p_buf[0] = '\0'; /* discard input */
1023 case 0x15: /* ^U - erase line */
1024 while (col > plen) {
1032 case 0x17: /* ^W - erase word */
1033 p=delete_char(p_buf, p, &col, &n, plen);
1034 while ((n > 0) && (*p != ' ')) {
1035 p=delete_char(p_buf, p, &col, &n, plen);
1039 case 0x08: /* ^H - backspace */
1040 case 0x7F: /* DEL - backspace */
1041 p=delete_char(p_buf, p, &col, &n, plen);
1046 * Must be a normal character then
1048 if (n < CONFIG_SYS_CBSIZE-2) {
1049 if (c == '\t') { /* expand TABs */
1050 #ifdef CONFIG_AUTO_COMPLETE
1051 /* if auto completion triggered just continue */
1053 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
1054 p = p_buf + n; /* reset */
1058 puts (tab_seq+(col&07));
1059 col += 8 - (col&07);
1061 ++col; /* echo input */
1066 } else { /* Buffer full */
1071 #ifdef CONFIG_CMDLINE_EDITING
1076 /****************************************************************************/
1078 static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1086 if (*(--p) == '\t') { /* will retype the whole line */
1087 while (*colp > plen) {
1091 for (s=buffer; s<p; ++s) {
1093 puts (tab_seq+((*colp) & 07));
1094 *colp += 8 - ((*colp) & 07);
1108 /****************************************************************************/
1110 int parse_line (char *line, char *argv[])
1115 printf ("parse_line: \"%s\"\n", line);
1117 while (nargs < CONFIG_SYS_MAXARGS) {
1119 /* skip any white space */
1120 while ((*line == ' ') || (*line == '\t')) {
1124 if (*line == '\0') { /* end of line, no more args */
1127 printf ("parse_line: nargs=%d\n", nargs);
1132 argv[nargs++] = line; /* begin of argument string */
1134 /* find end of string */
1135 while (*line && (*line != ' ') && (*line != '\t')) {
1139 if (*line == '\0') { /* end of line, no more args */
1142 printf ("parse_line: nargs=%d\n", nargs);
1147 *line++ = '\0'; /* terminate current arg */
1150 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
1153 printf ("parse_line: nargs=%d\n", nargs);
1158 /****************************************************************************/
1160 static void process_macros (const char *input, char *output)
1163 const char *varname_start = NULL;
1164 int inputcnt = strlen (input);
1165 int outputcnt = CONFIG_SYS_CBSIZE;
1166 int state = 0; /* 0 = waiting for '$' */
1168 /* 1 = waiting for '(' or '{' */
1169 /* 2 = waiting for ')' or '}' */
1170 /* 3 = waiting for ''' */
1172 char *output_start = output;
1174 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1178 prev = '\0'; /* previous character */
1180 while (inputcnt && outputcnt) {
1185 /* remove one level of escape characters */
1186 if ((c == '\\') && (prev != '\\')) {
1187 if (inputcnt-- == 0)
1195 case 0: /* Waiting for (unescaped) $ */
1196 if ((c == '\'') && (prev != '\\')) {
1200 if ((c == '$') && (prev != '\\')) {
1207 case 1: /* Waiting for ( */
1208 if (c == '(' || c == '{') {
1210 varname_start = input;
1222 case 2: /* Waiting for ) */
1223 if (c == ')' || c == '}') {
1225 char envname[CONFIG_SYS_CBSIZE], *envval;
1226 int envcnt = input - varname_start - 1; /* Varname # of chars */
1228 /* Get the varname */
1229 for (i = 0; i < envcnt; i++) {
1230 envname[i] = varname_start[i];
1235 envval = getenv (envname);
1237 /* Copy into the line if it exists */
1239 while ((*envval) && outputcnt) {
1240 *(output++) = *(envval++);
1243 /* Look for another '$' */
1247 case 3: /* Waiting for ' */
1248 if ((c == '\'') && (prev != '\\')) {
1265 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
1266 strlen (output_start), output_start);
1270 /****************************************************************************
1272 * 1 - command executed, repeatable
1273 * 0 - command executed but not repeatable, interrupted commands are
1274 * always considered not repeatable
1275 * -1 - not executed (unrecognized, bootd recursion or too many args)
1276 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
1277 * considered unrecognized)
1281 * We must create a temporary copy of the command since the command we get
1282 * may be the result from getenv(), which returns a pointer directly to
1283 * the environment data, which may change magicly when the command we run
1284 * creates or modifies environment variables (like "bootp" does).
1287 int run_command (const char *cmd, int flag)
1290 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
1291 char *token; /* start of token in cmdbuf */
1292 char *sep; /* end of token (separator) in cmdbuf */
1293 char finaltoken[CONFIG_SYS_CBSIZE];
1295 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
1301 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1302 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1306 clear_ctrlc(); /* forget any previous Control C */
1308 if (!cmd || !*cmd) {
1309 return -1; /* empty command */
1312 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
1313 puts ("## Command too long!\n");
1317 strcpy (cmdbuf, cmd);
1319 /* Process separators and check for invalid
1320 * repeatable commands
1324 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1329 * Find separator, or string end
1330 * Allow simple escape of ';' by writing "\;"
1332 for (inquotes = 0, sep = str; *sep; sep++) {
1338 (*sep == ';') && /* separator */
1339 ( sep != str) && /* past string start */
1340 (*(sep-1) != '\\')) /* and NOT escaped */
1345 * Limit the token to data between separators
1349 str = sep + 1; /* start of command for next pass */
1353 str = sep; /* no more commands for next pass */
1355 printf ("token: \"%s\"\n", token);
1358 /* find macros in this token and replace them */
1359 process_macros (token, finaltoken);
1361 /* Extract arguments */
1362 if ((argc = parse_line (finaltoken, argv)) == 0) {
1363 rc = -1; /* no command at all */
1367 /* Look up command in command table */
1368 if ((cmdtp = find_cmd(argv[0])) == NULL) {
1369 printf ("Unknown command '%s' - try 'help'\n", argv[0]);
1370 rc = -1; /* give up after bad command */
1374 /* found - check max args */
1375 if (argc > cmdtp->maxargs) {
1381 #if defined(CONFIG_CMD_BOOTD)
1382 /* avoid "bootd" recursion */
1383 if (cmdtp->cmd == do_bootd) {
1385 printf ("[%s]\n", finaltoken);
1387 if (flag & CMD_FLAG_BOOTD) {
1388 puts ("'bootd' recursion detected\n");
1392 flag |= CMD_FLAG_BOOTD;
1397 /* OK - call function to do the command */
1398 if ((cmdtp->cmd) (cmdtp, flag, argc, argv) != 0) {
1402 repeatable &= cmdtp->repeatable;
1404 /* Did the user stop this? */
1406 return -1; /* if stopped then not repeatable */
1409 return rc ? rc : repeatable;
1412 /****************************************************************************/
1414 #if defined(CONFIG_CMD_RUN)
1415 int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
1420 return cmd_usage(cmdtp);
1422 for (i=1; i<argc; ++i) {
1425 if ((arg = getenv (argv[i])) == NULL) {
1426 printf ("## Error: \"%s\" not defined\n", argv[i]);
1429 #ifndef CONFIG_SYS_HUSH_PARSER
1430 if (run_command (arg, flag) == -1)
1433 if (parse_string_outer(arg,
1434 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)