blob: 797b245c39b68e446ca3e9e2bb342b27b3ccc2af [file] [log] [blame]
wdenkc6097192002-11-03 00:24:07 +00001/*
2 * (C) Copyright 2000
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
Wolfgang Denk501090a2006-07-21 11:33:45 +02005 * Add to readline cmdline-editing by
6 * (C) Copyright 2005
7 * JinHua Luo, GuangDong Linux Center, <luo.jinhua@gd-linux.com>
8 *
wdenkc6097192002-11-03 00:24:07 +00009 * 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
wdenka6c7ad22002-12-03 21:28:10 +000028/* #define DEBUG */
29
wdenkc6097192002-11-03 00:24:07 +000030#include <common.h>
31#include <watchdog.h>
32#include <command.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020033#include <version.h>
Wolfgang Denkd9631ec2005-09-30 15:18:23 +020034#ifdef CONFIG_MODEM_SUPPORT
35#include <malloc.h> /* for free() prototype */
36#endif
wdenkc6097192002-11-03 00:24:07 +000037
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020038#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +000039#include <hush.h>
40#endif
41
wdenkbdccc4f2003-08-05 17:43:17 +000042#include <post.h>
Jason Hobbs4d91a6e2011-08-23 11:06:54 +000043#include <linux/ctype.h>
Heiko Schocher317d6c52012-01-16 21:13:35 +000044#include <menu.h>
wdenkbdccc4f2003-08-05 17:43:17 +000045
James Yang597f6c22008-05-05 10:22:53 -050046#if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020047DECLARE_GLOBAL_DATA_PTR;
48#endif
49
Heiko Schocherfad63402007-07-13 09:54:17 +020050/*
51 * Board-specific Platform code can reimplement show_boot_progress () if needed
52 */
53void inline __show_boot_progress (int val) {}
Emil Medve5e2c08c2009-05-12 13:48:32 -050054void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
Heiko Schocherfad63402007-07-13 09:54:17 +020055
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020056#if defined(CONFIG_UPDATE_TFTP)
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +000057int update_tftp (ulong addr);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020058#endif /* CONFIG_UPDATE_TFTP */
wdenk8bde7f72003-06-27 21:31:46 +000059
wdenkc6097192002-11-03 00:24:07 +000060#define MAX_DELAY_STOP_STR 32
61
wdenkc6097192002-11-03 00:24:07 +000062#undef DEBUG_PARSER
63
John Schmoller6475b9f2010-03-12 09:49:23 -060064char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
wdenkc6097192002-11-03 00:24:07 +000065
Stefan Roese3ca91222006-07-27 16:11:19 +020066static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
Mike Frysinger82359ae2010-12-22 09:40:45 -050067static const char erase_seq[] = "\b \b"; /* erase sequence */
68static const char tab_seq[] = " "; /* used to expand TABs */
wdenkc6097192002-11-03 00:24:07 +000069
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.
Jason Hobbsc8a20792011-08-31 05:37:24 +000088 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
wdenkc6097192002-11-03 00:24:07 +000089 */
90#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
91# if defined(CONFIG_AUTOBOOT_KEYED)
Jason Hobbsb41bc5a2011-08-23 11:06:50 +000092#ifndef CONFIG_MENU
93static inline
94#endif
95int abortboot(int bootdelay)
wdenkc6097192002-11-03 00:24:07 +000096{
97 int abort = 0;
98 uint64_t etime = endtick(bootdelay);
Wolfgang Denk19973b62006-10-28 00:38:39 +020099 struct {
wdenkc6097192002-11-03 00:24:07 +0000100 char* str;
101 u_int len;
102 int retry;
103 }
Wolfgang Denk19973b62006-10-28 00:38:39 +0200104 delaykey [] = {
wdenkc6097192002-11-03 00:24:07 +0000105 { 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
Stefan Roesef2302d42008-08-06 14:05:38 +0200117 printf(CONFIG_AUTOBOOT_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000118# 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 */
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100156 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
wdenkc6097192002-11-03 00:24:07 +0000169 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,
wdenk8bde7f72003-06-27 21:31:46 +0000173 delaykey[i].str,
wdenkc6097192002-11-03 00:24:07 +0000174 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 }
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100188 } while (!abort && get_ticks() <= etime);
wdenkc6097192002-11-03 00:24:07 +0000189
wdenkc6097192002-11-03 00:24:07 +0000190# if DEBUG_BOOTKEYS
191 if (!abort)
Ladislav Michlada4d402007-04-25 16:01:26 +0200192 puts("key timeout\n");
wdenkc6097192002-11-03 00:24:07 +0000193# endif
194
dzu8cb81432003-10-24 13:14:45 +0000195#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200196 if (abort)
197 gd->flags &= ~GD_FLG_SILENT;
dzu8cb81432003-10-24 13:14:45 +0000198#endif
199
wdenkc6097192002-11-03 00:24:07 +0000200 return abort;
201}
202
203# else /* !defined(CONFIG_AUTOBOOT_KEYED) */
204
wdenkc7de8292002-11-19 11:04:11 +0000205#ifdef CONFIG_MENUKEY
206static int menukey = 0;
207#endif
208
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000209#ifndef CONFIG_MENU
210static inline
211#endif
212int abortboot(int bootdelay)
wdenkc6097192002-11-03 00:24:07 +0000213{
214 int abort = 0;
215
wdenkc7de8292002-11-19 11:04:11 +0000216#ifdef CONFIG_MENUPROMPT
Stefan Roesef2302d42008-08-06 14:05:38 +0200217 printf(CONFIG_MENUPROMPT);
wdenkc7de8292002-11-19 11:04:11 +0000218#else
wdenkc6097192002-11-03 00:24:07 +0000219 printf("Hit any key to stop autoboot: %2d ", bootdelay);
wdenkc7de8292002-11-19 11:04:11 +0000220#endif
wdenkc6097192002-11-03 00:24:07 +0000221
222#if defined CONFIG_ZERO_BOOTDELAY_CHECK
wdenk8bde7f72003-06-27 21:31:46 +0000223 /*
224 * Check if key already pressed
225 * Don't check if bootdelay < 0
226 */
wdenkc6097192002-11-03 00:24:07 +0000227 if (bootdelay >= 0) {
228 if (tstc()) { /* we got a key press */
229 (void) getc(); /* consume input */
wdenk4b9206e2004-03-23 22:14:11 +0000230 puts ("\b\b\b 0");
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200231 abort = 1; /* don't auto boot */
wdenkc6097192002-11-03 00:24:07 +0000232 }
wdenk8bde7f72003-06-27 21:31:46 +0000233 }
wdenkc6097192002-11-03 00:24:07 +0000234#endif
235
wdenkf72da342003-10-10 10:05:42 +0000236 while ((bootdelay > 0) && (!abort)) {
wdenkc6097192002-11-03 00:24:07 +0000237 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 */
wdenkc7de8292002-11-19 11:04:11 +0000245# ifdef CONFIG_MENUKEY
246 menukey = getc();
247# else
wdenkc6097192002-11-03 00:24:07 +0000248 (void) getc(); /* consume input */
wdenkc7de8292002-11-19 11:04:11 +0000249# endif
wdenkc6097192002-11-03 00:24:07 +0000250 break;
251 }
Ladislav Michlada4d402007-04-25 16:01:26 +0200252 udelay(10000);
wdenkc6097192002-11-03 00:24:07 +0000253 }
254
Ladislav Michlada4d402007-04-25 16:01:26 +0200255 printf("\b\b\b%2d ", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000256 }
257
Ladislav Michlada4d402007-04-25 16:01:26 +0200258 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000259
wdenkf72da342003-10-10 10:05:42 +0000260#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200261 if (abort)
262 gd->flags &= ~GD_FLG_SILENT;
wdenkf72da342003-10-10 10:05:42 +0000263#endif
264
wdenkc6097192002-11-03 00:24:07 +0000265 return abort;
266}
267# endif /* CONFIG_AUTOBOOT_KEYED */
268#endif /* CONFIG_BOOTDELAY >= 0 */
269
Jason Hobbsc8a20792011-08-31 05:37:24 +0000270/*
271 * Return 0 on success, or != 0 on error.
272 */
Simon Glass009dde12012-02-14 19:59:20 +0000273int run_command(const char *cmd, int flag)
Jason Hobbsc8a20792011-08-31 05:37:24 +0000274{
275#ifndef CONFIG_SYS_HUSH_PARSER
276 /*
Simon Glassf47360a2012-02-14 19:59:19 +0000277 * builtin_run_command can return 0 or 1 for success, so clean up
278 * its result.
Jason Hobbsc8a20792011-08-31 05:37:24 +0000279 */
Simon Glassf47360a2012-02-14 19:59:19 +0000280 if (builtin_run_command(cmd, flag) == -1)
Jason Hobbsc8a20792011-08-31 05:37:24 +0000281 return 1;
282
283 return 0;
284#else
285 return parse_string_outer(cmd,
286 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP);
287#endif
288}
289
wdenkc6097192002-11-03 00:24:07 +0000290/****************************************************************************/
291
292void main_loop (void)
293{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200294#ifndef CONFIG_SYS_HUSH_PARSER
295 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
wdenkc6097192002-11-03 00:24:07 +0000296 int len;
297 int rc = 1;
298 int flag;
299#endif
300
301#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
302 char *s;
303 int bootdelay;
304#endif
305#ifdef CONFIG_PREBOOT
306 char *p;
307#endif
wdenkbdccc4f2003-08-05 17:43:17 +0000308#ifdef CONFIG_BOOTCOUNT_LIMIT
309 unsigned long bootcount = 0;
310 unsigned long bootlimit = 0;
311 char *bcs;
312 char bcs_set[16];
313#endif /* CONFIG_BOOTCOUNT_LIMIT */
wdenkc6097192002-11-03 00:24:07 +0000314
wdenkbdccc4f2003-08-05 17:43:17 +0000315#ifdef CONFIG_BOOTCOUNT_LIMIT
316 bootcount = bootcount_load();
317 bootcount++;
318 bootcount_store (bootcount);
319 sprintf (bcs_set, "%lu", bootcount);
320 setenv ("bootcount", bcs_set);
321 bcs = getenv ("bootlimit");
322 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
323#endif /* CONFIG_BOOTCOUNT_LIMIT */
324
wdenkc6097192002-11-03 00:24:07 +0000325#ifdef CONFIG_MODEM_SUPPORT
326 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
327 if (do_mdm_init) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200328 char *str = strdup(getenv("mdm_cmd"));
wdenkc6097192002-11-03 00:24:07 +0000329 setenv ("preboot", str); /* set or delete definition */
330 if (str != NULL)
331 free (str);
332 mdm_init(); /* wait for modem connection */
333 }
334#endif /* CONFIG_MODEM_SUPPORT */
335
stroese05875972003-04-04 15:44:49 +0000336#ifdef CONFIG_VERSION_VARIABLE
337 {
stroese155cb012003-07-11 08:00:33 +0000338 setenv ("ver", version_string); /* set version variable */
stroese05875972003-04-04 15:44:49 +0000339 }
340#endif /* CONFIG_VERSION_VARIABLE */
341
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000343 u_boot_hush_start ();
344#endif
345
Heiko Schocher81473f62008-10-15 09:40:28 +0200346#if defined(CONFIG_HUSH_INIT_VAR)
347 hush_init_var ();
348#endif
349
wdenkc6097192002-11-03 00:24:07 +0000350#ifdef CONFIG_PREBOOT
351 if ((p = getenv ("preboot")) != NULL) {
352# ifdef CONFIG_AUTOBOOT_KEYED
353 int prev = disable_ctrlc(1); /* disable Control C checking */
354# endif
355
Simon Glass009dde12012-02-14 19:59:20 +0000356 run_command(p, 0);
wdenkc6097192002-11-03 00:24:07 +0000357
358# ifdef CONFIG_AUTOBOOT_KEYED
359 disable_ctrlc(prev); /* restore Control C checking */
360# endif
361 }
362#endif /* CONFIG_PREBOOT */
363
Wolfgang Denk143cd212010-03-11 23:56:03 +0100364#if defined(CONFIG_UPDATE_TFTP)
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000365 update_tftp (0UL);
Wolfgang Denk143cd212010-03-11 23:56:03 +0100366#endif /* CONFIG_UPDATE_TFTP */
367
wdenkc6097192002-11-03 00:24:07 +0000368#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
369 s = getenv ("bootdelay");
370 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
371
wdenka6c7ad22002-12-03 21:28:10 +0000372 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000373
Heiko Schocher317d6c52012-01-16 21:13:35 +0000374#if defined(CONFIG_MENU_SHOW)
375 bootdelay = menu_show(bootdelay);
376#endif
wdenkc6097192002-11-03 00:24:07 +0000377# ifdef CONFIG_BOOT_RETRY_TIME
wdenk6dd652f2003-06-19 23:40:20 +0000378 init_cmd_timeout ();
wdenkc6097192002-11-03 00:24:07 +0000379# endif /* CONFIG_BOOT_RETRY_TIME */
380
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100381#ifdef CONFIG_POST
382 if (gd->flags & GD_FLG_POSTFAIL) {
383 s = getenv("failbootcmd");
384 }
385 else
386#endif /* CONFIG_POST */
wdenkbdccc4f2003-08-05 17:43:17 +0000387#ifdef CONFIG_BOOTCOUNT_LIMIT
388 if (bootlimit && (bootcount > bootlimit)) {
389 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
390 (unsigned)bootlimit);
391 s = getenv ("altbootcmd");
392 }
393 else
394#endif /* CONFIG_BOOTCOUNT_LIMIT */
395 s = getenv ("bootcmd");
wdenka6c7ad22002-12-03 21:28:10 +0000396
397 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
398
wdenkc6097192002-11-03 00:24:07 +0000399 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
400# ifdef CONFIG_AUTOBOOT_KEYED
401 int prev = disable_ctrlc(1); /* disable Control C checking */
402# endif
403
Simon Glass009dde12012-02-14 19:59:20 +0000404 run_command(s, 0);
wdenkc6097192002-11-03 00:24:07 +0000405
406# ifdef CONFIG_AUTOBOOT_KEYED
407 disable_ctrlc(prev); /* restore Control C checking */
408# endif
409 }
wdenkc7de8292002-11-19 11:04:11 +0000410
411# ifdef CONFIG_MENUKEY
wdenka6c7ad22002-12-03 21:28:10 +0000412 if (menukey == CONFIG_MENUKEY) {
Jason Hobbs370d1e32011-06-23 08:27:30 +0000413 s = getenv("menucmd");
Jason Hobbsc8a20792011-08-31 05:37:24 +0000414 if (s)
Simon Glass009dde12012-02-14 19:59:20 +0000415 run_command(s, 0);
wdenkc7de8292002-11-19 11:04:11 +0000416 }
417#endif /* CONFIG_MENUKEY */
Wolfgang Denk953b7e62010-06-13 18:28:54 +0200418#endif /* CONFIG_BOOTDELAY */
wdenkc7de8292002-11-19 11:04:11 +0000419
wdenkc6097192002-11-03 00:24:07 +0000420 /*
421 * Main Loop for Monitor Command Processing
422 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200423#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000424 parse_file_outer();
425 /* This point is never reached */
426 for (;;);
427#else
428 for (;;) {
429#ifdef CONFIG_BOOT_RETRY_TIME
430 if (rc >= 0) {
431 /* Saw enough of a valid command to
432 * restart the timeout.
433 */
434 reset_cmd_timeout();
435 }
436#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200437 len = readline (CONFIG_SYS_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000438
439 flag = 0; /* assume no special flags for now */
440 if (len > 0)
441 strcpy (lastcommand, console_buffer);
442 else if (len == 0)
443 flag |= CMD_FLAG_REPEAT;
444#ifdef CONFIG_BOOT_RETRY_TIME
445 else if (len == -2) {
446 /* -2 means timed out, retry autoboot
447 */
wdenk4b9206e2004-03-23 22:14:11 +0000448 puts ("\nTimed out waiting for command\n");
wdenkc6097192002-11-03 00:24:07 +0000449# ifdef CONFIG_RESET_TO_RETRY
450 /* Reinit board to run initialization code again */
451 do_reset (NULL, 0, 0, NULL);
452# else
453 return; /* retry autoboot */
454# endif
455 }
456#endif
457
458 if (len == -1)
wdenk4b9206e2004-03-23 22:14:11 +0000459 puts ("<INTERRUPT>\n");
wdenkc6097192002-11-03 00:24:07 +0000460 else
Simon Glassf47360a2012-02-14 19:59:19 +0000461 rc = builtin_run_command(lastcommand, flag);
wdenkc6097192002-11-03 00:24:07 +0000462
463 if (rc <= 0) {
464 /* invalid command or not repeatable, forget it */
465 lastcommand[0] = 0;
466 }
467 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200468#endif /*CONFIG_SYS_HUSH_PARSER*/
wdenkc6097192002-11-03 00:24:07 +0000469}
470
wdenk6dd652f2003-06-19 23:40:20 +0000471#ifdef CONFIG_BOOT_RETRY_TIME
472/***************************************************************************
Wolfgang Denk19973b62006-10-28 00:38:39 +0200473 * initialize command line timeout
wdenk6dd652f2003-06-19 23:40:20 +0000474 */
475void init_cmd_timeout(void)
476{
477 char *s = getenv ("bootretry");
478
479 if (s != NULL)
wdenkb028f712003-12-07 21:39:28 +0000480 retry_time = (int)simple_strtol(s, NULL, 10);
wdenk6dd652f2003-06-19 23:40:20 +0000481 else
482 retry_time = CONFIG_BOOT_RETRY_TIME;
483
484 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
485 retry_time = CONFIG_BOOT_RETRY_MIN;
486}
487
wdenkc6097192002-11-03 00:24:07 +0000488/***************************************************************************
489 * reset command line timeout to retry_time seconds
490 */
wdenkc6097192002-11-03 00:24:07 +0000491void reset_cmd_timeout(void)
492{
493 endtime = endtick(retry_time);
494}
495#endif
496
Wolfgang Denk501090a2006-07-21 11:33:45 +0200497#ifdef CONFIG_CMDLINE_EDITING
498
499/*
500 * cmdline-editing related codes from vivi.
501 * Author: Janghoon Lyu <nandy@mizi.com>
502 */
503
Wolfgang Denk501090a2006-07-21 11:33:45 +0200504#define putnstr(str,n) do { \
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700505 printf ("%.*s", (int)n, str); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200506 } while (0)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200507
508#define CTL_CH(c) ((c) - 'a' + 1)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200509#define CTL_BACKSPACE ('\b')
510#define DEL ((char)255)
511#define DEL7 ((char)127)
512#define CREAD_HIST_CHAR ('!')
513
514#define getcmd_putch(ch) putc(ch)
515#define getcmd_getch() getc()
516#define getcmd_cbeep() getcmd_putch('\a')
517
518#define HIST_MAX 20
Peter Tyser8804ae32010-09-29 13:30:56 -0500519#define HIST_SIZE CONFIG_SYS_CBSIZE
Wolfgang Denk501090a2006-07-21 11:33:45 +0200520
521static int hist_max = 0;
522static int hist_add_idx = 0;
523static int hist_cur = -1;
524unsigned hist_num = 0;
525
526char* hist_list[HIST_MAX];
John Schmoller6475b9f2010-03-12 09:49:23 -0600527char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200528
529#define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
530
531static void hist_init(void)
532{
533 int i;
534
535 hist_max = 0;
536 hist_add_idx = 0;
537 hist_cur = -1;
538 hist_num = 0;
539
540 for (i = 0; i < HIST_MAX; i++) {
541 hist_list[i] = hist_lines[i];
542 hist_list[i][0] = '\0';
543 }
544}
545
546static void cread_add_to_hist(char *line)
547{
548 strcpy(hist_list[hist_add_idx], line);
549
550 if (++hist_add_idx >= HIST_MAX)
551 hist_add_idx = 0;
552
553 if (hist_add_idx > hist_max)
554 hist_max = hist_add_idx;
555
556 hist_num++;
557}
558
559static char* hist_prev(void)
560{
561 char *ret;
562 int old_cur;
563
564 if (hist_cur < 0)
565 return NULL;
566
567 old_cur = hist_cur;
568 if (--hist_cur < 0)
569 hist_cur = hist_max;
570
571 if (hist_cur == hist_add_idx) {
572 hist_cur = old_cur;
573 ret = NULL;
574 } else
575 ret = hist_list[hist_cur];
576
577 return (ret);
578}
579
580static char* hist_next(void)
581{
582 char *ret;
583
584 if (hist_cur < 0)
585 return NULL;
586
587 if (hist_cur == hist_add_idx)
588 return NULL;
589
590 if (++hist_cur > hist_max)
591 hist_cur = 0;
592
593 if (hist_cur == hist_add_idx) {
594 ret = "";
595 } else
596 ret = hist_list[hist_cur];
597
598 return (ret);
599}
600
Stefan Roese3ca91222006-07-27 16:11:19 +0200601#ifndef CONFIG_CMDLINE_EDITING
Wolfgang Denk501090a2006-07-21 11:33:45 +0200602static void cread_print_hist_list(void)
603{
604 int i;
605 unsigned long n;
606
607 n = hist_num - hist_max;
608
609 i = hist_add_idx + 1;
610 while (1) {
611 if (i > hist_max)
612 i = 0;
613 if (i == hist_add_idx)
614 break;
615 printf("%s\n", hist_list[i]);
616 n++;
617 i++;
618 }
619}
Stefan Roese3ca91222006-07-27 16:11:19 +0200620#endif /* CONFIG_CMDLINE_EDITING */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200621
622#define BEGINNING_OF_LINE() { \
623 while (num) { \
624 getcmd_putch(CTL_BACKSPACE); \
625 num--; \
626 } \
627}
628
629#define ERASE_TO_EOL() { \
630 if (num < eol_num) { \
Mike Frysinger8faba482010-07-23 05:28:15 -0400631 printf("%*s", (int)(eol_num - num), ""); \
632 do { \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200633 getcmd_putch(CTL_BACKSPACE); \
Mike Frysinger8faba482010-07-23 05:28:15 -0400634 } while (--eol_num > num); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200635 } \
636}
637
638#define REFRESH_TO_EOL() { \
639 if (num < eol_num) { \
640 wlen = eol_num - num; \
641 putnstr(buf + num, wlen); \
642 num = eol_num; \
643 } \
644}
645
646static void cread_add_char(char ichar, int insert, unsigned long *num,
647 unsigned long *eol_num, char *buf, unsigned long len)
648{
649 unsigned long wlen;
650
651 /* room ??? */
652 if (insert || *num == *eol_num) {
653 if (*eol_num > len - 1) {
654 getcmd_cbeep();
655 return;
656 }
657 (*eol_num)++;
658 }
659
660 if (insert) {
661 wlen = *eol_num - *num;
662 if (wlen > 1) {
663 memmove(&buf[*num+1], &buf[*num], wlen-1);
664 }
665
666 buf[*num] = ichar;
667 putnstr(buf + *num, wlen);
668 (*num)++;
669 while (--wlen) {
670 getcmd_putch(CTL_BACKSPACE);
671 }
672 } else {
673 /* echo the character */
674 wlen = 1;
675 buf[*num] = ichar;
676 putnstr(buf + *num, wlen);
677 (*num)++;
678 }
679}
680
681static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
682 unsigned long *eol_num, char *buf, unsigned long len)
683{
684 while (strsize--) {
685 cread_add_char(*str, insert, num, eol_num, buf, len);
686 str++;
687 }
688}
689
Heiko Schocher9c348312012-01-16 21:13:05 +0000690static int cread_line(const char *const prompt, char *buf, unsigned int *len,
691 int timeout)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200692{
693 unsigned long num = 0;
694 unsigned long eol_num = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200695 unsigned long wlen;
696 char ichar;
697 int insert = 1;
698 int esc_len = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200699 char esc_save[8];
Peter Tyserecc55002009-10-25 15:12:54 -0500700 int init_len = strlen(buf);
Heiko Schocher9c348312012-01-16 21:13:05 +0000701 int first = 1;
Peter Tyserecc55002009-10-25 15:12:54 -0500702
703 if (init_len)
704 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
Wolfgang Denk501090a2006-07-21 11:33:45 +0200705
706 while (1) {
Andreas Engel00ac50e2008-01-09 17:10:56 +0100707#ifdef CONFIG_BOOT_RETRY_TIME
708 while (!tstc()) { /* while no incoming data */
709 if (retry_time >= 0 && get_ticks() > endtime)
710 return (-2); /* timed out */
Jens Scharsig30dc1652010-04-09 19:02:38 +0200711 WATCHDOG_RESET();
Andreas Engel00ac50e2008-01-09 17:10:56 +0100712 }
713#endif
Heiko Schocher9c348312012-01-16 21:13:05 +0000714 if (first && timeout) {
715 uint64_t etime = endtick(timeout);
716
717 while (!tstc()) { /* while no incoming data */
718 if (get_ticks() >= etime)
719 return -2; /* timed out */
720 WATCHDOG_RESET();
721 }
722 first = 0;
723 }
Andreas Engel00ac50e2008-01-09 17:10:56 +0100724
Wolfgang Denk501090a2006-07-21 11:33:45 +0200725 ichar = getcmd_getch();
726
727 if ((ichar == '\n') || (ichar == '\r')) {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200728 putc('\n');
Wolfgang Denk501090a2006-07-21 11:33:45 +0200729 break;
730 }
731
732 /*
733 * handle standard linux xterm esc sequences for arrow key, etc.
734 */
735 if (esc_len != 0) {
736 if (esc_len == 1) {
737 if (ichar == '[') {
738 esc_save[esc_len] = ichar;
739 esc_len = 2;
740 } else {
741 cread_add_str(esc_save, esc_len, insert,
742 &num, &eol_num, buf, *len);
743 esc_len = 0;
744 }
745 continue;
746 }
747
748 switch (ichar) {
749
750 case 'D': /* <- key */
751 ichar = CTL_CH('b');
752 esc_len = 0;
753 break;
754 case 'C': /* -> key */
755 ichar = CTL_CH('f');
756 esc_len = 0;
757 break; /* pass off to ^F handler */
758 case 'H': /* Home key */
759 ichar = CTL_CH('a');
760 esc_len = 0;
761 break; /* pass off to ^A handler */
762 case 'A': /* up arrow */
763 ichar = CTL_CH('p');
764 esc_len = 0;
765 break; /* pass off to ^P handler */
766 case 'B': /* down arrow */
767 ichar = CTL_CH('n');
768 esc_len = 0;
769 break; /* pass off to ^N handler */
770 default:
771 esc_save[esc_len++] = ichar;
772 cread_add_str(esc_save, esc_len, insert,
773 &num, &eol_num, buf, *len);
774 esc_len = 0;
775 continue;
776 }
777 }
778
779 switch (ichar) {
780 case 0x1b:
781 if (esc_len == 0) {
782 esc_save[esc_len] = ichar;
783 esc_len = 1;
784 } else {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200785 puts("impossible condition #876\n");
Wolfgang Denk501090a2006-07-21 11:33:45 +0200786 esc_len = 0;
787 }
788 break;
789
790 case CTL_CH('a'):
791 BEGINNING_OF_LINE();
792 break;
793 case CTL_CH('c'): /* ^C - break */
794 *buf = '\0'; /* discard input */
795 return (-1);
796 case CTL_CH('f'):
797 if (num < eol_num) {
798 getcmd_putch(buf[num]);
799 num++;
800 }
801 break;
802 case CTL_CH('b'):
803 if (num) {
804 getcmd_putch(CTL_BACKSPACE);
805 num--;
806 }
807 break;
808 case CTL_CH('d'):
809 if (num < eol_num) {
810 wlen = eol_num - num - 1;
811 if (wlen) {
812 memmove(&buf[num], &buf[num+1], wlen);
813 putnstr(buf + num, wlen);
814 }
815
816 getcmd_putch(' ');
817 do {
818 getcmd_putch(CTL_BACKSPACE);
819 } while (wlen--);
820 eol_num--;
821 }
822 break;
823 case CTL_CH('k'):
824 ERASE_TO_EOL();
825 break;
826 case CTL_CH('e'):
827 REFRESH_TO_EOL();
828 break;
829 case CTL_CH('o'):
830 insert = !insert;
831 break;
832 case CTL_CH('x'):
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100833 case CTL_CH('u'):
Wolfgang Denk501090a2006-07-21 11:33:45 +0200834 BEGINNING_OF_LINE();
835 ERASE_TO_EOL();
836 break;
837 case DEL:
838 case DEL7:
839 case 8:
840 if (num) {
841 wlen = eol_num - num;
842 num--;
843 memmove(&buf[num], &buf[num+1], wlen);
844 getcmd_putch(CTL_BACKSPACE);
845 putnstr(buf + num, wlen);
846 getcmd_putch(' ');
847 do {
848 getcmd_putch(CTL_BACKSPACE);
849 } while (wlen--);
850 eol_num--;
851 }
852 break;
853 case CTL_CH('p'):
854 case CTL_CH('n'):
855 {
856 char * hline;
857
858 esc_len = 0;
859
860 if (ichar == CTL_CH('p'))
861 hline = hist_prev();
862 else
863 hline = hist_next();
864
865 if (!hline) {
866 getcmd_cbeep();
867 continue;
868 }
869
870 /* nuke the current line */
871 /* first, go home */
872 BEGINNING_OF_LINE();
873
874 /* erase to end of line */
875 ERASE_TO_EOL();
876
877 /* copy new line into place and display */
878 strcpy(buf, hline);
879 eol_num = strlen(buf);
880 REFRESH_TO_EOL();
881 continue;
882 }
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100883#ifdef CONFIG_AUTO_COMPLETE
884 case '\t': {
885 int num2, col;
886
887 /* do not autocomplete when in the middle */
888 if (num < eol_num) {
889 getcmd_cbeep();
890 break;
891 }
892
893 buf[num] = '\0';
894 col = strlen(prompt) + eol_num;
895 num2 = num;
896 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
897 col = num2 - num;
898 num += col;
899 eol_num += col;
900 }
901 break;
902 }
903#endif
Wolfgang Denk501090a2006-07-21 11:33:45 +0200904 default:
905 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
906 break;
907 }
908 }
909 *len = eol_num;
910 buf[eol_num] = '\0'; /* lose the newline */
911
912 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
913 cread_add_to_hist(buf);
914 hist_cur = hist_add_idx;
915
Peter Tyserf9239432009-10-25 15:12:53 -0500916 return 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200917}
918
919#endif /* CONFIG_CMDLINE_EDITING */
920
wdenkc6097192002-11-03 00:24:07 +0000921/****************************************************************************/
922
923/*
924 * Prompt for input and read a line.
925 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
926 * time out when time goes past endtime (timebase time in ticks).
927 * Return: number of read characters
928 * -1 if break
929 * -2 if timed out
930 */
931int readline (const char *const prompt)
932{
Peter Tyserecc55002009-10-25 15:12:54 -0500933 /*
934 * If console_buffer isn't 0-length the user will be prompted to modify
935 * it instead of entering it from scratch as desired.
936 */
937 console_buffer[0] = '\0';
938
Heiko Schocher9c348312012-01-16 21:13:05 +0000939 return readline_into_buffer(prompt, console_buffer, 0);
James Yang6636b622008-01-09 11:17:49 -0600940}
941
942
Heiko Schocher9c348312012-01-16 21:13:05 +0000943int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
James Yang6636b622008-01-09 11:17:49 -0600944{
945 char *p = buffer;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200946#ifdef CONFIG_CMDLINE_EDITING
Peter Tyser8804ae32010-09-29 13:30:56 -0500947 unsigned int len = CONFIG_SYS_CBSIZE;
Stefan Roesed8f961b2006-08-07 15:08:44 +0200948 int rc;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200949 static int initted = 0;
950
James Yang597f6c22008-05-05 10:22:53 -0500951 /*
952 * History uses a global array which is not
953 * writable until after relocation to RAM.
954 * Revert to non-history version if still
955 * running from flash.
956 */
957 if (gd->flags & GD_FLG_RELOC) {
958 if (!initted) {
959 hist_init();
960 initted = 1;
961 }
962
Peter Tysere491a712009-10-25 15:12:52 -0500963 if (prompt)
964 puts (prompt);
James Yang597f6c22008-05-05 10:22:53 -0500965
Heiko Schocher9c348312012-01-16 21:13:05 +0000966 rc = cread_line(prompt, p, &len, timeout);
James Yang597f6c22008-05-05 10:22:53 -0500967 return rc < 0 ? rc : len;
968
969 } else {
970#endif /* CONFIG_CMDLINE_EDITING */
Kumar Gala0ec59522008-01-10 02:22:05 -0600971 char * p_buf = p;
wdenkc6097192002-11-03 00:24:07 +0000972 int n = 0; /* buffer index */
973 int plen = 0; /* prompt length */
974 int col; /* output column cnt */
975 char c;
976
977 /* print prompt */
978 if (prompt) {
979 plen = strlen (prompt);
980 puts (prompt);
981 }
982 col = plen;
983
984 for (;;) {
985#ifdef CONFIG_BOOT_RETRY_TIME
986 while (!tstc()) { /* while no incoming data */
987 if (retry_time >= 0 && get_ticks() > endtime)
988 return (-2); /* timed out */
Jens Scharsig30dc1652010-04-09 19:02:38 +0200989 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000990 }
991#endif
992 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
993
994#ifdef CONFIG_SHOW_ACTIVITY
995 while (!tstc()) {
996 extern void show_activity(int arg);
997 show_activity(0);
Jens Scharsig30dc1652010-04-09 19:02:38 +0200998 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000999 }
1000#endif
1001 c = getc();
1002
1003 /*
1004 * Special character handling
1005 */
1006 switch (c) {
1007 case '\r': /* Enter */
1008 case '\n':
1009 *p = '\0';
1010 puts ("\r\n");
James Yang6636b622008-01-09 11:17:49 -06001011 return (p - p_buf);
wdenkc6097192002-11-03 00:24:07 +00001012
wdenk27aa8182004-03-23 22:37:33 +00001013 case '\0': /* nul */
1014 continue;
1015
wdenkc6097192002-11-03 00:24:07 +00001016 case 0x03: /* ^C - break */
James Yang6636b622008-01-09 11:17:49 -06001017 p_buf[0] = '\0'; /* discard input */
wdenkc6097192002-11-03 00:24:07 +00001018 return (-1);
1019
1020 case 0x15: /* ^U - erase line */
1021 while (col > plen) {
1022 puts (erase_seq);
1023 --col;
1024 }
James Yang6636b622008-01-09 11:17:49 -06001025 p = p_buf;
wdenkc6097192002-11-03 00:24:07 +00001026 n = 0;
1027 continue;
1028
Wolfgang Denk1636d1c2007-06-22 23:59:00 +02001029 case 0x17: /* ^W - erase word */
James Yang6636b622008-01-09 11:17:49 -06001030 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001031 while ((n > 0) && (*p != ' ')) {
James Yang6636b622008-01-09 11:17:49 -06001032 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001033 }
1034 continue;
1035
1036 case 0x08: /* ^H - backspace */
1037 case 0x7F: /* DEL - backspace */
James Yang6636b622008-01-09 11:17:49 -06001038 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001039 continue;
1040
1041 default:
1042 /*
1043 * Must be a normal character then
1044 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001045 if (n < CONFIG_SYS_CBSIZE-2) {
wdenkc6097192002-11-03 00:24:07 +00001046 if (c == '\t') { /* expand TABs */
wdenk04a85b32004-04-15 18:22:41 +00001047#ifdef CONFIG_AUTO_COMPLETE
1048 /* if auto completion triggered just continue */
1049 *p = '\0';
1050 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
James Yang6636b622008-01-09 11:17:49 -06001051 p = p_buf + n; /* reset */
wdenk04a85b32004-04-15 18:22:41 +00001052 continue;
1053 }
1054#endif
wdenkc6097192002-11-03 00:24:07 +00001055 puts (tab_seq+(col&07));
1056 col += 8 - (col&07);
1057 } else {
1058 ++col; /* echo input */
1059 putc (c);
1060 }
1061 *p++ = c;
1062 ++n;
1063 } else { /* Buffer full */
1064 putc ('\a');
1065 }
1066 }
1067 }
James Yang597f6c22008-05-05 10:22:53 -05001068#ifdef CONFIG_CMDLINE_EDITING
1069 }
1070#endif
wdenkc6097192002-11-03 00:24:07 +00001071}
1072
1073/****************************************************************************/
1074
1075static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1076{
1077 char *s;
1078
1079 if (*np == 0) {
1080 return (p);
1081 }
1082
1083 if (*(--p) == '\t') { /* will retype the whole line */
1084 while (*colp > plen) {
1085 puts (erase_seq);
1086 (*colp)--;
1087 }
1088 for (s=buffer; s<p; ++s) {
1089 if (*s == '\t') {
1090 puts (tab_seq+((*colp) & 07));
1091 *colp += 8 - ((*colp) & 07);
1092 } else {
1093 ++(*colp);
1094 putc (*s);
1095 }
1096 }
1097 } else {
1098 puts (erase_seq);
1099 (*colp)--;
1100 }
1101 (*np)--;
1102 return (p);
1103}
1104
1105/****************************************************************************/
1106
1107int parse_line (char *line, char *argv[])
1108{
1109 int nargs = 0;
1110
1111#ifdef DEBUG_PARSER
1112 printf ("parse_line: \"%s\"\n", line);
1113#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001114 while (nargs < CONFIG_SYS_MAXARGS) {
wdenkc6097192002-11-03 00:24:07 +00001115
1116 /* skip any white space */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +00001117 while (isblank(*line))
wdenkc6097192002-11-03 00:24:07 +00001118 ++line;
wdenkc6097192002-11-03 00:24:07 +00001119
1120 if (*line == '\0') { /* end of line, no more args */
1121 argv[nargs] = NULL;
1122#ifdef DEBUG_PARSER
1123 printf ("parse_line: nargs=%d\n", nargs);
1124#endif
1125 return (nargs);
1126 }
1127
1128 argv[nargs++] = line; /* begin of argument string */
1129
1130 /* find end of string */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +00001131 while (*line && !isblank(*line))
wdenkc6097192002-11-03 00:24:07 +00001132 ++line;
wdenkc6097192002-11-03 00:24:07 +00001133
1134 if (*line == '\0') { /* end of line, no more args */
1135 argv[nargs] = NULL;
1136#ifdef DEBUG_PARSER
1137 printf ("parse_line: nargs=%d\n", nargs);
1138#endif
1139 return (nargs);
1140 }
1141
1142 *line++ = '\0'; /* terminate current arg */
1143 }
1144
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001145 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
wdenkc6097192002-11-03 00:24:07 +00001146
1147#ifdef DEBUG_PARSER
1148 printf ("parse_line: nargs=%d\n", nargs);
1149#endif
1150 return (nargs);
1151}
1152
1153/****************************************************************************/
1154
1155static void process_macros (const char *input, char *output)
1156{
1157 char c, prev;
1158 const char *varname_start = NULL;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001159 int inputcnt = strlen (input);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001160 int outputcnt = CONFIG_SYS_CBSIZE;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001161 int state = 0; /* 0 = waiting for '$' */
1162
1163 /* 1 = waiting for '(' or '{' */
1164 /* 2 = waiting for ')' or '}' */
1165 /* 3 = waiting for ''' */
wdenkc6097192002-11-03 00:24:07 +00001166#ifdef DEBUG_PARSER
1167 char *output_start = output;
1168
Wolfgang Denk19973b62006-10-28 00:38:39 +02001169 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1170 input);
wdenkc6097192002-11-03 00:24:07 +00001171#endif
1172
Wolfgang Denk19973b62006-10-28 00:38:39 +02001173 prev = '\0'; /* previous character */
wdenkc6097192002-11-03 00:24:07 +00001174
1175 while (inputcnt && outputcnt) {
wdenk8bde7f72003-06-27 21:31:46 +00001176 c = *input++;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001177 inputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001178
Wolfgang Denk19973b62006-10-28 00:38:39 +02001179 if (state != 3) {
1180 /* remove one level of escape characters */
1181 if ((c == '\\') && (prev != '\\')) {
1182 if (inputcnt-- == 0)
1183 break;
1184 prev = c;
1185 c = *input++;
1186 }
wdenka25f8622003-01-02 23:57:29 +00001187 }
wdenkc6097192002-11-03 00:24:07 +00001188
Wolfgang Denk19973b62006-10-28 00:38:39 +02001189 switch (state) {
1190 case 0: /* Waiting for (unescaped) $ */
1191 if ((c == '\'') && (prev != '\\')) {
1192 state = 3;
1193 break;
1194 }
1195 if ((c == '$') && (prev != '\\')) {
1196 state++;
1197 } else {
wdenkc6097192002-11-03 00:24:07 +00001198 *(output++) = c;
1199 outputcnt--;
1200 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001201 break;
1202 case 1: /* Waiting for ( */
1203 if (c == '(' || c == '{') {
1204 state++;
1205 varname_start = input;
1206 } else {
1207 state = 0;
1208 *(output++) = '$';
1209 outputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001210
Wolfgang Denk19973b62006-10-28 00:38:39 +02001211 if (outputcnt) {
1212 *(output++) = c;
wdenkc6097192002-11-03 00:24:07 +00001213 outputcnt--;
1214 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001215 }
1216 break;
1217 case 2: /* Waiting for ) */
1218 if (c == ')' || c == '}') {
1219 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001220 char envname[CONFIG_SYS_CBSIZE], *envval;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001221 int envcnt = input - varname_start - 1; /* Varname # of chars */
1222
1223 /* Get the varname */
1224 for (i = 0; i < envcnt; i++) {
1225 envname[i] = varname_start[i];
1226 }
1227 envname[i] = 0;
1228
1229 /* Get its value */
1230 envval = getenv (envname);
1231
1232 /* Copy into the line if it exists */
1233 if (envval != NULL)
1234 while ((*envval) && outputcnt) {
1235 *(output++) = *(envval++);
1236 outputcnt--;
1237 }
1238 /* Look for another '$' */
1239 state = 0;
1240 }
1241 break;
1242 case 3: /* Waiting for ' */
1243 if ((c == '\'') && (prev != '\\')) {
1244 state = 0;
1245 } else {
1246 *(output++) = c;
1247 outputcnt--;
1248 }
1249 break;
wdenkc6097192002-11-03 00:24:07 +00001250 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001251 prev = c;
wdenkc6097192002-11-03 00:24:07 +00001252 }
1253
1254 if (outputcnt)
1255 *output = 0;
Bartlomiej Sieka9160b962007-05-27 17:04:18 +02001256 else
1257 *(output - 1) = 0;
wdenkc6097192002-11-03 00:24:07 +00001258
1259#ifdef DEBUG_PARSER
1260 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
Wolfgang Denk19973b62006-10-28 00:38:39 +02001261 strlen (output_start), output_start);
wdenkc6097192002-11-03 00:24:07 +00001262#endif
1263}
1264
1265/****************************************************************************
1266 * returns:
1267 * 1 - command executed, repeatable
1268 * 0 - command executed but not repeatable, interrupted commands are
1269 * always considered not repeatable
1270 * -1 - not executed (unrecognized, bootd recursion or too many args)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001271 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
wdenkc6097192002-11-03 00:24:07 +00001272 * considered unrecognized)
1273 *
1274 * WARNING:
1275 *
1276 * We must create a temporary copy of the command since the command we get
1277 * may be the result from getenv(), which returns a pointer directly to
1278 * the environment data, which may change magicly when the command we run
1279 * creates or modifies environment variables (like "bootp" does).
1280 */
1281
Simon Glassf47360a2012-02-14 19:59:19 +00001282int builtin_run_command(const char *cmd, int flag)
wdenkc6097192002-11-03 00:24:07 +00001283{
1284 cmd_tbl_t *cmdtp;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001285 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
wdenkc6097192002-11-03 00:24:07 +00001286 char *token; /* start of token in cmdbuf */
1287 char *sep; /* end of token (separator) in cmdbuf */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001288 char finaltoken[CONFIG_SYS_CBSIZE];
wdenkc6097192002-11-03 00:24:07 +00001289 char *str = cmdbuf;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001290 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
wdenkf07771c2003-05-28 08:06:31 +00001291 int argc, inquotes;
wdenkc6097192002-11-03 00:24:07 +00001292 int repeatable = 1;
wdenkf07771c2003-05-28 08:06:31 +00001293 int rc = 0;
wdenkc6097192002-11-03 00:24:07 +00001294
1295#ifdef DEBUG_PARSER
1296 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1297 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1298 puts ("\"\n");
1299#endif
1300
1301 clear_ctrlc(); /* forget any previous Control C */
1302
1303 if (!cmd || !*cmd) {
1304 return -1; /* empty command */
1305 }
1306
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001307 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
wdenkc6097192002-11-03 00:24:07 +00001308 puts ("## Command too long!\n");
1309 return -1;
1310 }
1311
1312 strcpy (cmdbuf, cmd);
1313
1314 /* Process separators and check for invalid
1315 * repeatable commands
1316 */
1317
1318#ifdef DEBUG_PARSER
1319 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1320#endif
1321 while (*str) {
1322
1323 /*
1324 * Find separator, or string end
1325 * Allow simple escape of ';' by writing "\;"
1326 */
wdenka25f8622003-01-02 23:57:29 +00001327 for (inquotes = 0, sep = str; *sep; sep++) {
1328 if ((*sep=='\'') &&
1329 (*(sep-1) != '\\'))
1330 inquotes=!inquotes;
1331
1332 if (!inquotes &&
1333 (*sep == ';') && /* separator */
wdenkc6097192002-11-03 00:24:07 +00001334 ( sep != str) && /* past string start */
1335 (*(sep-1) != '\\')) /* and NOT escaped */
1336 break;
1337 }
1338
1339 /*
1340 * Limit the token to data between separators
1341 */
1342 token = str;
1343 if (*sep) {
1344 str = sep + 1; /* start of command for next pass */
1345 *sep = '\0';
1346 }
1347 else
1348 str = sep; /* no more commands for next pass */
1349#ifdef DEBUG_PARSER
1350 printf ("token: \"%s\"\n", token);
1351#endif
1352
1353 /* find macros in this token and replace them */
1354 process_macros (token, finaltoken);
1355
1356 /* Extract arguments */
Wolfgang Denk1264b402006-03-12 02:20:55 +01001357 if ((argc = parse_line (finaltoken, argv)) == 0) {
1358 rc = -1; /* no command at all */
1359 continue;
1360 }
wdenkc6097192002-11-03 00:24:07 +00001361
1362 /* Look up command in command table */
1363 if ((cmdtp = find_cmd(argv[0])) == NULL) {
1364 printf ("Unknown command '%s' - try 'help'\n", argv[0]);
wdenkf07771c2003-05-28 08:06:31 +00001365 rc = -1; /* give up after bad command */
1366 continue;
wdenkc6097192002-11-03 00:24:07 +00001367 }
1368
1369 /* found - check max args */
1370 if (argc > cmdtp->maxargs) {
Peter Tyser62c3ae72009-01-27 18:03:10 -06001371 cmd_usage(cmdtp);
wdenkf07771c2003-05-28 08:06:31 +00001372 rc = -1;
1373 continue;
wdenkc6097192002-11-03 00:24:07 +00001374 }
1375
Jon Loeligerc3517f92007-07-08 18:10:08 -05001376#if defined(CONFIG_CMD_BOOTD)
wdenkc6097192002-11-03 00:24:07 +00001377 /* avoid "bootd" recursion */
1378 if (cmdtp->cmd == do_bootd) {
1379#ifdef DEBUG_PARSER
1380 printf ("[%s]\n", finaltoken);
1381#endif
1382 if (flag & CMD_FLAG_BOOTD) {
wdenk4b9206e2004-03-23 22:14:11 +00001383 puts ("'bootd' recursion detected\n");
wdenkf07771c2003-05-28 08:06:31 +00001384 rc = -1;
1385 continue;
Wolfgang Denk1264b402006-03-12 02:20:55 +01001386 } else {
wdenkc6097192002-11-03 00:24:07 +00001387 flag |= CMD_FLAG_BOOTD;
Wolfgang Denk1264b402006-03-12 02:20:55 +01001388 }
wdenkc6097192002-11-03 00:24:07 +00001389 }
Jon Loeliger90253172007-07-10 11:02:44 -05001390#endif
wdenkc6097192002-11-03 00:24:07 +00001391
1392 /* OK - call function to do the command */
1393 if ((cmdtp->cmd) (cmdtp, flag, argc, argv) != 0) {
wdenkf07771c2003-05-28 08:06:31 +00001394 rc = -1;
wdenkc6097192002-11-03 00:24:07 +00001395 }
1396
1397 repeatable &= cmdtp->repeatable;
1398
1399 /* Did the user stop this? */
1400 if (had_ctrlc ())
Detlev Zundel5afb2022007-05-23 18:47:48 +02001401 return -1; /* if stopped then not repeatable */
wdenkc6097192002-11-03 00:24:07 +00001402 }
1403
wdenkf07771c2003-05-28 08:06:31 +00001404 return rc ? rc : repeatable;
wdenkc6097192002-11-03 00:24:07 +00001405}
1406
1407/****************************************************************************/
1408
Jon Loeligerc3517f92007-07-08 18:10:08 -05001409#if defined(CONFIG_CMD_RUN)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001410int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +00001411{
1412 int i;
wdenkc6097192002-11-03 00:24:07 +00001413
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001414 if (argc < 2)
1415 return cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +00001416
1417 for (i=1; i<argc; ++i) {
wdenk3e386912003-04-05 00:53:31 +00001418 char *arg;
1419
1420 if ((arg = getenv (argv[i])) == NULL) {
1421 printf ("## Error: \"%s\" not defined\n", argv[i]);
1422 return 1;
1423 }
Jason Hobbsc8a20792011-08-31 05:37:24 +00001424
Simon Glass009dde12012-02-14 19:59:20 +00001425 if (run_command(arg, flag) != 0)
wdenk3e386912003-04-05 00:53:31 +00001426 return 1;
wdenkc6097192002-11-03 00:24:07 +00001427 }
wdenk3e386912003-04-05 00:53:31 +00001428 return 0;
wdenkc6097192002-11-03 00:24:07 +00001429}
Jon Loeliger90253172007-07-10 11:02:44 -05001430#endif