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