]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/main.c
Add cmd_process() to process commands in one place
[people/ms/u-boot.git] / common / main.c
CommitLineData
c609719b
WD
1/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
501090aa
WD
5 * Add to readline cmdline-editing by
6 * (C) Copyright 2005
7 * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
8 *
c609719b
WD
9 * See file CREDITS for list of people who contributed to this
10 * project.
11 *
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.
16 *
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.
21 *
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,
25 * MA 02111-1307 USA
26 */
27
a6c7ad2f
WD
28/* #define DEBUG */
29
c609719b
WD
30#include <common.h>
31#include <watchdog.h>
32#include <command.h>
09c2e90c 33#include <version.h>
d9631ecf
WD
34#ifdef CONFIG_MODEM_SUPPORT
35#include <malloc.h> /* for free() prototype */
36#endif
c609719b 37
6d0f6bcf 38#ifdef CONFIG_SYS_HUSH_PARSER
c609719b
WD
39#include <hush.h>
40#endif
41
bdccc4fe 42#include <post.h>
4d91a6ec 43#include <linux/ctype.h>
317d6c57 44#include <menu.h>
bdccc4fe 45
597f6c26 46#if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
d87080b7
WD
47DECLARE_GLOBAL_DATA_PTR;
48#endif
49
fad63407
HS
50/*
51 * Board-specific Platform code can reimplement show_boot_progress () if needed
52 */
53void inline __show_boot_progress (int val) {}
5e2c08c3 54void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
fad63407 55
4bae9090 56#if defined(CONFIG_UPDATE_TFTP)
8d6b7320 57int update_tftp (ulong addr);
4bae9090 58#endif /* CONFIG_UPDATE_TFTP */
8bde7f77 59
c609719b
WD
60#define MAX_DELAY_STOP_STR 32
61
c609719b
WD
62#undef DEBUG_PARSER
63
6475b9f9 64char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
c609719b 65
3ca9122f 66static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
82359aec
MF
67static const char erase_seq[] = "\b \b"; /* erase sequence */
68static const char tab_seq[] = " "; /* used to expand TABs */
c609719b
WD
69
70#ifdef CONFIG_BOOT_RETRY_TIME
71static uint64_t endtime = 0; /* must be set, default is instant timeout */
72static int retry_time = -1; /* -1 so can call readline before main_loop */
73#endif
74
75#define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
76
77#ifndef CONFIG_BOOT_RETRY_MIN
78#define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
79#endif
80
81#ifdef CONFIG_MODEM_SUPPORT
82int do_mdm_init = 0;
83extern void mdm_init(void); /* defined in board.c */
84#endif
85
86/***************************************************************************
87 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
c8a2079e 88 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
c609719b
WD
89 */
90#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
91# if defined(CONFIG_AUTOBOOT_KEYED)
b41bc5a8
JH
92#ifndef CONFIG_MENU
93static inline
94#endif
95int abortboot(int bootdelay)
c609719b
WD
96{
97 int abort = 0;
98 uint64_t etime = endtick(bootdelay);
19973b6a 99 struct {
c609719b
WD
100 char* str;
101 u_int len;
102 int retry;
103 }
19973b6a 104 delaykey [] = {
c609719b
WD
105 { str: getenv ("bootdelaykey"), retry: 1 },
106 { str: getenv ("bootdelaykey2"), retry: 1 },
107 { str: getenv ("bootstopkey"), retry: 0 },
108 { str: getenv ("bootstopkey2"), retry: 0 },
109 };
110
111 char presskey [MAX_DELAY_STOP_STR];
112 u_int presskey_len = 0;
113 u_int presskey_max = 0;
114 u_int i;
115
116# ifdef CONFIG_AUTOBOOT_PROMPT
f2302d44 117 printf(CONFIG_AUTOBOOT_PROMPT);
c609719b
WD
118# endif
119
120# ifdef CONFIG_AUTOBOOT_DELAY_STR
121 if (delaykey[0].str == NULL)
122 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
123# endif
124# ifdef CONFIG_AUTOBOOT_DELAY_STR2
125 if (delaykey[1].str == NULL)
126 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
127# endif
128# ifdef CONFIG_AUTOBOOT_STOP_STR
129 if (delaykey[2].str == NULL)
130 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
131# endif
132# ifdef CONFIG_AUTOBOOT_STOP_STR2
133 if (delaykey[3].str == NULL)
134 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
135# endif
136
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;
142
143 presskey_max = presskey_max > delaykey[i].len ?
144 presskey_max : delaykey[i].len;
145
146# if DEBUG_BOOTKEYS
147 printf("%s key:<%s>\n",
148 delaykey[i].retry ? "delay" : "stop",
149 delaykey[i].str ? delaykey[i].str : "NULL");
150# endif
151 }
152
153 /* In order to keep up with incoming data, check timeout only
154 * when catch up.
155 */
c3284b03
PK
156 do {
157 if (tstc()) {
158 if (presskey_len < presskey_max) {
159 presskey [presskey_len ++] = getc();
160 }
161 else {
162 for (i = 0; i < presskey_max - 1; i ++)
163 presskey [i] = presskey [i + 1];
164
165 presskey [i] = getc();
166 }
167 }
168
c609719b
WD
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,
8bde7f77 173 delaykey[i].str,
c609719b
WD
174 delaykey[i].len) == 0) {
175# if DEBUG_BOOTKEYS
176 printf("got %skey\n",
177 delaykey[i].retry ? "delay" : "stop");
178# endif
179
180# ifdef CONFIG_BOOT_RETRY_TIME
181 /* don't retry auto boot */
182 if (! delaykey[i].retry)
183 retry_time = -1;
184# endif
185 abort = 1;
186 }
187 }
c3284b03 188 } while (!abort && get_ticks() <= etime);
c609719b 189
c609719b
WD
190# if DEBUG_BOOTKEYS
191 if (!abort)
ada4d400 192 puts("key timeout\n");
c609719b
WD
193# endif
194
8cb8143e 195#ifdef CONFIG_SILENT_CONSOLE
4ec5bd55
LM
196 if (abort)
197 gd->flags &= ~GD_FLG_SILENT;
8cb8143e 198#endif
199
c609719b
WD
200 return abort;
201}
202
203# else /* !defined(CONFIG_AUTOBOOT_KEYED) */
204
c7de829c
WD
205#ifdef CONFIG_MENUKEY
206static int menukey = 0;
207#endif
208
b41bc5a8
JH
209#ifndef CONFIG_MENU
210static inline
211#endif
212int abortboot(int bootdelay)
c609719b
WD
213{
214 int abort = 0;
215
c7de829c 216#ifdef CONFIG_MENUPROMPT
f2302d44 217 printf(CONFIG_MENUPROMPT);
c7de829c 218#else
c609719b 219 printf("Hit any key to stop autoboot: %2d ", bootdelay);
c7de829c 220#endif
c609719b
WD
221
222#if defined CONFIG_ZERO_BOOTDELAY_CHECK
8bde7f77
WD
223 /*
224 * Check if key already pressed
225 * Don't check if bootdelay < 0
226 */
c609719b
WD
227 if (bootdelay >= 0) {
228 if (tstc()) { /* we got a key press */
229 (void) getc(); /* consume input */
4b9206ed 230 puts ("\b\b\b 0");
4ec5bd55 231 abort = 1; /* don't auto boot */
c609719b 232 }
8bde7f77 233 }
c609719b
WD
234#endif
235
f72da340 236 while ((bootdelay > 0) && (!abort)) {
c609719b
WD
237 int i;
238
239 --bootdelay;
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 */
c7de829c
WD
245# ifdef CONFIG_MENUKEY
246 menukey = getc();
247# else
c609719b 248 (void) getc(); /* consume input */
c7de829c 249# endif
c609719b
WD
250 break;
251 }
ada4d400 252 udelay(10000);
c609719b
WD
253 }
254
ada4d400 255 printf("\b\b\b%2d ", bootdelay);
c609719b
WD
256 }
257
ada4d400 258 putc('\n');
c609719b 259
f72da340 260#ifdef CONFIG_SILENT_CONSOLE
4ec5bd55
LM
261 if (abort)
262 gd->flags &= ~GD_FLG_SILENT;
f72da340
WD
263#endif
264
c609719b
WD
265 return abort;
266}
267# endif /* CONFIG_AUTOBOOT_KEYED */
268#endif /* CONFIG_BOOTDELAY >= 0 */
269
270/****************************************************************************/
271
272void main_loop (void)
273{
6d0f6bcf
JCPV
274#ifndef CONFIG_SYS_HUSH_PARSER
275 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
c609719b
WD
276 int len;
277 int rc = 1;
278 int flag;
279#endif
280
281#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
282 char *s;
283 int bootdelay;
284#endif
285#ifdef CONFIG_PREBOOT
286 char *p;
287#endif
bdccc4fe
WD
288#ifdef CONFIG_BOOTCOUNT_LIMIT
289 unsigned long bootcount = 0;
290 unsigned long bootlimit = 0;
291 char *bcs;
292 char bcs_set[16];
293#endif /* CONFIG_BOOTCOUNT_LIMIT */
c609719b 294
bdccc4fe
WD
295#ifdef CONFIG_BOOTCOUNT_LIMIT
296 bootcount = bootcount_load();
297 bootcount++;
298 bootcount_store (bootcount);
299 sprintf (bcs_set, "%lu", bootcount);
300 setenv ("bootcount", bcs_set);
301 bcs = getenv ("bootlimit");
302 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
303#endif /* CONFIG_BOOTCOUNT_LIMIT */
304
c609719b
WD
305#ifdef CONFIG_MODEM_SUPPORT
306 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
307 if (do_mdm_init) {
77ddac94 308 char *str = strdup(getenv("mdm_cmd"));
c609719b
WD
309 setenv ("preboot", str); /* set or delete definition */
310 if (str != NULL)
311 free (str);
312 mdm_init(); /* wait for modem connection */
313 }
314#endif /* CONFIG_MODEM_SUPPORT */
315
0587597c
SR
316#ifdef CONFIG_VERSION_VARIABLE
317 {
155cb010 318 setenv ("ver", version_string); /* set version variable */
0587597c
SR
319 }
320#endif /* CONFIG_VERSION_VARIABLE */
321
6d0f6bcf 322#ifdef CONFIG_SYS_HUSH_PARSER
c609719b
WD
323 u_boot_hush_start ();
324#endif
325
81473f67
HS
326#if defined(CONFIG_HUSH_INIT_VAR)
327 hush_init_var ();
328#endif
329
c609719b
WD
330#ifdef CONFIG_PREBOOT
331 if ((p = getenv ("preboot")) != NULL) {
332# ifdef CONFIG_AUTOBOOT_KEYED
333 int prev = disable_ctrlc(1); /* disable Control C checking */
334# endif
335
009dde19 336 run_command(p, 0);
c609719b
WD
337
338# ifdef CONFIG_AUTOBOOT_KEYED
339 disable_ctrlc(prev); /* restore Control C checking */
340# endif
341 }
342#endif /* CONFIG_PREBOOT */
343
143cd21f 344#if defined(CONFIG_UPDATE_TFTP)
8d6b7320 345 update_tftp (0UL);
143cd21f
WD
346#endif /* CONFIG_UPDATE_TFTP */
347
c609719b
WD
348#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
349 s = getenv ("bootdelay");
350 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
351
a6c7ad2f 352 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
c609719b 353
317d6c57
HS
354#if defined(CONFIG_MENU_SHOW)
355 bootdelay = menu_show(bootdelay);
356#endif
c609719b 357# ifdef CONFIG_BOOT_RETRY_TIME
6dd652fa 358 init_cmd_timeout ();
c609719b
WD
359# endif /* CONFIG_BOOT_RETRY_TIME */
360
b428f6a8
YT
361#ifdef CONFIG_POST
362 if (gd->flags & GD_FLG_POSTFAIL) {
363 s = getenv("failbootcmd");
364 }
365 else
366#endif /* CONFIG_POST */
bdccc4fe
WD
367#ifdef CONFIG_BOOTCOUNT_LIMIT
368 if (bootlimit && (bootcount > bootlimit)) {
369 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
370 (unsigned)bootlimit);
371 s = getenv ("altbootcmd");
372 }
373 else
374#endif /* CONFIG_BOOTCOUNT_LIMIT */
375 s = getenv ("bootcmd");
a6c7ad2f
WD
376
377 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
378
c609719b
WD
379 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
380# ifdef CONFIG_AUTOBOOT_KEYED
381 int prev = disable_ctrlc(1); /* disable Control C checking */
382# endif
383
009dde19 384 run_command(s, 0);
c609719b
WD
385
386# ifdef CONFIG_AUTOBOOT_KEYED
387 disable_ctrlc(prev); /* restore Control C checking */
388# endif
389 }
c7de829c
WD
390
391# ifdef CONFIG_MENUKEY
a6c7ad2f 392 if (menukey == CONFIG_MENUKEY) {
370d1e3e 393 s = getenv("menucmd");
c8a2079e 394 if (s)
009dde19 395 run_command(s, 0);
c7de829c
WD
396 }
397#endif /* CONFIG_MENUKEY */
953b7e62 398#endif /* CONFIG_BOOTDELAY */
c7de829c 399
c609719b
WD
400 /*
401 * Main Loop for Monitor Command Processing
402 */
6d0f6bcf 403#ifdef CONFIG_SYS_HUSH_PARSER
c609719b
WD
404 parse_file_outer();
405 /* This point is never reached */
406 for (;;);
407#else
408 for (;;) {
409#ifdef CONFIG_BOOT_RETRY_TIME
410 if (rc >= 0) {
411 /* Saw enough of a valid command to
412 * restart the timeout.
413 */
414 reset_cmd_timeout();
415 }
416#endif
6d0f6bcf 417 len = readline (CONFIG_SYS_PROMPT);
c609719b
WD
418
419 flag = 0; /* assume no special flags for now */
420 if (len > 0)
421 strcpy (lastcommand, console_buffer);
422 else if (len == 0)
423 flag |= CMD_FLAG_REPEAT;
424#ifdef CONFIG_BOOT_RETRY_TIME
425 else if (len == -2) {
426 /* -2 means timed out, retry autoboot
427 */
4b9206ed 428 puts ("\nTimed out waiting for command\n");
c609719b
WD
429# ifdef CONFIG_RESET_TO_RETRY
430 /* Reinit board to run initialization code again */
431 do_reset (NULL, 0, 0, NULL);
432# else
433 return; /* retry autoboot */
434# endif
435 }
436#endif
437
438 if (len == -1)
4b9206ed 439 puts ("<INTERRUPT>\n");
c609719b 440 else
53071532 441 rc = run_command(lastcommand, flag);
c609719b
WD
442
443 if (rc <= 0) {
444 /* invalid command or not repeatable, forget it */
445 lastcommand[0] = 0;
446 }
447 }
6d0f6bcf 448#endif /*CONFIG_SYS_HUSH_PARSER*/
c609719b
WD
449}
450
6dd652fa
WD
451#ifdef CONFIG_BOOT_RETRY_TIME
452/***************************************************************************
19973b6a 453 * initialize command line timeout
6dd652fa
WD
454 */
455void init_cmd_timeout(void)
456{
457 char *s = getenv ("bootretry");
458
459 if (s != NULL)
b028f715 460 retry_time = (int)simple_strtol(s, NULL, 10);
6dd652fa
WD
461 else
462 retry_time = CONFIG_BOOT_RETRY_TIME;
463
464 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
465 retry_time = CONFIG_BOOT_RETRY_MIN;
466}
467
c609719b
WD
468/***************************************************************************
469 * reset command line timeout to retry_time seconds
470 */
c609719b
WD
471void reset_cmd_timeout(void)
472{
473 endtime = endtick(retry_time);
474}
475#endif
476
501090aa
WD
477#ifdef CONFIG_CMDLINE_EDITING
478
479/*
480 * cmdline-editing related codes from vivi.
481 * Author: Janghoon Lyu <nandy@mizi.com>
482 */
483
501090aa 484#define putnstr(str,n) do { \
dc4b0b38 485 printf ("%.*s", (int)n, str); \
501090aa 486 } while (0)
501090aa
WD
487
488#define CTL_CH(c) ((c) - 'a' + 1)
501090aa
WD
489#define CTL_BACKSPACE ('\b')
490#define DEL ((char)255)
491#define DEL7 ((char)127)
492#define CREAD_HIST_CHAR ('!')
493
494#define getcmd_putch(ch) putc(ch)
495#define getcmd_getch() getc()
496#define getcmd_cbeep() getcmd_putch('\a')
497
498#define HIST_MAX 20
8804ae3b 499#define HIST_SIZE CONFIG_SYS_CBSIZE
501090aa
WD
500
501static int hist_max = 0;
502static int hist_add_idx = 0;
503static int hist_cur = -1;
504unsigned hist_num = 0;
505
506char* hist_list[HIST_MAX];
6475b9f9 507char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
501090aa
WD
508
509#define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
510
511static void hist_init(void)
512{
513 int i;
514
515 hist_max = 0;
516 hist_add_idx = 0;
517 hist_cur = -1;
518 hist_num = 0;
519
520 for (i = 0; i < HIST_MAX; i++) {
521 hist_list[i] = hist_lines[i];
522 hist_list[i][0] = '\0';
523 }
524}
525
526static void cread_add_to_hist(char *line)
527{
528 strcpy(hist_list[hist_add_idx], line);
529
530 if (++hist_add_idx >= HIST_MAX)
531 hist_add_idx = 0;
532
533 if (hist_add_idx > hist_max)
534 hist_max = hist_add_idx;
535
536 hist_num++;
537}
538
539static char* hist_prev(void)
540{
541 char *ret;
542 int old_cur;
543
544 if (hist_cur < 0)
545 return NULL;
546
547 old_cur = hist_cur;
548 if (--hist_cur < 0)
549 hist_cur = hist_max;
550
551 if (hist_cur == hist_add_idx) {
552 hist_cur = old_cur;
553 ret = NULL;
554 } else
555 ret = hist_list[hist_cur];
556
557 return (ret);
558}
559
560static char* hist_next(void)
561{
562 char *ret;
563
564 if (hist_cur < 0)
565 return NULL;
566
567 if (hist_cur == hist_add_idx)
568 return NULL;
569
570 if (++hist_cur > hist_max)
571 hist_cur = 0;
572
573 if (hist_cur == hist_add_idx) {
574 ret = "";
575 } else
576 ret = hist_list[hist_cur];
577
578 return (ret);
579}
580
3ca9122f 581#ifndef CONFIG_CMDLINE_EDITING
501090aa
WD
582static void cread_print_hist_list(void)
583{
584 int i;
585 unsigned long n;
586
587 n = hist_num - hist_max;
588
589 i = hist_add_idx + 1;
590 while (1) {
591 if (i > hist_max)
592 i = 0;
593 if (i == hist_add_idx)
594 break;
595 printf("%s\n", hist_list[i]);
596 n++;
597 i++;
598 }
599}
3ca9122f 600#endif /* CONFIG_CMDLINE_EDITING */
501090aa
WD
601
602#define BEGINNING_OF_LINE() { \
603 while (num) { \
604 getcmd_putch(CTL_BACKSPACE); \
605 num--; \
606 } \
607}
608
609#define ERASE_TO_EOL() { \
610 if (num < eol_num) { \
8faba489
MF
611 printf("%*s", (int)(eol_num - num), ""); \
612 do { \
501090aa 613 getcmd_putch(CTL_BACKSPACE); \
8faba489 614 } while (--eol_num > num); \
501090aa
WD
615 } \
616}
617
618#define REFRESH_TO_EOL() { \
619 if (num < eol_num) { \
620 wlen = eol_num - num; \
621 putnstr(buf + num, wlen); \
622 num = eol_num; \
623 } \
624}
625
626static void cread_add_char(char ichar, int insert, unsigned long *num,
627 unsigned long *eol_num, char *buf, unsigned long len)
628{
629 unsigned long wlen;
630
631 /* room ??? */
632 if (insert || *num == *eol_num) {
633 if (*eol_num > len - 1) {
634 getcmd_cbeep();
635 return;
636 }
637 (*eol_num)++;
638 }
639
640 if (insert) {
641 wlen = *eol_num - *num;
642 if (wlen > 1) {
643 memmove(&buf[*num+1], &buf[*num], wlen-1);
644 }
645
646 buf[*num] = ichar;
647 putnstr(buf + *num, wlen);
648 (*num)++;
649 while (--wlen) {
650 getcmd_putch(CTL_BACKSPACE);
651 }
652 } else {
653 /* echo the character */
654 wlen = 1;
655 buf[*num] = ichar;
656 putnstr(buf + *num, wlen);
657 (*num)++;
658 }
659}
660
661static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
662 unsigned long *eol_num, char *buf, unsigned long len)
663{
664 while (strsize--) {
665 cread_add_char(*str, insert, num, eol_num, buf, len);
666 str++;
667 }
668}
669
9c348311
HS
670static int cread_line(const char *const prompt, char *buf, unsigned int *len,
671 int timeout)
501090aa
WD
672{
673 unsigned long num = 0;
674 unsigned long eol_num = 0;
501090aa
WD
675 unsigned long wlen;
676 char ichar;
677 int insert = 1;
678 int esc_len = 0;
501090aa 679 char esc_save[8];
ecc5500e 680 int init_len = strlen(buf);
9c348311 681 int first = 1;
ecc5500e
PT
682
683 if (init_len)
684 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
501090aa
WD
685
686 while (1) {
00ac50e3
AE
687#ifdef CONFIG_BOOT_RETRY_TIME
688 while (!tstc()) { /* while no incoming data */
689 if (retry_time >= 0 && get_ticks() > endtime)
690 return (-2); /* timed out */
30dc165a 691 WATCHDOG_RESET();
00ac50e3
AE
692 }
693#endif
9c348311
HS
694 if (first && timeout) {
695 uint64_t etime = endtick(timeout);
696
697 while (!tstc()) { /* while no incoming data */
698 if (get_ticks() >= etime)
699 return -2; /* timed out */
700 WATCHDOG_RESET();
701 }
702 first = 0;
703 }
00ac50e3 704
501090aa
WD
705 ichar = getcmd_getch();
706
707 if ((ichar == '\n') || (ichar == '\r')) {
dd9f06f0 708 putc('\n');
501090aa
WD
709 break;
710 }
711
712 /*
713 * handle standard linux xterm esc sequences for arrow key, etc.
714 */
715 if (esc_len != 0) {
716 if (esc_len == 1) {
717 if (ichar == '[') {
718 esc_save[esc_len] = ichar;
719 esc_len = 2;
720 } else {
721 cread_add_str(esc_save, esc_len, insert,
722 &num, &eol_num, buf, *len);
723 esc_len = 0;
724 }
725 continue;
726 }
727
728 switch (ichar) {
729
730 case 'D': /* <- key */
731 ichar = CTL_CH('b');
732 esc_len = 0;
733 break;
734 case 'C': /* -> key */
735 ichar = CTL_CH('f');
736 esc_len = 0;
737 break; /* pass off to ^F handler */
738 case 'H': /* Home key */
739 ichar = CTL_CH('a');
740 esc_len = 0;
741 break; /* pass off to ^A handler */
742 case 'A': /* up arrow */
743 ichar = CTL_CH('p');
744 esc_len = 0;
745 break; /* pass off to ^P handler */
746 case 'B': /* down arrow */
747 ichar = CTL_CH('n');
748 esc_len = 0;
749 break; /* pass off to ^N handler */
750 default:
751 esc_save[esc_len++] = ichar;
752 cread_add_str(esc_save, esc_len, insert,
753 &num, &eol_num, buf, *len);
754 esc_len = 0;
755 continue;
756 }
757 }
758
759 switch (ichar) {
760 case 0x1b:
761 if (esc_len == 0) {
762 esc_save[esc_len] = ichar;
763 esc_len = 1;
764 } else {
dd9f06f0 765 puts("impossible condition #876\n");
501090aa
WD
766 esc_len = 0;
767 }
768 break;
769
770 case CTL_CH('a'):
771 BEGINNING_OF_LINE();
772 break;
773 case CTL_CH('c'): /* ^C - break */
774 *buf = '\0'; /* discard input */
775 return (-1);
776 case CTL_CH('f'):
777 if (num < eol_num) {
778 getcmd_putch(buf[num]);
779 num++;
780 }
781 break;
782 case CTL_CH('b'):
783 if (num) {
784 getcmd_putch(CTL_BACKSPACE);
785 num--;
786 }
787 break;
788 case CTL_CH('d'):
789 if (num < eol_num) {
790 wlen = eol_num - num - 1;
791 if (wlen) {
792 memmove(&buf[num], &buf[num+1], wlen);
793 putnstr(buf + num, wlen);
794 }
795
796 getcmd_putch(' ');
797 do {
798 getcmd_putch(CTL_BACKSPACE);
799 } while (wlen--);
800 eol_num--;
801 }
802 break;
803 case CTL_CH('k'):
804 ERASE_TO_EOL();
805 break;
806 case CTL_CH('e'):
807 REFRESH_TO_EOL();
808 break;
809 case CTL_CH('o'):
810 insert = !insert;
811 break;
812 case CTL_CH('x'):
23d0baf9 813 case CTL_CH('u'):
501090aa
WD
814 BEGINNING_OF_LINE();
815 ERASE_TO_EOL();
816 break;
817 case DEL:
818 case DEL7:
819 case 8:
820 if (num) {
821 wlen = eol_num - num;
822 num--;
823 memmove(&buf[num], &buf[num+1], wlen);
824 getcmd_putch(CTL_BACKSPACE);
825 putnstr(buf + num, wlen);
826 getcmd_putch(' ');
827 do {
828 getcmd_putch(CTL_BACKSPACE);
829 } while (wlen--);
830 eol_num--;
831 }
832 break;
833 case CTL_CH('p'):
834 case CTL_CH('n'):
835 {
836 char * hline;
837
838 esc_len = 0;
839
840 if (ichar == CTL_CH('p'))
841 hline = hist_prev();
842 else
843 hline = hist_next();
844
845 if (!hline) {
846 getcmd_cbeep();
847 continue;
848 }
849
850 /* nuke the current line */
851 /* first, go home */
852 BEGINNING_OF_LINE();
853
854 /* erase to end of line */
855 ERASE_TO_EOL();
856
857 /* copy new line into place and display */
858 strcpy(buf, hline);
859 eol_num = strlen(buf);
860 REFRESH_TO_EOL();
861 continue;
862 }
23d0baf9
JCPV
863#ifdef CONFIG_AUTO_COMPLETE
864 case '\t': {
865 int num2, col;
866
867 /* do not autocomplete when in the middle */
868 if (num < eol_num) {
869 getcmd_cbeep();
870 break;
871 }
872
873 buf[num] = '\0';
874 col = strlen(prompt) + eol_num;
875 num2 = num;
876 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
877 col = num2 - num;
878 num += col;
879 eol_num += col;
880 }
881 break;
882 }
883#endif
501090aa
WD
884 default:
885 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
886 break;
887 }
888 }
889 *len = eol_num;
890 buf[eol_num] = '\0'; /* lose the newline */
891
892 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
893 cread_add_to_hist(buf);
894 hist_cur = hist_add_idx;
895
f9239438 896 return 0;
501090aa
WD
897}
898
899#endif /* CONFIG_CMDLINE_EDITING */
900
c609719b
WD
901/****************************************************************************/
902
903/*
904 * Prompt for input and read a line.
905 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
906 * time out when time goes past endtime (timebase time in ticks).
907 * Return: number of read characters
908 * -1 if break
909 * -2 if timed out
910 */
911int readline (const char *const prompt)
912{
ecc5500e
PT
913 /*
914 * If console_buffer isn't 0-length the user will be prompted to modify
915 * it instead of entering it from scratch as desired.
916 */
917 console_buffer[0] = '\0';
918
9c348311 919 return readline_into_buffer(prompt, console_buffer, 0);
6636b62a
JY
920}
921
922
9c348311 923int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
6636b62a
JY
924{
925 char *p = buffer;
501090aa 926#ifdef CONFIG_CMDLINE_EDITING
8804ae3b 927 unsigned int len = CONFIG_SYS_CBSIZE;
d8f961bb 928 int rc;
501090aa
WD
929 static int initted = 0;
930
597f6c26
JY
931 /*
932 * History uses a global array which is not
933 * writable until after relocation to RAM.
934 * Revert to non-history version if still
935 * running from flash.
936 */
937 if (gd->flags & GD_FLG_RELOC) {
938 if (!initted) {
939 hist_init();
940 initted = 1;
941 }
942
e491a71e
PT
943 if (prompt)
944 puts (prompt);
597f6c26 945
9c348311 946 rc = cread_line(prompt, p, &len, timeout);
597f6c26
JY
947 return rc < 0 ? rc : len;
948
949 } else {
950#endif /* CONFIG_CMDLINE_EDITING */
0ec59524 951 char * p_buf = p;
c609719b
WD
952 int n = 0; /* buffer index */
953 int plen = 0; /* prompt length */
954 int col; /* output column cnt */
955 char c;
956
957 /* print prompt */
958 if (prompt) {
959 plen = strlen (prompt);
960 puts (prompt);
961 }
962 col = plen;
963
964 for (;;) {
965#ifdef CONFIG_BOOT_RETRY_TIME
966 while (!tstc()) { /* while no incoming data */
967 if (retry_time >= 0 && get_ticks() > endtime)
968 return (-2); /* timed out */
30dc165a 969 WATCHDOG_RESET();
c609719b
WD
970 }
971#endif
972 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
973
974#ifdef CONFIG_SHOW_ACTIVITY
975 while (!tstc()) {
976 extern void show_activity(int arg);
977 show_activity(0);
30dc165a 978 WATCHDOG_RESET();
c609719b
WD
979 }
980#endif
981 c = getc();
982
983 /*
984 * Special character handling
985 */
986 switch (c) {
987 case '\r': /* Enter */
988 case '\n':
989 *p = '\0';
990 puts ("\r\n");
6636b62a 991 return (p - p_buf);
c609719b 992
27aa8186
WD
993 case '\0': /* nul */
994 continue;
995
c609719b 996 case 0x03: /* ^C - break */
6636b62a 997 p_buf[0] = '\0'; /* discard input */
c609719b
WD
998 return (-1);
999
1000 case 0x15: /* ^U - erase line */
1001 while (col > plen) {
1002 puts (erase_seq);
1003 --col;
1004 }
6636b62a 1005 p = p_buf;
c609719b
WD
1006 n = 0;
1007 continue;
1008
1636d1c8 1009 case 0x17: /* ^W - erase word */
6636b62a 1010 p=delete_char(p_buf, p, &col, &n, plen);
c609719b 1011 while ((n > 0) && (*p != ' ')) {
6636b62a 1012 p=delete_char(p_buf, p, &col, &n, plen);
c609719b
WD
1013 }
1014 continue;
1015
1016 case 0x08: /* ^H - backspace */
1017 case 0x7F: /* DEL - backspace */
6636b62a 1018 p=delete_char(p_buf, p, &col, &n, plen);
c609719b
WD
1019 continue;
1020
1021 default:
1022 /*
1023 * Must be a normal character then
1024 */
6d0f6bcf 1025 if (n < CONFIG_SYS_CBSIZE-2) {
c609719b 1026 if (c == '\t') { /* expand TABs */
04a85b3b
WD
1027#ifdef CONFIG_AUTO_COMPLETE
1028 /* if auto completion triggered just continue */
1029 *p = '\0';
1030 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
6636b62a 1031 p = p_buf + n; /* reset */
04a85b3b
WD
1032 continue;
1033 }
1034#endif
c609719b
WD
1035 puts (tab_seq+(col&07));
1036 col += 8 - (col&07);
1037 } else {
1038 ++col; /* echo input */
1039 putc (c);
1040 }
1041 *p++ = c;
1042 ++n;
1043 } else { /* Buffer full */
1044 putc ('\a');
1045 }
1046 }
1047 }
597f6c26
JY
1048#ifdef CONFIG_CMDLINE_EDITING
1049 }
1050#endif
c609719b
WD
1051}
1052
1053/****************************************************************************/
1054
1055static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1056{
1057 char *s;
1058
1059 if (*np == 0) {
1060 return (p);
1061 }
1062
1063 if (*(--p) == '\t') { /* will retype the whole line */
1064 while (*colp > plen) {
1065 puts (erase_seq);
1066 (*colp)--;
1067 }
1068 for (s=buffer; s<p; ++s) {
1069 if (*s == '\t') {
1070 puts (tab_seq+((*colp) & 07));
1071 *colp += 8 - ((*colp) & 07);
1072 } else {
1073 ++(*colp);
1074 putc (*s);
1075 }
1076 }
1077 } else {
1078 puts (erase_seq);
1079 (*colp)--;
1080 }
1081 (*np)--;
1082 return (p);
1083}
1084
1085/****************************************************************************/
1086
1087int parse_line (char *line, char *argv[])
1088{
1089 int nargs = 0;
1090
1091#ifdef DEBUG_PARSER
1092 printf ("parse_line: \"%s\"\n", line);
1093#endif
6d0f6bcf 1094 while (nargs < CONFIG_SYS_MAXARGS) {
c609719b
WD
1095
1096 /* skip any white space */
4d91a6ec 1097 while (isblank(*line))
c609719b 1098 ++line;
c609719b
WD
1099
1100 if (*line == '\0') { /* end of line, no more args */
1101 argv[nargs] = NULL;
1102#ifdef DEBUG_PARSER
1103 printf ("parse_line: nargs=%d\n", nargs);
1104#endif
1105 return (nargs);
1106 }
1107
1108 argv[nargs++] = line; /* begin of argument string */
1109
1110 /* find end of string */
4d91a6ec 1111 while (*line && !isblank(*line))
c609719b 1112 ++line;
c609719b
WD
1113
1114 if (*line == '\0') { /* end of line, no more args */
1115 argv[nargs] = NULL;
1116#ifdef DEBUG_PARSER
1117 printf ("parse_line: nargs=%d\n", nargs);
1118#endif
1119 return (nargs);
1120 }
1121
1122 *line++ = '\0'; /* terminate current arg */
1123 }
1124
6d0f6bcf 1125 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
c609719b
WD
1126
1127#ifdef DEBUG_PARSER
1128 printf ("parse_line: nargs=%d\n", nargs);
1129#endif
1130 return (nargs);
1131}
1132
1133/****************************************************************************/
1134
7fed89e0 1135#ifndef CONFIG_SYS_HUSH_PARSER
c609719b
WD
1136static void process_macros (const char *input, char *output)
1137{
1138 char c, prev;
1139 const char *varname_start = NULL;
19973b6a 1140 int inputcnt = strlen (input);
6d0f6bcf 1141 int outputcnt = CONFIG_SYS_CBSIZE;
19973b6a
WD
1142 int state = 0; /* 0 = waiting for '$' */
1143
1144 /* 1 = waiting for '(' or '{' */
1145 /* 2 = waiting for ')' or '}' */
1146 /* 3 = waiting for ''' */
c609719b
WD
1147#ifdef DEBUG_PARSER
1148 char *output_start = output;
1149
19973b6a
WD
1150 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1151 input);
c609719b
WD
1152#endif
1153
19973b6a 1154 prev = '\0'; /* previous character */
c609719b
WD
1155
1156 while (inputcnt && outputcnt) {
8bde7f77 1157 c = *input++;
19973b6a
WD
1158 inputcnt--;
1159
1160 if (state != 3) {
1161 /* remove one level of escape characters */
1162 if ((c == '\\') && (prev != '\\')) {
1163 if (inputcnt-- == 0)
1164 break;
1165 prev = c;
1166 c = *input++;
1167 }
c609719b 1168 }
19973b6a
WD
1169
1170 switch (state) {
1171 case 0: /* Waiting for (unescaped) $ */
1172 if ((c == '\'') && (prev != '\\')) {
1173 state = 3;
1174 break;
1175 }
1176 if ((c == '$') && (prev != '\\')) {
1177 state++;
1178 } else {
c609719b
WD
1179 *(output++) = c;
1180 outputcnt--;
1181 }
19973b6a
WD
1182 break;
1183 case 1: /* Waiting for ( */
1184 if (c == '(' || c == '{') {
1185 state++;
1186 varname_start = input;
1187 } else {
1188 state = 0;
1189 *(output++) = '$';
1190 outputcnt--;
c609719b 1191
19973b6a
WD
1192 if (outputcnt) {
1193 *(output++) = c;
c609719b
WD
1194 outputcnt--;
1195 }
19973b6a
WD
1196 }
1197 break;
1198 case 2: /* Waiting for ) */
1199 if (c == ')' || c == '}') {
1200 int i;
6d0f6bcf 1201 char envname[CONFIG_SYS_CBSIZE], *envval;
19973b6a
WD
1202 int envcnt = input - varname_start - 1; /* Varname # of chars */
1203
1204 /* Get the varname */
1205 for (i = 0; i < envcnt; i++) {
1206 envname[i] = varname_start[i];
1207 }
1208 envname[i] = 0;
1209
1210 /* Get its value */
1211 envval = getenv (envname);
1212
1213 /* Copy into the line if it exists */
1214 if (envval != NULL)
1215 while ((*envval) && outputcnt) {
1216 *(output++) = *(envval++);
1217 outputcnt--;
1218 }
1219 /* Look for another '$' */
1220 state = 0;
1221 }
1222 break;
1223 case 3: /* Waiting for ' */
1224 if ((c == '\'') && (prev != '\\')) {
1225 state = 0;
1226 } else {
1227 *(output++) = c;
1228 outputcnt--;
1229 }
1230 break;
a25f862b 1231 }
19973b6a 1232 prev = c;
c609719b
WD
1233 }
1234
1235 if (outputcnt)
1236 *output = 0;
9160b96f
BS
1237 else
1238 *(output - 1) = 0;
c609719b
WD
1239
1240#ifdef DEBUG_PARSER
1241 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
19973b6a 1242 strlen (output_start), output_start);
c609719b
WD
1243#endif
1244}
1245
1246/****************************************************************************
1247 * returns:
1248 * 1 - command executed, repeatable
1249 * 0 - command executed but not repeatable, interrupted commands are
1250 * always considered not repeatable
1251 * -1 - not executed (unrecognized, bootd recursion or too many args)
6d0f6bcf 1252 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
c609719b
WD
1253 * considered unrecognized)
1254 *
1255 * WARNING:
1256 *
1257 * We must create a temporary copy of the command since the command we get
1258 * may be the result from getenv(), which returns a pointer directly to
1259 * the environment data, which may change magicly when the command we run
1260 * creates or modifies environment variables (like "bootp" does).
1261 */
53071532 1262static int builtin_run_command(const char *cmd, int flag)
c609719b 1263{
6d0f6bcf 1264 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
c609719b
WD
1265 char *token; /* start of token in cmdbuf */
1266 char *sep; /* end of token (separator) in cmdbuf */
6d0f6bcf 1267 char finaltoken[CONFIG_SYS_CBSIZE];
c609719b 1268 char *str = cmdbuf;
6d0f6bcf 1269 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
f07771cc 1270 int argc, inquotes;
c609719b 1271 int repeatable = 1;
f07771cc 1272 int rc = 0;
c609719b
WD
1273
1274#ifdef DEBUG_PARSER
1275 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1276 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1277 puts ("\"\n");
1278#endif
1279
1280 clear_ctrlc(); /* forget any previous Control C */
1281
1282 if (!cmd || !*cmd) {
1283 return -1; /* empty command */
1284 }
1285
6d0f6bcf 1286 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
c609719b
WD
1287 puts ("## Command too long!\n");
1288 return -1;
1289 }
1290
1291 strcpy (cmdbuf, cmd);
1292
1293 /* Process separators and check for invalid
1294 * repeatable commands
1295 */
1296
1297#ifdef DEBUG_PARSER
1298 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1299#endif
1300 while (*str) {
1301
1302 /*
1303 * Find separator, or string end
1304 * Allow simple escape of ';' by writing "\;"
1305 */
a25f862b
WD
1306 for (inquotes = 0, sep = str; *sep; sep++) {
1307 if ((*sep=='\'') &&
1308 (*(sep-1) != '\\'))
1309 inquotes=!inquotes;
1310
1311 if (!inquotes &&
1312 (*sep == ';') && /* separator */
c609719b
WD
1313 ( sep != str) && /* past string start */
1314 (*(sep-1) != '\\')) /* and NOT escaped */
1315 break;
1316 }
1317
1318 /*
1319 * Limit the token to data between separators
1320 */
1321 token = str;
1322 if (*sep) {
1323 str = sep + 1; /* start of command for next pass */
1324 *sep = '\0';
1325 }
1326 else
1327 str = sep; /* no more commands for next pass */
1328#ifdef DEBUG_PARSER
1329 printf ("token: \"%s\"\n", token);
1330#endif
1331
1332 /* find macros in this token and replace them */
1333 process_macros (token, finaltoken);
1334
1335 /* Extract arguments */
1264b405
WD
1336 if ((argc = parse_line (finaltoken, argv)) == 0) {
1337 rc = -1; /* no command at all */
1338 continue;
1339 }
c609719b 1340
9d12d5d4 1341 rc = cmd_process(flag, argc, argv, &repeatable);
c609719b
WD
1342
1343 /* Did the user stop this? */
1344 if (had_ctrlc ())
5afb2020 1345 return -1; /* if stopped then not repeatable */
c609719b
WD
1346 }
1347
f07771cc 1348 return rc ? rc : repeatable;
c609719b 1349}
7fed89e0 1350#endif
c609719b 1351
53071532
SG
1352/*
1353 * Run a command using the selected parser.
1354 *
1355 * @param cmd Command to run
1356 * @param flag Execution flags (CMD_FLAG_...)
1357 * @return 0 on success, or != 0 on error.
1358 */
1359int run_command(const char *cmd, int flag)
1360{
1361#ifndef CONFIG_SYS_HUSH_PARSER
1362 /*
1363 * builtin_run_command can return 0 or 1 for success, so clean up
1364 * its result.
1365 */
1366 if (builtin_run_command(cmd, flag) == -1)
1367 return 1;
1368
1369 return 0;
1370#else
1371 return parse_string_outer(cmd,
1372 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP);
1373#endif
1374}
1375
c609719b
WD
1376/****************************************************************************/
1377
c3517f91 1378#if defined(CONFIG_CMD_RUN)
54841ab5 1379int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
c609719b
WD
1380{
1381 int i;
c609719b 1382
47e26b1b
WD
1383 if (argc < 2)
1384 return cmd_usage(cmdtp);
c609719b
WD
1385
1386 for (i=1; i<argc; ++i) {
3e38691e
WD
1387 char *arg;
1388
1389 if ((arg = getenv (argv[i])) == NULL) {
1390 printf ("## Error: \"%s\" not defined\n", argv[i]);
1391 return 1;
1392 }
c8a2079e 1393
009dde19 1394 if (run_command(arg, flag) != 0)
3e38691e 1395 return 1;
c609719b 1396 }
3e38691e 1397 return 0;
c609719b 1398}
90253178 1399#endif