blob: 4f8e68f888137db3aa4aaf017d529f17c8ba5b96 [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>
Simon Glassd51004a2012-03-30 21:30:55 +000033#include <malloc.h>
Andreas Bießmann09c2e902011-07-18 20:24:04 +020034#include <version.h>
Wolfgang Denkd9631ec2005-09-30 15:18:23 +020035#ifdef CONFIG_MODEM_SUPPORT
36#include <malloc.h> /* for free() prototype */
37#endif
wdenkc6097192002-11-03 00:24:07 +000038
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +000040#include <hush.h>
41#endif
42
wdenkbdccc4f2003-08-05 17:43:17 +000043#include <post.h>
Jason Hobbs4d91a6e2011-08-23 11:06:54 +000044#include <linux/ctype.h>
Heiko Schocher317d6c52012-01-16 21:13:35 +000045#include <menu.h>
wdenkbdccc4f2003-08-05 17:43:17 +000046
James Yang597f6c22008-05-05 10:22:53 -050047#if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020048DECLARE_GLOBAL_DATA_PTR;
49#endif
50
Heiko Schocherfad63402007-07-13 09:54:17 +020051/*
52 * Board-specific Platform code can reimplement show_boot_progress () if needed
53 */
54void inline __show_boot_progress (int val) {}
Emil Medve5e2c08c2009-05-12 13:48:32 -050055void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
Heiko Schocherfad63402007-07-13 09:54:17 +020056
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020057#if defined(CONFIG_UPDATE_TFTP)
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +000058int update_tftp (ulong addr);
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020059#endif /* CONFIG_UPDATE_TFTP */
wdenk8bde7f72003-06-27 21:31:46 +000060
wdenkc6097192002-11-03 00:24:07 +000061#define MAX_DELAY_STOP_STR 32
62
wdenkc6097192002-11-03 00:24:07 +000063#undef DEBUG_PARSER
64
John Schmoller6475b9f2010-03-12 09:49:23 -060065char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
wdenkc6097192002-11-03 00:24:07 +000066
Stefan Roese3ca91222006-07-27 16:11:19 +020067static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
Mike Frysinger82359ae2010-12-22 09:40:45 -050068static const char erase_seq[] = "\b \b"; /* erase sequence */
69static const char tab_seq[] = " "; /* used to expand TABs */
wdenkc6097192002-11-03 00:24:07 +000070
wdenkc6097192002-11-03 00:24:07 +000071static uint64_t endtime = 0; /* must be set, default is instant timeout */
72static int retry_time = -1; /* -1 so can call readline before main_loop */
wdenkc6097192002-11-03 00:24:07 +000073
74#define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
75
76#ifndef CONFIG_BOOT_RETRY_MIN
77#define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
78#endif
79
80#ifdef CONFIG_MODEM_SUPPORT
81int do_mdm_init = 0;
82extern void mdm_init(void); /* defined in board.c */
83#endif
84
Rob Herring6d90c2d2012-08-17 12:59:18 -050085int wait_for_ch_timeout(int rel_timeout, uint64_t abs_timeout)
86{
87 uint64_t etime = abs_timeout;
88
89 if (rel_timeout)
90 etime = endtick(rel_timeout);
91
92 while (!tstc()) { /* while no incoming data */
93 if ((retry_time >= 0) && etime && (get_ticks() > etime))
94 return (-2); /* timed out */
95 WATCHDOG_RESET();
96 }
97 return 0;
98}
wdenkc6097192002-11-03 00:24:07 +000099/***************************************************************************
100 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
Jason Hobbsc8a20792011-08-31 05:37:24 +0000101 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
wdenkc6097192002-11-03 00:24:07 +0000102 */
103#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
104# if defined(CONFIG_AUTOBOOT_KEYED)
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000105#ifndef CONFIG_MENU
106static inline
107#endif
108int abortboot(int bootdelay)
wdenkc6097192002-11-03 00:24:07 +0000109{
110 int abort = 0;
111 uint64_t etime = endtick(bootdelay);
Wolfgang Denk19973b62006-10-28 00:38:39 +0200112 struct {
wdenkc6097192002-11-03 00:24:07 +0000113 char* str;
114 u_int len;
115 int retry;
116 }
Wolfgang Denk19973b62006-10-28 00:38:39 +0200117 delaykey [] = {
wdenkc6097192002-11-03 00:24:07 +0000118 { str: getenv ("bootdelaykey"), retry: 1 },
119 { str: getenv ("bootdelaykey2"), retry: 1 },
120 { str: getenv ("bootstopkey"), retry: 0 },
121 { str: getenv ("bootstopkey2"), retry: 0 },
122 };
123
124 char presskey [MAX_DELAY_STOP_STR];
125 u_int presskey_len = 0;
126 u_int presskey_max = 0;
127 u_int i;
128
Dirk Eibacha5aae0a2012-04-26 01:49:33 +0000129#ifndef CONFIG_ZERO_BOOTDELAY_CHECK
130 if (bootdelay == 0)
131 return 0;
132#endif
133
wdenkc6097192002-11-03 00:24:07 +0000134# ifdef CONFIG_AUTOBOOT_PROMPT
Stefan Roesef2302d42008-08-06 14:05:38 +0200135 printf(CONFIG_AUTOBOOT_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000136# endif
137
138# ifdef CONFIG_AUTOBOOT_DELAY_STR
139 if (delaykey[0].str == NULL)
140 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
141# endif
142# ifdef CONFIG_AUTOBOOT_DELAY_STR2
143 if (delaykey[1].str == NULL)
144 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
145# endif
146# ifdef CONFIG_AUTOBOOT_STOP_STR
147 if (delaykey[2].str == NULL)
148 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
149# endif
150# ifdef CONFIG_AUTOBOOT_STOP_STR2
151 if (delaykey[3].str == NULL)
152 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
153# endif
154
155 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
156 delaykey[i].len = delaykey[i].str == NULL ?
157 0 : strlen (delaykey[i].str);
158 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
159 MAX_DELAY_STOP_STR : delaykey[i].len;
160
161 presskey_max = presskey_max > delaykey[i].len ?
162 presskey_max : delaykey[i].len;
163
164# if DEBUG_BOOTKEYS
165 printf("%s key:<%s>\n",
166 delaykey[i].retry ? "delay" : "stop",
167 delaykey[i].str ? delaykey[i].str : "NULL");
168# endif
169 }
170
171 /* In order to keep up with incoming data, check timeout only
172 * when catch up.
173 */
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100174 do {
175 if (tstc()) {
176 if (presskey_len < presskey_max) {
177 presskey [presskey_len ++] = getc();
178 }
179 else {
180 for (i = 0; i < presskey_max - 1; i ++)
181 presskey [i] = presskey [i + 1];
182
183 presskey [i] = getc();
184 }
185 }
186
wdenkc6097192002-11-03 00:24:07 +0000187 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
188 if (delaykey[i].len > 0 &&
189 presskey_len >= delaykey[i].len &&
190 memcmp (presskey + presskey_len - delaykey[i].len,
wdenk8bde7f72003-06-27 21:31:46 +0000191 delaykey[i].str,
wdenkc6097192002-11-03 00:24:07 +0000192 delaykey[i].len) == 0) {
193# if DEBUG_BOOTKEYS
194 printf("got %skey\n",
195 delaykey[i].retry ? "delay" : "stop");
196# endif
197
198# ifdef CONFIG_BOOT_RETRY_TIME
199 /* don't retry auto boot */
200 if (! delaykey[i].retry)
201 retry_time = -1;
202# endif
203 abort = 1;
204 }
205 }
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100206 } while (!abort && get_ticks() <= etime);
wdenkc6097192002-11-03 00:24:07 +0000207
wdenkc6097192002-11-03 00:24:07 +0000208# if DEBUG_BOOTKEYS
209 if (!abort)
Ladislav Michlada4d402007-04-25 16:01:26 +0200210 puts("key timeout\n");
wdenkc6097192002-11-03 00:24:07 +0000211# endif
212
dzu8cb81432003-10-24 13:14:45 +0000213#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200214 if (abort)
215 gd->flags &= ~GD_FLG_SILENT;
dzu8cb81432003-10-24 13:14:45 +0000216#endif
217
wdenkc6097192002-11-03 00:24:07 +0000218 return abort;
219}
220
221# else /* !defined(CONFIG_AUTOBOOT_KEYED) */
222
wdenkc7de8292002-11-19 11:04:11 +0000223#ifdef CONFIG_MENUKEY
224static int menukey = 0;
225#endif
226
Jason Hobbsb41bc5a2011-08-23 11:06:50 +0000227#ifndef CONFIG_MENU
228static inline
229#endif
230int abortboot(int bootdelay)
wdenkc6097192002-11-03 00:24:07 +0000231{
232 int abort = 0;
233
wdenkc7de8292002-11-19 11:04:11 +0000234#ifdef CONFIG_MENUPROMPT
Stefan Roesef2302d42008-08-06 14:05:38 +0200235 printf(CONFIG_MENUPROMPT);
wdenkc7de8292002-11-19 11:04:11 +0000236#else
Joe Hershberger93d72122012-08-17 10:53:12 +0000237 if (bootdelay >= 0)
238 printf("Hit any key to stop autoboot: %2d ", bootdelay);
wdenkc7de8292002-11-19 11:04:11 +0000239#endif
wdenkc6097192002-11-03 00:24:07 +0000240
241#if defined CONFIG_ZERO_BOOTDELAY_CHECK
wdenk8bde7f72003-06-27 21:31:46 +0000242 /*
243 * Check if key already pressed
244 * Don't check if bootdelay < 0
245 */
wdenkc6097192002-11-03 00:24:07 +0000246 if (bootdelay >= 0) {
247 if (tstc()) { /* we got a key press */
248 (void) getc(); /* consume input */
wdenk4b9206e2004-03-23 22:14:11 +0000249 puts ("\b\b\b 0");
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200250 abort = 1; /* don't auto boot */
wdenkc6097192002-11-03 00:24:07 +0000251 }
wdenk8bde7f72003-06-27 21:31:46 +0000252 }
wdenkc6097192002-11-03 00:24:07 +0000253#endif
254
wdenkf72da342003-10-10 10:05:42 +0000255 while ((bootdelay > 0) && (!abort)) {
wdenkc6097192002-11-03 00:24:07 +0000256 int i;
257
258 --bootdelay;
259 /* delay 100 * 10ms */
260 for (i=0; !abort && i<100; ++i) {
261 if (tstc()) { /* we got a key press */
262 abort = 1; /* don't auto boot */
263 bootdelay = 0; /* no more delay */
wdenkc7de8292002-11-19 11:04:11 +0000264# ifdef CONFIG_MENUKEY
265 menukey = getc();
266# else
wdenkc6097192002-11-03 00:24:07 +0000267 (void) getc(); /* consume input */
wdenkc7de8292002-11-19 11:04:11 +0000268# endif
wdenkc6097192002-11-03 00:24:07 +0000269 break;
270 }
Ladislav Michlada4d402007-04-25 16:01:26 +0200271 udelay(10000);
wdenkc6097192002-11-03 00:24:07 +0000272 }
273
Ladislav Michlada4d402007-04-25 16:01:26 +0200274 printf("\b\b\b%2d ", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000275 }
276
Ladislav Michlada4d402007-04-25 16:01:26 +0200277 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000278
wdenkf72da342003-10-10 10:05:42 +0000279#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200280 if (abort)
281 gd->flags &= ~GD_FLG_SILENT;
wdenkf72da342003-10-10 10:05:42 +0000282#endif
283
wdenkc6097192002-11-03 00:24:07 +0000284 return abort;
285}
286# endif /* CONFIG_AUTOBOOT_KEYED */
287#endif /* CONFIG_BOOTDELAY >= 0 */
288
289/****************************************************************************/
290
291void main_loop (void)
292{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200293#ifndef CONFIG_SYS_HUSH_PARSER
294 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
wdenkc6097192002-11-03 00:24:07 +0000295 int len;
296 int rc = 1;
297 int flag;
298#endif
299
300#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
301 char *s;
302 int bootdelay;
303#endif
304#ifdef CONFIG_PREBOOT
305 char *p;
306#endif
wdenkbdccc4f2003-08-05 17:43:17 +0000307#ifdef CONFIG_BOOTCOUNT_LIMIT
308 unsigned long bootcount = 0;
309 unsigned long bootlimit = 0;
310 char *bcs;
311 char bcs_set[16];
312#endif /* CONFIG_BOOTCOUNT_LIMIT */
wdenkc6097192002-11-03 00:24:07 +0000313
wdenkbdccc4f2003-08-05 17:43:17 +0000314#ifdef CONFIG_BOOTCOUNT_LIMIT
315 bootcount = bootcount_load();
316 bootcount++;
317 bootcount_store (bootcount);
318 sprintf (bcs_set, "%lu", bootcount);
319 setenv ("bootcount", bcs_set);
320 bcs = getenv ("bootlimit");
321 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
322#endif /* CONFIG_BOOTCOUNT_LIMIT */
323
wdenkc6097192002-11-03 00:24:07 +0000324#ifdef CONFIG_MODEM_SUPPORT
325 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
326 if (do_mdm_init) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200327 char *str = strdup(getenv("mdm_cmd"));
wdenkc6097192002-11-03 00:24:07 +0000328 setenv ("preboot", str); /* set or delete definition */
329 if (str != NULL)
330 free (str);
331 mdm_init(); /* wait for modem connection */
332 }
333#endif /* CONFIG_MODEM_SUPPORT */
334
stroese05875972003-04-04 15:44:49 +0000335#ifdef CONFIG_VERSION_VARIABLE
336 {
stroese155cb012003-07-11 08:00:33 +0000337 setenv ("ver", version_string); /* set version variable */
stroese05875972003-04-04 15:44:49 +0000338 }
339#endif /* CONFIG_VERSION_VARIABLE */
340
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200341#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000342 u_boot_hush_start ();
343#endif
344
Heiko Schocher81473f62008-10-15 09:40:28 +0200345#if defined(CONFIG_HUSH_INIT_VAR)
346 hush_init_var ();
347#endif
348
wdenkc6097192002-11-03 00:24:07 +0000349#ifdef CONFIG_PREBOOT
350 if ((p = getenv ("preboot")) != NULL) {
351# ifdef CONFIG_AUTOBOOT_KEYED
352 int prev = disable_ctrlc(1); /* disable Control C checking */
353# endif
354
Simon Glass3a8a02b2012-03-30 21:30:56 +0000355 run_command_list(p, -1, 0);
wdenkc6097192002-11-03 00:24:07 +0000356
357# ifdef CONFIG_AUTOBOOT_KEYED
358 disable_ctrlc(prev); /* restore Control C checking */
359# endif
360 }
361#endif /* CONFIG_PREBOOT */
362
Wolfgang Denk143cd212010-03-11 23:56:03 +0100363#if defined(CONFIG_UPDATE_TFTP)
Andreas Pretzsch8d6b7322011-07-16 05:50:59 +0000364 update_tftp (0UL);
Wolfgang Denk143cd212010-03-11 23:56:03 +0100365#endif /* CONFIG_UPDATE_TFTP */
366
wdenkc6097192002-11-03 00:24:07 +0000367#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
368 s = getenv ("bootdelay");
369 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
370
wdenka6c7ad22002-12-03 21:28:10 +0000371 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000372
Heiko Schocher317d6c52012-01-16 21:13:35 +0000373#if defined(CONFIG_MENU_SHOW)
374 bootdelay = menu_show(bootdelay);
375#endif
wdenkc6097192002-11-03 00:24:07 +0000376# ifdef CONFIG_BOOT_RETRY_TIME
wdenk6dd652f2003-06-19 23:40:20 +0000377 init_cmd_timeout ();
wdenkc6097192002-11-03 00:24:07 +0000378# endif /* CONFIG_BOOT_RETRY_TIME */
379
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100380#ifdef CONFIG_POST
381 if (gd->flags & GD_FLG_POSTFAIL) {
382 s = getenv("failbootcmd");
383 }
384 else
385#endif /* CONFIG_POST */
wdenkbdccc4f2003-08-05 17:43:17 +0000386#ifdef CONFIG_BOOTCOUNT_LIMIT
387 if (bootlimit && (bootcount > bootlimit)) {
388 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
389 (unsigned)bootlimit);
390 s = getenv ("altbootcmd");
391 }
392 else
393#endif /* CONFIG_BOOTCOUNT_LIMIT */
394 s = getenv ("bootcmd");
wdenka6c7ad22002-12-03 21:28:10 +0000395
396 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
397
Joe Hershberger93d72122012-08-17 10:53:12 +0000398 if (bootdelay != -1 && s && !abortboot(bootdelay)) {
wdenkc6097192002-11-03 00:24:07 +0000399# ifdef CONFIG_AUTOBOOT_KEYED
400 int prev = disable_ctrlc(1); /* disable Control C checking */
401# endif
402
Simon Glass3a8a02b2012-03-30 21:30:56 +0000403 run_command_list(s, -1, 0);
wdenkc6097192002-11-03 00:24:07 +0000404
405# ifdef CONFIG_AUTOBOOT_KEYED
406 disable_ctrlc(prev); /* restore Control C checking */
407# endif
408 }
wdenkc7de8292002-11-19 11:04:11 +0000409
410# ifdef CONFIG_MENUKEY
wdenka6c7ad22002-12-03 21:28:10 +0000411 if (menukey == CONFIG_MENUKEY) {
Jason Hobbs370d1e32011-06-23 08:27:30 +0000412 s = getenv("menucmd");
Jason Hobbsc8a20792011-08-31 05:37:24 +0000413 if (s)
Simon Glass3a8a02b2012-03-30 21:30:56 +0000414 run_command_list(s, -1, 0);
wdenkc7de8292002-11-19 11:04:11 +0000415 }
416#endif /* CONFIG_MENUKEY */
Wolfgang Denk953b7e62010-06-13 18:28:54 +0200417#endif /* CONFIG_BOOTDELAY */
wdenkc7de8292002-11-19 11:04:11 +0000418
wdenkc6097192002-11-03 00:24:07 +0000419 /*
420 * Main Loop for Monitor Command Processing
421 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200422#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000423 parse_file_outer();
424 /* This point is never reached */
425 for (;;);
426#else
427 for (;;) {
428#ifdef CONFIG_BOOT_RETRY_TIME
429 if (rc >= 0) {
430 /* Saw enough of a valid command to
431 * restart the timeout.
432 */
433 reset_cmd_timeout();
434 }
435#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436 len = readline (CONFIG_SYS_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000437
438 flag = 0; /* assume no special flags for now */
439 if (len > 0)
440 strcpy (lastcommand, console_buffer);
441 else if (len == 0)
442 flag |= CMD_FLAG_REPEAT;
443#ifdef CONFIG_BOOT_RETRY_TIME
444 else if (len == -2) {
445 /* -2 means timed out, retry autoboot
446 */
wdenk4b9206e2004-03-23 22:14:11 +0000447 puts ("\nTimed out waiting for command\n");
wdenkc6097192002-11-03 00:24:07 +0000448# ifdef CONFIG_RESET_TO_RETRY
449 /* Reinit board to run initialization code again */
450 do_reset (NULL, 0, 0, NULL);
451# else
452 return; /* retry autoboot */
453# endif
454 }
455#endif
456
457 if (len == -1)
wdenk4b9206e2004-03-23 22:14:11 +0000458 puts ("<INTERRUPT>\n");
wdenkc6097192002-11-03 00:24:07 +0000459 else
Simon Glass53071532012-02-14 19:59:21 +0000460 rc = run_command(lastcommand, flag);
wdenkc6097192002-11-03 00:24:07 +0000461
462 if (rc <= 0) {
463 /* invalid command or not repeatable, forget it */
464 lastcommand[0] = 0;
465 }
466 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200467#endif /*CONFIG_SYS_HUSH_PARSER*/
wdenkc6097192002-11-03 00:24:07 +0000468}
469
wdenk6dd652f2003-06-19 23:40:20 +0000470#ifdef CONFIG_BOOT_RETRY_TIME
471/***************************************************************************
Wolfgang Denk19973b62006-10-28 00:38:39 +0200472 * initialize command line timeout
wdenk6dd652f2003-06-19 23:40:20 +0000473 */
474void init_cmd_timeout(void)
475{
476 char *s = getenv ("bootretry");
477
478 if (s != NULL)
wdenkb028f712003-12-07 21:39:28 +0000479 retry_time = (int)simple_strtol(s, NULL, 10);
wdenk6dd652f2003-06-19 23:40:20 +0000480 else
481 retry_time = CONFIG_BOOT_RETRY_TIME;
482
483 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
484 retry_time = CONFIG_BOOT_RETRY_MIN;
485}
486
wdenkc6097192002-11-03 00:24:07 +0000487/***************************************************************************
488 * reset command line timeout to retry_time seconds
489 */
wdenkc6097192002-11-03 00:24:07 +0000490void reset_cmd_timeout(void)
491{
492 endtime = endtick(retry_time);
493}
494#endif
495
Wolfgang Denk501090a2006-07-21 11:33:45 +0200496#ifdef CONFIG_CMDLINE_EDITING
497
498/*
499 * cmdline-editing related codes from vivi.
500 * Author: Janghoon Lyu <nandy@mizi.com>
501 */
502
Wolfgang Denk501090a2006-07-21 11:33:45 +0200503#define putnstr(str,n) do { \
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700504 printf ("%.*s", (int)n, str); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200505 } while (0)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200506
507#define CTL_CH(c) ((c) - 'a' + 1)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200508#define CTL_BACKSPACE ('\b')
509#define DEL ((char)255)
510#define DEL7 ((char)127)
511#define CREAD_HIST_CHAR ('!')
512
513#define getcmd_putch(ch) putc(ch)
514#define getcmd_getch() getc()
515#define getcmd_cbeep() getcmd_putch('\a')
516
517#define HIST_MAX 20
Peter Tyser8804ae32010-09-29 13:30:56 -0500518#define HIST_SIZE CONFIG_SYS_CBSIZE
Wolfgang Denk501090a2006-07-21 11:33:45 +0200519
Kim Phillips199adb62012-10-29 13:34:32 +0000520static int hist_max;
521static int hist_add_idx;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200522static int hist_cur = -1;
Kim Phillips199adb62012-10-29 13:34:32 +0000523static unsigned hist_num;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200524
Kim Phillips199adb62012-10-29 13:34:32 +0000525static char *hist_list[HIST_MAX];
526static char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200527
528#define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
529
530static void hist_init(void)
531{
532 int i;
533
534 hist_max = 0;
535 hist_add_idx = 0;
536 hist_cur = -1;
537 hist_num = 0;
538
539 for (i = 0; i < HIST_MAX; i++) {
540 hist_list[i] = hist_lines[i];
541 hist_list[i][0] = '\0';
542 }
543}
544
545static void cread_add_to_hist(char *line)
546{
547 strcpy(hist_list[hist_add_idx], line);
548
549 if (++hist_add_idx >= HIST_MAX)
550 hist_add_idx = 0;
551
552 if (hist_add_idx > hist_max)
553 hist_max = hist_add_idx;
554
555 hist_num++;
556}
557
558static char* hist_prev(void)
559{
560 char *ret;
561 int old_cur;
562
563 if (hist_cur < 0)
564 return NULL;
565
566 old_cur = hist_cur;
567 if (--hist_cur < 0)
568 hist_cur = hist_max;
569
570 if (hist_cur == hist_add_idx) {
571 hist_cur = old_cur;
572 ret = NULL;
573 } else
574 ret = hist_list[hist_cur];
575
576 return (ret);
577}
578
579static char* hist_next(void)
580{
581 char *ret;
582
583 if (hist_cur < 0)
584 return NULL;
585
586 if (hist_cur == hist_add_idx)
587 return NULL;
588
589 if (++hist_cur > hist_max)
590 hist_cur = 0;
591
592 if (hist_cur == hist_add_idx) {
593 ret = "";
594 } else
595 ret = hist_list[hist_cur];
596
597 return (ret);
598}
599
Stefan Roese3ca91222006-07-27 16:11:19 +0200600#ifndef CONFIG_CMDLINE_EDITING
Wolfgang Denk501090a2006-07-21 11:33:45 +0200601static void cread_print_hist_list(void)
602{
603 int i;
604 unsigned long n;
605
606 n = hist_num - hist_max;
607
608 i = hist_add_idx + 1;
609 while (1) {
610 if (i > hist_max)
611 i = 0;
612 if (i == hist_add_idx)
613 break;
614 printf("%s\n", hist_list[i]);
615 n++;
616 i++;
617 }
618}
Stefan Roese3ca91222006-07-27 16:11:19 +0200619#endif /* CONFIG_CMDLINE_EDITING */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200620
621#define BEGINNING_OF_LINE() { \
622 while (num) { \
623 getcmd_putch(CTL_BACKSPACE); \
624 num--; \
625 } \
626}
627
628#define ERASE_TO_EOL() { \
629 if (num < eol_num) { \
Mike Frysinger8faba482010-07-23 05:28:15 -0400630 printf("%*s", (int)(eol_num - num), ""); \
631 do { \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200632 getcmd_putch(CTL_BACKSPACE); \
Mike Frysinger8faba482010-07-23 05:28:15 -0400633 } while (--eol_num > num); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200634 } \
635}
636
637#define REFRESH_TO_EOL() { \
638 if (num < eol_num) { \
639 wlen = eol_num - num; \
640 putnstr(buf + num, wlen); \
641 num = eol_num; \
642 } \
643}
644
645static void cread_add_char(char ichar, int insert, unsigned long *num,
646 unsigned long *eol_num, char *buf, unsigned long len)
647{
648 unsigned long wlen;
649
650 /* room ??? */
651 if (insert || *num == *eol_num) {
652 if (*eol_num > len - 1) {
653 getcmd_cbeep();
654 return;
655 }
656 (*eol_num)++;
657 }
658
659 if (insert) {
660 wlen = *eol_num - *num;
661 if (wlen > 1) {
662 memmove(&buf[*num+1], &buf[*num], wlen-1);
663 }
664
665 buf[*num] = ichar;
666 putnstr(buf + *num, wlen);
667 (*num)++;
668 while (--wlen) {
669 getcmd_putch(CTL_BACKSPACE);
670 }
671 } else {
672 /* echo the character */
673 wlen = 1;
674 buf[*num] = ichar;
675 putnstr(buf + *num, wlen);
676 (*num)++;
677 }
678}
679
680static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
681 unsigned long *eol_num, char *buf, unsigned long len)
682{
683 while (strsize--) {
684 cread_add_char(*str, insert, num, eol_num, buf, len);
685 str++;
686 }
687}
688
Heiko Schocher9c348312012-01-16 21:13:05 +0000689static int cread_line(const char *const prompt, char *buf, unsigned int *len,
690 int timeout)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200691{
692 unsigned long num = 0;
693 unsigned long eol_num = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200694 unsigned long wlen;
695 char ichar;
696 int insert = 1;
697 int esc_len = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200698 char esc_save[8];
Peter Tyserecc55002009-10-25 15:12:54 -0500699 int init_len = strlen(buf);
Rob Herring6d90c2d2012-08-17 12:59:18 -0500700 int rc;
Peter Tyserecc55002009-10-25 15:12:54 -0500701
702 if (init_len)
703 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
Wolfgang Denk501090a2006-07-21 11:33:45 +0200704
705 while (1) {
Rob Herring6d90c2d2012-08-17 12:59:18 -0500706 rc = wait_for_ch_timeout(timeout, endtime);
707 if (rc < 0)
708 return rc;
709 timeout = 0;
Andreas Engel00ac50e2008-01-09 17:10:56 +0100710
Wolfgang Denk501090a2006-07-21 11:33:45 +0200711 ichar = getcmd_getch();
712
713 if ((ichar == '\n') || (ichar == '\r')) {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200714 putc('\n');
Wolfgang Denk501090a2006-07-21 11:33:45 +0200715 break;
716 }
717
718 /*
719 * handle standard linux xterm esc sequences for arrow key, etc.
720 */
721 if (esc_len != 0) {
722 if (esc_len == 1) {
723 if (ichar == '[') {
724 esc_save[esc_len] = ichar;
725 esc_len = 2;
726 } else {
727 cread_add_str(esc_save, esc_len, insert,
728 &num, &eol_num, buf, *len);
729 esc_len = 0;
730 }
731 continue;
732 }
733
734 switch (ichar) {
735
736 case 'D': /* <- key */
737 ichar = CTL_CH('b');
738 esc_len = 0;
739 break;
740 case 'C': /* -> key */
741 ichar = CTL_CH('f');
742 esc_len = 0;
743 break; /* pass off to ^F handler */
744 case 'H': /* Home key */
745 ichar = CTL_CH('a');
746 esc_len = 0;
747 break; /* pass off to ^A handler */
748 case 'A': /* up arrow */
749 ichar = CTL_CH('p');
750 esc_len = 0;
751 break; /* pass off to ^P handler */
752 case 'B': /* down arrow */
753 ichar = CTL_CH('n');
754 esc_len = 0;
755 break; /* pass off to ^N handler */
756 default:
757 esc_save[esc_len++] = ichar;
758 cread_add_str(esc_save, esc_len, insert,
759 &num, &eol_num, buf, *len);
760 esc_len = 0;
761 continue;
762 }
763 }
764
765 switch (ichar) {
766 case 0x1b:
767 if (esc_len == 0) {
768 esc_save[esc_len] = ichar;
769 esc_len = 1;
770 } else {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200771 puts("impossible condition #876\n");
Wolfgang Denk501090a2006-07-21 11:33:45 +0200772 esc_len = 0;
773 }
774 break;
775
776 case CTL_CH('a'):
777 BEGINNING_OF_LINE();
778 break;
779 case CTL_CH('c'): /* ^C - break */
780 *buf = '\0'; /* discard input */
781 return (-1);
782 case CTL_CH('f'):
783 if (num < eol_num) {
784 getcmd_putch(buf[num]);
785 num++;
786 }
787 break;
788 case CTL_CH('b'):
789 if (num) {
790 getcmd_putch(CTL_BACKSPACE);
791 num--;
792 }
793 break;
794 case CTL_CH('d'):
795 if (num < eol_num) {
796 wlen = eol_num - num - 1;
797 if (wlen) {
798 memmove(&buf[num], &buf[num+1], wlen);
799 putnstr(buf + num, wlen);
800 }
801
802 getcmd_putch(' ');
803 do {
804 getcmd_putch(CTL_BACKSPACE);
805 } while (wlen--);
806 eol_num--;
807 }
808 break;
809 case CTL_CH('k'):
810 ERASE_TO_EOL();
811 break;
812 case CTL_CH('e'):
813 REFRESH_TO_EOL();
814 break;
815 case CTL_CH('o'):
816 insert = !insert;
817 break;
818 case CTL_CH('x'):
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100819 case CTL_CH('u'):
Wolfgang Denk501090a2006-07-21 11:33:45 +0200820 BEGINNING_OF_LINE();
821 ERASE_TO_EOL();
822 break;
823 case DEL:
824 case DEL7:
825 case 8:
826 if (num) {
827 wlen = eol_num - num;
828 num--;
829 memmove(&buf[num], &buf[num+1], wlen);
830 getcmd_putch(CTL_BACKSPACE);
831 putnstr(buf + num, wlen);
832 getcmd_putch(' ');
833 do {
834 getcmd_putch(CTL_BACKSPACE);
835 } while (wlen--);
836 eol_num--;
837 }
838 break;
839 case CTL_CH('p'):
840 case CTL_CH('n'):
841 {
842 char * hline;
843
844 esc_len = 0;
845
846 if (ichar == CTL_CH('p'))
847 hline = hist_prev();
848 else
849 hline = hist_next();
850
851 if (!hline) {
852 getcmd_cbeep();
853 continue;
854 }
855
856 /* nuke the current line */
857 /* first, go home */
858 BEGINNING_OF_LINE();
859
860 /* erase to end of line */
861 ERASE_TO_EOL();
862
863 /* copy new line into place and display */
864 strcpy(buf, hline);
865 eol_num = strlen(buf);
866 REFRESH_TO_EOL();
867 continue;
868 }
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100869#ifdef CONFIG_AUTO_COMPLETE
870 case '\t': {
871 int num2, col;
872
873 /* do not autocomplete when in the middle */
874 if (num < eol_num) {
875 getcmd_cbeep();
876 break;
877 }
878
879 buf[num] = '\0';
880 col = strlen(prompt) + eol_num;
881 num2 = num;
882 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
883 col = num2 - num;
884 num += col;
885 eol_num += col;
886 }
887 break;
888 }
889#endif
Wolfgang Denk501090a2006-07-21 11:33:45 +0200890 default:
891 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
892 break;
893 }
894 }
895 *len = eol_num;
896 buf[eol_num] = '\0'; /* lose the newline */
897
898 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
899 cread_add_to_hist(buf);
900 hist_cur = hist_add_idx;
901
Peter Tyserf9239432009-10-25 15:12:53 -0500902 return 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200903}
904
905#endif /* CONFIG_CMDLINE_EDITING */
906
wdenkc6097192002-11-03 00:24:07 +0000907/****************************************************************************/
908
909/*
910 * Prompt for input and read a line.
911 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
912 * time out when time goes past endtime (timebase time in ticks).
913 * Return: number of read characters
914 * -1 if break
915 * -2 if timed out
916 */
917int readline (const char *const prompt)
918{
Peter Tyserecc55002009-10-25 15:12:54 -0500919 /*
920 * If console_buffer isn't 0-length the user will be prompted to modify
921 * it instead of entering it from scratch as desired.
922 */
923 console_buffer[0] = '\0';
924
Heiko Schocher9c348312012-01-16 21:13:05 +0000925 return readline_into_buffer(prompt, console_buffer, 0);
James Yang6636b622008-01-09 11:17:49 -0600926}
927
928
Heiko Schocher9c348312012-01-16 21:13:05 +0000929int readline_into_buffer(const char *const prompt, char *buffer, int timeout)
James Yang6636b622008-01-09 11:17:49 -0600930{
931 char *p = buffer;
John Rigby102afa22012-12-06 18:35:56 -0700932 int rc;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200933#ifdef CONFIG_CMDLINE_EDITING
Peter Tyser8804ae32010-09-29 13:30:56 -0500934 unsigned int len = CONFIG_SYS_CBSIZE;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200935 static int initted = 0;
936
James Yang597f6c22008-05-05 10:22:53 -0500937 /*
938 * History uses a global array which is not
939 * writable until after relocation to RAM.
940 * Revert to non-history version if still
941 * running from flash.
942 */
943 if (gd->flags & GD_FLG_RELOC) {
944 if (!initted) {
945 hist_init();
946 initted = 1;
947 }
948
Peter Tysere491a712009-10-25 15:12:52 -0500949 if (prompt)
950 puts (prompt);
James Yang597f6c22008-05-05 10:22:53 -0500951
Heiko Schocher9c348312012-01-16 21:13:05 +0000952 rc = cread_line(prompt, p, &len, timeout);
James Yang597f6c22008-05-05 10:22:53 -0500953 return rc < 0 ? rc : len;
954
955 } else {
956#endif /* CONFIG_CMDLINE_EDITING */
Kumar Gala0ec59522008-01-10 02:22:05 -0600957 char * p_buf = p;
wdenkc6097192002-11-03 00:24:07 +0000958 int n = 0; /* buffer index */
959 int plen = 0; /* prompt length */
960 int col; /* output column cnt */
961 char c;
962
963 /* print prompt */
964 if (prompt) {
965 plen = strlen (prompt);
966 puts (prompt);
967 }
968 col = plen;
969
970 for (;;) {
Rob Herring6d90c2d2012-08-17 12:59:18 -0500971 rc = wait_for_ch_timeout(timeout, endtime);
972 if (rc < 0)
973 return rc;
974 timeout = 0;
975
wdenkc6097192002-11-03 00:24:07 +0000976 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
977
978#ifdef CONFIG_SHOW_ACTIVITY
979 while (!tstc()) {
wdenkc6097192002-11-03 00:24:07 +0000980 show_activity(0);
Jens Scharsig30dc1652010-04-09 19:02:38 +0200981 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000982 }
983#endif
984 c = getc();
985
986 /*
987 * Special character handling
988 */
989 switch (c) {
990 case '\r': /* Enter */
991 case '\n':
992 *p = '\0';
993 puts ("\r\n");
James Yang6636b622008-01-09 11:17:49 -0600994 return (p - p_buf);
wdenkc6097192002-11-03 00:24:07 +0000995
wdenk27aa8182004-03-23 22:37:33 +0000996 case '\0': /* nul */
997 continue;
998
wdenkc6097192002-11-03 00:24:07 +0000999 case 0x03: /* ^C - break */
James Yang6636b622008-01-09 11:17:49 -06001000 p_buf[0] = '\0'; /* discard input */
wdenkc6097192002-11-03 00:24:07 +00001001 return (-1);
1002
1003 case 0x15: /* ^U - erase line */
1004 while (col > plen) {
1005 puts (erase_seq);
1006 --col;
1007 }
James Yang6636b622008-01-09 11:17:49 -06001008 p = p_buf;
wdenkc6097192002-11-03 00:24:07 +00001009 n = 0;
1010 continue;
1011
Wolfgang Denk1636d1c2007-06-22 23:59:00 +02001012 case 0x17: /* ^W - erase word */
James Yang6636b622008-01-09 11:17:49 -06001013 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001014 while ((n > 0) && (*p != ' ')) {
James Yang6636b622008-01-09 11:17:49 -06001015 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001016 }
1017 continue;
1018
1019 case 0x08: /* ^H - backspace */
1020 case 0x7F: /* DEL - backspace */
James Yang6636b622008-01-09 11:17:49 -06001021 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001022 continue;
1023
1024 default:
1025 /*
1026 * Must be a normal character then
1027 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001028 if (n < CONFIG_SYS_CBSIZE-2) {
wdenkc6097192002-11-03 00:24:07 +00001029 if (c == '\t') { /* expand TABs */
wdenk04a85b32004-04-15 18:22:41 +00001030#ifdef CONFIG_AUTO_COMPLETE
1031 /* if auto completion triggered just continue */
1032 *p = '\0';
1033 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
James Yang6636b622008-01-09 11:17:49 -06001034 p = p_buf + n; /* reset */
wdenk04a85b32004-04-15 18:22:41 +00001035 continue;
1036 }
1037#endif
wdenkc6097192002-11-03 00:24:07 +00001038 puts (tab_seq+(col&07));
1039 col += 8 - (col&07);
1040 } else {
1041 ++col; /* echo input */
1042 putc (c);
1043 }
1044 *p++ = c;
1045 ++n;
1046 } else { /* Buffer full */
1047 putc ('\a');
1048 }
1049 }
1050 }
James Yang597f6c22008-05-05 10:22:53 -05001051#ifdef CONFIG_CMDLINE_EDITING
1052 }
1053#endif
wdenkc6097192002-11-03 00:24:07 +00001054}
1055
1056/****************************************************************************/
1057
1058static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1059{
1060 char *s;
1061
1062 if (*np == 0) {
1063 return (p);
1064 }
1065
1066 if (*(--p) == '\t') { /* will retype the whole line */
1067 while (*colp > plen) {
1068 puts (erase_seq);
1069 (*colp)--;
1070 }
1071 for (s=buffer; s<p; ++s) {
1072 if (*s == '\t') {
1073 puts (tab_seq+((*colp) & 07));
1074 *colp += 8 - ((*colp) & 07);
1075 } else {
1076 ++(*colp);
1077 putc (*s);
1078 }
1079 }
1080 } else {
1081 puts (erase_seq);
1082 (*colp)--;
1083 }
1084 (*np)--;
1085 return (p);
1086}
1087
1088/****************************************************************************/
1089
1090int parse_line (char *line, char *argv[])
1091{
1092 int nargs = 0;
1093
1094#ifdef DEBUG_PARSER
1095 printf ("parse_line: \"%s\"\n", line);
1096#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001097 while (nargs < CONFIG_SYS_MAXARGS) {
wdenkc6097192002-11-03 00:24:07 +00001098
1099 /* skip any white space */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +00001100 while (isblank(*line))
wdenkc6097192002-11-03 00:24:07 +00001101 ++line;
wdenkc6097192002-11-03 00:24:07 +00001102
1103 if (*line == '\0') { /* end of line, no more args */
1104 argv[nargs] = NULL;
1105#ifdef DEBUG_PARSER
1106 printf ("parse_line: nargs=%d\n", nargs);
1107#endif
1108 return (nargs);
1109 }
1110
1111 argv[nargs++] = line; /* begin of argument string */
1112
1113 /* find end of string */
Jason Hobbs4d91a6e2011-08-23 11:06:54 +00001114 while (*line && !isblank(*line))
wdenkc6097192002-11-03 00:24:07 +00001115 ++line;
wdenkc6097192002-11-03 00:24:07 +00001116
1117 if (*line == '\0') { /* end of line, no more args */
1118 argv[nargs] = NULL;
1119#ifdef DEBUG_PARSER
1120 printf ("parse_line: nargs=%d\n", nargs);
1121#endif
1122 return (nargs);
1123 }
1124
1125 *line++ = '\0'; /* terminate current arg */
1126 }
1127
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001128 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
wdenkc6097192002-11-03 00:24:07 +00001129
1130#ifdef DEBUG_PARSER
1131 printf ("parse_line: nargs=%d\n", nargs);
1132#endif
1133 return (nargs);
1134}
1135
1136/****************************************************************************/
1137
Simon Glass7fed89e2012-02-14 19:59:22 +00001138#ifndef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +00001139static void process_macros (const char *input, char *output)
1140{
1141 char c, prev;
1142 const char *varname_start = NULL;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001143 int inputcnt = strlen (input);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001144 int outputcnt = CONFIG_SYS_CBSIZE;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001145 int state = 0; /* 0 = waiting for '$' */
1146
1147 /* 1 = waiting for '(' or '{' */
1148 /* 2 = waiting for ')' or '}' */
1149 /* 3 = waiting for ''' */
wdenkc6097192002-11-03 00:24:07 +00001150#ifdef DEBUG_PARSER
1151 char *output_start = output;
1152
Wolfgang Denk19973b62006-10-28 00:38:39 +02001153 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1154 input);
wdenkc6097192002-11-03 00:24:07 +00001155#endif
1156
Wolfgang Denk19973b62006-10-28 00:38:39 +02001157 prev = '\0'; /* previous character */
wdenkc6097192002-11-03 00:24:07 +00001158
1159 while (inputcnt && outputcnt) {
wdenk8bde7f72003-06-27 21:31:46 +00001160 c = *input++;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001161 inputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001162
Wolfgang Denk19973b62006-10-28 00:38:39 +02001163 if (state != 3) {
1164 /* remove one level of escape characters */
1165 if ((c == '\\') && (prev != '\\')) {
1166 if (inputcnt-- == 0)
1167 break;
1168 prev = c;
1169 c = *input++;
1170 }
wdenka25f8622003-01-02 23:57:29 +00001171 }
wdenkc6097192002-11-03 00:24:07 +00001172
Wolfgang Denk19973b62006-10-28 00:38:39 +02001173 switch (state) {
1174 case 0: /* Waiting for (unescaped) $ */
1175 if ((c == '\'') && (prev != '\\')) {
1176 state = 3;
1177 break;
1178 }
1179 if ((c == '$') && (prev != '\\')) {
1180 state++;
1181 } else {
wdenkc6097192002-11-03 00:24:07 +00001182 *(output++) = c;
1183 outputcnt--;
1184 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001185 break;
1186 case 1: /* Waiting for ( */
1187 if (c == '(' || c == '{') {
1188 state++;
1189 varname_start = input;
1190 } else {
1191 state = 0;
1192 *(output++) = '$';
1193 outputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001194
Wolfgang Denk19973b62006-10-28 00:38:39 +02001195 if (outputcnt) {
1196 *(output++) = c;
wdenkc6097192002-11-03 00:24:07 +00001197 outputcnt--;
1198 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001199 }
1200 break;
1201 case 2: /* Waiting for ) */
1202 if (c == ')' || c == '}') {
1203 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001204 char envname[CONFIG_SYS_CBSIZE], *envval;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001205 int envcnt = input - varname_start - 1; /* Varname # of chars */
1206
1207 /* Get the varname */
1208 for (i = 0; i < envcnt; i++) {
1209 envname[i] = varname_start[i];
1210 }
1211 envname[i] = 0;
1212
1213 /* Get its value */
1214 envval = getenv (envname);
1215
1216 /* Copy into the line if it exists */
1217 if (envval != NULL)
1218 while ((*envval) && outputcnt) {
1219 *(output++) = *(envval++);
1220 outputcnt--;
1221 }
1222 /* Look for another '$' */
1223 state = 0;
1224 }
1225 break;
1226 case 3: /* Waiting for ' */
1227 if ((c == '\'') && (prev != '\\')) {
1228 state = 0;
1229 } else {
1230 *(output++) = c;
1231 outputcnt--;
1232 }
1233 break;
wdenkc6097192002-11-03 00:24:07 +00001234 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001235 prev = c;
wdenkc6097192002-11-03 00:24:07 +00001236 }
1237
1238 if (outputcnt)
1239 *output = 0;
Bartlomiej Sieka9160b962007-05-27 17:04:18 +02001240 else
1241 *(output - 1) = 0;
wdenkc6097192002-11-03 00:24:07 +00001242
1243#ifdef DEBUG_PARSER
1244 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
Wolfgang Denk19973b62006-10-28 00:38:39 +02001245 strlen (output_start), output_start);
wdenkc6097192002-11-03 00:24:07 +00001246#endif
1247}
1248
1249/****************************************************************************
1250 * returns:
1251 * 1 - command executed, repeatable
1252 * 0 - command executed but not repeatable, interrupted commands are
1253 * always considered not repeatable
1254 * -1 - not executed (unrecognized, bootd recursion or too many args)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001255 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
wdenkc6097192002-11-03 00:24:07 +00001256 * considered unrecognized)
1257 *
1258 * WARNING:
1259 *
1260 * We must create a temporary copy of the command since the command we get
1261 * may be the result from getenv(), which returns a pointer directly to
1262 * the environment data, which may change magicly when the command we run
1263 * creates or modifies environment variables (like "bootp" does).
1264 */
Simon Glass53071532012-02-14 19:59:21 +00001265static int builtin_run_command(const char *cmd, int flag)
wdenkc6097192002-11-03 00:24:07 +00001266{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001267 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
wdenkc6097192002-11-03 00:24:07 +00001268 char *token; /* start of token in cmdbuf */
1269 char *sep; /* end of token (separator) in cmdbuf */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001270 char finaltoken[CONFIG_SYS_CBSIZE];
wdenkc6097192002-11-03 00:24:07 +00001271 char *str = cmdbuf;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001272 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
wdenkf07771c2003-05-28 08:06:31 +00001273 int argc, inquotes;
wdenkc6097192002-11-03 00:24:07 +00001274 int repeatable = 1;
wdenkf07771c2003-05-28 08:06:31 +00001275 int rc = 0;
wdenkc6097192002-11-03 00:24:07 +00001276
1277#ifdef DEBUG_PARSER
1278 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1279 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1280 puts ("\"\n");
1281#endif
1282
1283 clear_ctrlc(); /* forget any previous Control C */
1284
1285 if (!cmd || !*cmd) {
1286 return -1; /* empty command */
1287 }
1288
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001289 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
wdenkc6097192002-11-03 00:24:07 +00001290 puts ("## Command too long!\n");
1291 return -1;
1292 }
1293
1294 strcpy (cmdbuf, cmd);
1295
1296 /* Process separators and check for invalid
1297 * repeatable commands
1298 */
1299
1300#ifdef DEBUG_PARSER
1301 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1302#endif
1303 while (*str) {
1304
1305 /*
1306 * Find separator, or string end
1307 * Allow simple escape of ';' by writing "\;"
1308 */
wdenka25f8622003-01-02 23:57:29 +00001309 for (inquotes = 0, sep = str; *sep; sep++) {
1310 if ((*sep=='\'') &&
1311 (*(sep-1) != '\\'))
1312 inquotes=!inquotes;
1313
1314 if (!inquotes &&
1315 (*sep == ';') && /* separator */
wdenkc6097192002-11-03 00:24:07 +00001316 ( sep != str) && /* past string start */
1317 (*(sep-1) != '\\')) /* and NOT escaped */
1318 break;
1319 }
1320
1321 /*
1322 * Limit the token to data between separators
1323 */
1324 token = str;
1325 if (*sep) {
1326 str = sep + 1; /* start of command for next pass */
1327 *sep = '\0';
1328 }
1329 else
1330 str = sep; /* no more commands for next pass */
1331#ifdef DEBUG_PARSER
1332 printf ("token: \"%s\"\n", token);
1333#endif
1334
1335 /* find macros in this token and replace them */
1336 process_macros (token, finaltoken);
1337
1338 /* Extract arguments */
Wolfgang Denk1264b402006-03-12 02:20:55 +01001339 if ((argc = parse_line (finaltoken, argv)) == 0) {
1340 rc = -1; /* no command at all */
1341 continue;
1342 }
wdenkc6097192002-11-03 00:24:07 +00001343
Timo Ketola030fca52012-04-22 23:57:27 +00001344 if (cmd_process(flag, argc, argv, &repeatable))
1345 rc = -1;
wdenkc6097192002-11-03 00:24:07 +00001346
1347 /* Did the user stop this? */
1348 if (had_ctrlc ())
Detlev Zundel5afb2022007-05-23 18:47:48 +02001349 return -1; /* if stopped then not repeatable */
wdenkc6097192002-11-03 00:24:07 +00001350 }
1351
wdenkf07771c2003-05-28 08:06:31 +00001352 return rc ? rc : repeatable;
wdenkc6097192002-11-03 00:24:07 +00001353}
Simon Glass7fed89e2012-02-14 19:59:22 +00001354#endif
wdenkc6097192002-11-03 00:24:07 +00001355
Simon Glass53071532012-02-14 19:59:21 +00001356/*
1357 * Run a command using the selected parser.
1358 *
1359 * @param cmd Command to run
1360 * @param flag Execution flags (CMD_FLAG_...)
1361 * @return 0 on success, or != 0 on error.
1362 */
1363int run_command(const char *cmd, int flag)
1364{
1365#ifndef CONFIG_SYS_HUSH_PARSER
1366 /*
1367 * builtin_run_command can return 0 or 1 for success, so clean up
1368 * its result.
1369 */
1370 if (builtin_run_command(cmd, flag) == -1)
1371 return 1;
1372
1373 return 0;
1374#else
1375 return parse_string_outer(cmd,
1376 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP);
1377#endif
1378}
1379
Simon Glassd51004a2012-03-30 21:30:55 +00001380#ifndef CONFIG_SYS_HUSH_PARSER
1381/**
1382 * Execute a list of command separated by ; or \n using the built-in parser.
1383 *
1384 * This function cannot take a const char * for the command, since if it
1385 * finds newlines in the string, it replaces them with \0.
1386 *
1387 * @param cmd String containing list of commands
1388 * @param flag Execution flags (CMD_FLAG_...)
1389 * @return 0 on success, or != 0 on error.
1390 */
1391static int builtin_run_command_list(char *cmd, int flag)
1392{
1393 char *line, *next;
1394 int rcode = 0;
1395
1396 /*
1397 * Break into individual lines, and execute each line; terminate on
1398 * error.
1399 */
1400 line = next = cmd;
1401 while (*next) {
1402 if (*next == '\n') {
1403 *next = '\0';
1404 /* run only non-empty commands */
1405 if (*line) {
1406 debug("** exec: \"%s\"\n", line);
1407 if (builtin_run_command(line, 0) < 0) {
1408 rcode = 1;
1409 break;
1410 }
1411 }
1412 line = next + 1;
1413 }
1414 ++next;
1415 }
1416 if (rcode == 0 && *line)
1417 rcode = (builtin_run_command(line, 0) >= 0);
1418
1419 return rcode;
1420}
1421#endif
1422
1423int run_command_list(const char *cmd, int len, int flag)
1424{
1425 int need_buff = 1;
1426 char *buff = (char *)cmd; /* cast away const */
1427 int rcode = 0;
1428
1429 if (len == -1) {
1430 len = strlen(cmd);
1431#ifdef CONFIG_SYS_HUSH_PARSER
1432 /* hush will never change our string */
1433 need_buff = 0;
1434#else
1435 /* the built-in parser will change our string if it sees \n */
1436 need_buff = strchr(cmd, '\n') != NULL;
1437#endif
1438 }
1439 if (need_buff) {
1440 buff = malloc(len + 1);
1441 if (!buff)
1442 return 1;
1443 memcpy(buff, cmd, len);
1444 buff[len] = '\0';
1445 }
1446#ifdef CONFIG_SYS_HUSH_PARSER
1447 rcode = parse_string_outer(buff, FLAG_PARSE_SEMICOLON);
1448#else
1449 /*
1450 * This function will overwrite any \n it sees with a \0, which
1451 * is why it can't work with a const char *. Here we are making
1452 * using of internal knowledge of this function, to avoid always
1453 * doing a malloc() which is actually required only in a case that
1454 * is pretty rare.
1455 */
1456 rcode = builtin_run_command_list(buff, flag);
1457 if (need_buff)
1458 free(buff);
1459#endif
1460
1461 return rcode;
1462}
1463
wdenkc6097192002-11-03 00:24:07 +00001464/****************************************************************************/
1465
Jon Loeligerc3517f92007-07-08 18:10:08 -05001466#if defined(CONFIG_CMD_RUN)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001467int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +00001468{
1469 int i;
wdenkc6097192002-11-03 00:24:07 +00001470
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001471 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +00001472 return CMD_RET_USAGE;
wdenkc6097192002-11-03 00:24:07 +00001473
1474 for (i=1; i<argc; ++i) {
wdenk3e386912003-04-05 00:53:31 +00001475 char *arg;
1476
1477 if ((arg = getenv (argv[i])) == NULL) {
1478 printf ("## Error: \"%s\" not defined\n", argv[i]);
1479 return 1;
1480 }
Jason Hobbsc8a20792011-08-31 05:37:24 +00001481
Simon Glass009dde12012-02-14 19:59:20 +00001482 if (run_command(arg, flag) != 0)
wdenk3e386912003-04-05 00:53:31 +00001483 return 1;
wdenkc6097192002-11-03 00:24:07 +00001484 }
wdenk3e386912003-04-05 00:53:31 +00001485 return 0;
wdenkc6097192002-11-03 00:24:07 +00001486}
Jon Loeliger90253172007-07-10 11:02:44 -05001487#endif