blob: 8d548dbc85d5f7ba592e64a1bb63668a0466e5fa [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>
Wolfgang Denkd9631ec2005-09-30 15:18:23 +020033#ifdef CONFIG_MODEM_SUPPORT
34#include <malloc.h> /* for free() prototype */
35#endif
wdenkc6097192002-11-03 00:24:07 +000036
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020037#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +000038#include <hush.h>
39#endif
40
wdenkbdccc4f2003-08-05 17:43:17 +000041#include <post.h>
42
James Yang597f6c22008-05-05 10:22:53 -050043#if defined(CONFIG_SILENT_CONSOLE) || defined(CONFIG_POST) || defined(CONFIG_CMDLINE_EDITING)
Wolfgang Denkd87080b2006-03-31 18:32:53 +020044DECLARE_GLOBAL_DATA_PTR;
45#endif
46
Heiko Schocherfad63402007-07-13 09:54:17 +020047/*
48 * Board-specific Platform code can reimplement show_boot_progress () if needed
49 */
50void inline __show_boot_progress (int val) {}
Emil Medve5e2c08c2009-05-12 13:48:32 -050051void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
Heiko Schocherfad63402007-07-13 09:54:17 +020052
wdenk8bde7f72003-06-27 21:31:46 +000053#if defined(CONFIG_BOOT_RETRY_TIME) && defined(CONFIG_RESET_TO_RETRY)
Wolfgang Denk54841ab2010-06-28 22:00:46 +020054extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); /* for do_reset() prototype */
wdenk8bde7f72003-06-27 21:31:46 +000055#endif
56
Wolfgang Denk54841ab2010-06-28 22:00:46 +020057extern int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk8bde7f72003-06-27 21:31:46 +000058
Bartlomiej Sieka4bae9092008-10-01 15:26:31 +020059#if defined(CONFIG_UPDATE_TFTP)
60void update_tftp (void);
61#endif /* CONFIG_UPDATE_TFTP */
wdenk8bde7f72003-06-27 21:31:46 +000062
wdenkc6097192002-11-03 00:24:07 +000063#define MAX_DELAY_STOP_STR 32
64
wdenkc6097192002-11-03 00:24:07 +000065#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
66static int abortboot(int);
67#endif
68
69#undef DEBUG_PARSER
70
John Schmoller6475b9f2010-03-12 09:49:23 -060071char console_buffer[CONFIG_SYS_CBSIZE + 1]; /* console I/O buffer */
wdenkc6097192002-11-03 00:24:07 +000072
Stefan Roese3ca91222006-07-27 16:11:19 +020073static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen);
wdenkc6097192002-11-03 00:24:07 +000074static char erase_seq[] = "\b \b"; /* erase sequence */
75static char tab_seq[] = " "; /* used to expand TABs */
76
77#ifdef CONFIG_BOOT_RETRY_TIME
78static uint64_t endtime = 0; /* must be set, default is instant timeout */
79static int retry_time = -1; /* -1 so can call readline before main_loop */
80#endif
81
82#define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk())
83
84#ifndef CONFIG_BOOT_RETRY_MIN
85#define CONFIG_BOOT_RETRY_MIN CONFIG_BOOT_RETRY_TIME
86#endif
87
88#ifdef CONFIG_MODEM_SUPPORT
89int do_mdm_init = 0;
90extern void mdm_init(void); /* defined in board.c */
91#endif
92
93/***************************************************************************
94 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
95 * returns: 0 - no key string, allow autoboot
96 * 1 - got key string, abort
97 */
98#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
99# if defined(CONFIG_AUTOBOOT_KEYED)
100static __inline__ int abortboot(int bootdelay)
101{
102 int abort = 0;
103 uint64_t etime = endtick(bootdelay);
Wolfgang Denk19973b62006-10-28 00:38:39 +0200104 struct {
wdenkc6097192002-11-03 00:24:07 +0000105 char* str;
106 u_int len;
107 int retry;
108 }
Wolfgang Denk19973b62006-10-28 00:38:39 +0200109 delaykey [] = {
wdenkc6097192002-11-03 00:24:07 +0000110 { str: getenv ("bootdelaykey"), retry: 1 },
111 { str: getenv ("bootdelaykey2"), retry: 1 },
112 { str: getenv ("bootstopkey"), retry: 0 },
113 { str: getenv ("bootstopkey2"), retry: 0 },
114 };
115
116 char presskey [MAX_DELAY_STOP_STR];
117 u_int presskey_len = 0;
118 u_int presskey_max = 0;
119 u_int i;
120
121# ifdef CONFIG_AUTOBOOT_PROMPT
Stefan Roesef2302d42008-08-06 14:05:38 +0200122 printf(CONFIG_AUTOBOOT_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000123# endif
124
125# ifdef CONFIG_AUTOBOOT_DELAY_STR
126 if (delaykey[0].str == NULL)
127 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
128# endif
129# ifdef CONFIG_AUTOBOOT_DELAY_STR2
130 if (delaykey[1].str == NULL)
131 delaykey[1].str = CONFIG_AUTOBOOT_DELAY_STR2;
132# endif
133# ifdef CONFIG_AUTOBOOT_STOP_STR
134 if (delaykey[2].str == NULL)
135 delaykey[2].str = CONFIG_AUTOBOOT_STOP_STR;
136# endif
137# ifdef CONFIG_AUTOBOOT_STOP_STR2
138 if (delaykey[3].str == NULL)
139 delaykey[3].str = CONFIG_AUTOBOOT_STOP_STR2;
140# endif
141
142 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
143 delaykey[i].len = delaykey[i].str == NULL ?
144 0 : strlen (delaykey[i].str);
145 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
146 MAX_DELAY_STOP_STR : delaykey[i].len;
147
148 presskey_max = presskey_max > delaykey[i].len ?
149 presskey_max : delaykey[i].len;
150
151# if DEBUG_BOOTKEYS
152 printf("%s key:<%s>\n",
153 delaykey[i].retry ? "delay" : "stop",
154 delaykey[i].str ? delaykey[i].str : "NULL");
155# endif
156 }
157
158 /* In order to keep up with incoming data, check timeout only
159 * when catch up.
160 */
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100161 do {
162 if (tstc()) {
163 if (presskey_len < presskey_max) {
164 presskey [presskey_len ++] = getc();
165 }
166 else {
167 for (i = 0; i < presskey_max - 1; i ++)
168 presskey [i] = presskey [i + 1];
169
170 presskey [i] = getc();
171 }
172 }
173
wdenkc6097192002-11-03 00:24:07 +0000174 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i ++) {
175 if (delaykey[i].len > 0 &&
176 presskey_len >= delaykey[i].len &&
177 memcmp (presskey + presskey_len - delaykey[i].len,
wdenk8bde7f72003-06-27 21:31:46 +0000178 delaykey[i].str,
wdenkc6097192002-11-03 00:24:07 +0000179 delaykey[i].len) == 0) {
180# if DEBUG_BOOTKEYS
181 printf("got %skey\n",
182 delaykey[i].retry ? "delay" : "stop");
183# endif
184
185# ifdef CONFIG_BOOT_RETRY_TIME
186 /* don't retry auto boot */
187 if (! delaykey[i].retry)
188 retry_time = -1;
189# endif
190 abort = 1;
191 }
192 }
Peter Korsgaardc3284b02008-12-10 16:24:16 +0100193 } while (!abort && get_ticks() <= etime);
wdenkc6097192002-11-03 00:24:07 +0000194
wdenkc6097192002-11-03 00:24:07 +0000195# if DEBUG_BOOTKEYS
196 if (!abort)
Ladislav Michlada4d402007-04-25 16:01:26 +0200197 puts("key timeout\n");
wdenkc6097192002-11-03 00:24:07 +0000198# endif
199
dzu8cb81432003-10-24 13:14:45 +0000200#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200201 if (abort)
202 gd->flags &= ~GD_FLG_SILENT;
dzu8cb81432003-10-24 13:14:45 +0000203#endif
204
wdenkc6097192002-11-03 00:24:07 +0000205 return abort;
206}
207
208# else /* !defined(CONFIG_AUTOBOOT_KEYED) */
209
wdenkc7de8292002-11-19 11:04:11 +0000210#ifdef CONFIG_MENUKEY
211static int menukey = 0;
212#endif
213
wdenkc6097192002-11-03 00:24:07 +0000214static __inline__ int abortboot(int bootdelay)
215{
216 int abort = 0;
217
wdenkc7de8292002-11-19 11:04:11 +0000218#ifdef CONFIG_MENUPROMPT
Stefan Roesef2302d42008-08-06 14:05:38 +0200219 printf(CONFIG_MENUPROMPT);
wdenkc7de8292002-11-19 11:04:11 +0000220#else
wdenkc6097192002-11-03 00:24:07 +0000221 printf("Hit any key to stop autoboot: %2d ", bootdelay);
wdenkc7de8292002-11-19 11:04:11 +0000222#endif
wdenkc6097192002-11-03 00:24:07 +0000223
224#if defined CONFIG_ZERO_BOOTDELAY_CHECK
wdenk8bde7f72003-06-27 21:31:46 +0000225 /*
226 * Check if key already pressed
227 * Don't check if bootdelay < 0
228 */
wdenkc6097192002-11-03 00:24:07 +0000229 if (bootdelay >= 0) {
230 if (tstc()) { /* we got a key press */
231 (void) getc(); /* consume input */
wdenk4b9206e2004-03-23 22:14:11 +0000232 puts ("\b\b\b 0");
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200233 abort = 1; /* don't auto boot */
wdenkc6097192002-11-03 00:24:07 +0000234 }
wdenk8bde7f72003-06-27 21:31:46 +0000235 }
wdenkc6097192002-11-03 00:24:07 +0000236#endif
237
wdenkf72da342003-10-10 10:05:42 +0000238 while ((bootdelay > 0) && (!abort)) {
wdenkc6097192002-11-03 00:24:07 +0000239 int i;
240
241 --bootdelay;
242 /* delay 100 * 10ms */
243 for (i=0; !abort && i<100; ++i) {
244 if (tstc()) { /* we got a key press */
245 abort = 1; /* don't auto boot */
246 bootdelay = 0; /* no more delay */
wdenkc7de8292002-11-19 11:04:11 +0000247# ifdef CONFIG_MENUKEY
248 menukey = getc();
249# else
wdenkc6097192002-11-03 00:24:07 +0000250 (void) getc(); /* consume input */
wdenkc7de8292002-11-19 11:04:11 +0000251# endif
wdenkc6097192002-11-03 00:24:07 +0000252 break;
253 }
Ladislav Michlada4d402007-04-25 16:01:26 +0200254 udelay(10000);
wdenkc6097192002-11-03 00:24:07 +0000255 }
256
Ladislav Michlada4d402007-04-25 16:01:26 +0200257 printf("\b\b\b%2d ", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000258 }
259
Ladislav Michlada4d402007-04-25 16:01:26 +0200260 putc('\n');
wdenkc6097192002-11-03 00:24:07 +0000261
wdenkf72da342003-10-10 10:05:42 +0000262#ifdef CONFIG_SILENT_CONSOLE
Ladislav Michl4ec5bd52007-04-25 16:01:26 +0200263 if (abort)
264 gd->flags &= ~GD_FLG_SILENT;
wdenkf72da342003-10-10 10:05:42 +0000265#endif
266
wdenkc6097192002-11-03 00:24:07 +0000267 return abort;
268}
269# endif /* CONFIG_AUTOBOOT_KEYED */
270#endif /* CONFIG_BOOTDELAY >= 0 */
271
272/****************************************************************************/
273
274void main_loop (void)
275{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200276#ifndef CONFIG_SYS_HUSH_PARSER
277 static char lastcommand[CONFIG_SYS_CBSIZE] = { 0, };
wdenkc6097192002-11-03 00:24:07 +0000278 int len;
279 int rc = 1;
280 int flag;
281#endif
282
283#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
284 char *s;
285 int bootdelay;
286#endif
287#ifdef CONFIG_PREBOOT
288 char *p;
289#endif
wdenkbdccc4f2003-08-05 17:43:17 +0000290#ifdef CONFIG_BOOTCOUNT_LIMIT
291 unsigned long bootcount = 0;
292 unsigned long bootlimit = 0;
293 char *bcs;
294 char bcs_set[16];
295#endif /* CONFIG_BOOTCOUNT_LIMIT */
wdenkc6097192002-11-03 00:24:07 +0000296
297#if defined(CONFIG_VFD) && defined(VFD_TEST_LOGO)
298 ulong bmp = 0; /* default bitmap */
299 extern int trab_vfd (ulong bitmap);
300
301#ifdef CONFIG_MODEM_SUPPORT
302 if (do_mdm_init)
303 bmp = 1; /* alternate bitmap */
304#endif
305 trab_vfd (bmp);
306#endif /* CONFIG_VFD && VFD_TEST_LOGO */
307
wdenkbdccc4f2003-08-05 17:43:17 +0000308#ifdef CONFIG_BOOTCOUNT_LIMIT
309 bootcount = bootcount_load();
310 bootcount++;
311 bootcount_store (bootcount);
312 sprintf (bcs_set, "%lu", bootcount);
313 setenv ("bootcount", bcs_set);
314 bcs = getenv ("bootlimit");
315 bootlimit = bcs ? simple_strtoul (bcs, NULL, 10) : 0;
316#endif /* CONFIG_BOOTCOUNT_LIMIT */
317
wdenkc6097192002-11-03 00:24:07 +0000318#ifdef CONFIG_MODEM_SUPPORT
319 debug ("DEBUG: main_loop: do_mdm_init=%d\n", do_mdm_init);
320 if (do_mdm_init) {
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200321 char *str = strdup(getenv("mdm_cmd"));
wdenkc6097192002-11-03 00:24:07 +0000322 setenv ("preboot", str); /* set or delete definition */
323 if (str != NULL)
324 free (str);
325 mdm_init(); /* wait for modem connection */
326 }
327#endif /* CONFIG_MODEM_SUPPORT */
328
stroese05875972003-04-04 15:44:49 +0000329#ifdef CONFIG_VERSION_VARIABLE
330 {
331 extern char version_string[];
stroese05875972003-04-04 15:44:49 +0000332
stroese155cb012003-07-11 08:00:33 +0000333 setenv ("ver", version_string); /* set version variable */
stroese05875972003-04-04 15:44:49 +0000334 }
335#endif /* CONFIG_VERSION_VARIABLE */
336
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200337#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000338 u_boot_hush_start ();
339#endif
340
Heiko Schocher81473f62008-10-15 09:40:28 +0200341#if defined(CONFIG_HUSH_INIT_VAR)
342 hush_init_var ();
343#endif
344
wdenk04a85b32004-04-15 18:22:41 +0000345#ifdef CONFIG_AUTO_COMPLETE
346 install_auto_complete();
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
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200355# ifndef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000356 run_command (p, 0);
357# else
358 parse_string_outer(p, FLAG_PARSE_SEMICOLON |
359 FLAG_EXIT_FROM_LOOP);
360# endif
361
362# ifdef CONFIG_AUTOBOOT_KEYED
363 disable_ctrlc(prev); /* restore Control C checking */
364# endif
365 }
366#endif /* CONFIG_PREBOOT */
367
Wolfgang Denk143cd212010-03-11 23:56:03 +0100368#if defined(CONFIG_UPDATE_TFTP)
369 update_tftp ();
370#endif /* CONFIG_UPDATE_TFTP */
371
wdenkc6097192002-11-03 00:24:07 +0000372#if defined(CONFIG_BOOTDELAY) && (CONFIG_BOOTDELAY >= 0)
373 s = getenv ("bootdelay");
374 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
375
wdenka6c7ad22002-12-03 21:28:10 +0000376 debug ("### main_loop entered: bootdelay=%d\n\n", bootdelay);
wdenkc6097192002-11-03 00:24:07 +0000377
378# ifdef CONFIG_BOOT_RETRY_TIME
wdenk6dd652f2003-06-19 23:40:20 +0000379 init_cmd_timeout ();
wdenkc6097192002-11-03 00:24:07 +0000380# endif /* CONFIG_BOOT_RETRY_TIME */
381
Yuri Tikhonovb428f6a2008-02-04 14:11:03 +0100382#ifdef CONFIG_POST
383 if (gd->flags & GD_FLG_POSTFAIL) {
384 s = getenv("failbootcmd");
385 }
386 else
387#endif /* CONFIG_POST */
wdenkbdccc4f2003-08-05 17:43:17 +0000388#ifdef CONFIG_BOOTCOUNT_LIMIT
389 if (bootlimit && (bootcount > bootlimit)) {
390 printf ("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
391 (unsigned)bootlimit);
392 s = getenv ("altbootcmd");
393 }
394 else
395#endif /* CONFIG_BOOTCOUNT_LIMIT */
396 s = getenv ("bootcmd");
wdenka6c7ad22002-12-03 21:28:10 +0000397
398 debug ("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
399
wdenkc6097192002-11-03 00:24:07 +0000400 if (bootdelay >= 0 && s && !abortboot (bootdelay)) {
401# ifdef CONFIG_AUTOBOOT_KEYED
402 int prev = disable_ctrlc(1); /* disable Control C checking */
403# endif
404
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200405# ifndef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000406 run_command (s, 0);
407# else
408 parse_string_outer(s, FLAG_PARSE_SEMICOLON |
409 FLAG_EXIT_FROM_LOOP);
410# endif
411
412# ifdef CONFIG_AUTOBOOT_KEYED
413 disable_ctrlc(prev); /* restore Control C checking */
414# endif
415 }
wdenkc7de8292002-11-19 11:04:11 +0000416
417# ifdef CONFIG_MENUKEY
wdenka6c7ad22002-12-03 21:28:10 +0000418 if (menukey == CONFIG_MENUKEY) {
wdenkc7de8292002-11-19 11:04:11 +0000419 s = getenv("menucmd");
wdenka6c7ad22002-12-03 21:28:10 +0000420 if (s) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200421# ifndef CONFIG_SYS_HUSH_PARSER
wdenk6225c5d2005-01-09 23:33:49 +0000422 run_command (s, 0);
wdenkc7de8292002-11-19 11:04:11 +0000423# else
424 parse_string_outer(s, FLAG_PARSE_SEMICOLON |
425 FLAG_EXIT_FROM_LOOP);
426# endif
427 }
428 }
429#endif /* CONFIG_MENUKEY */
Wolfgang Denk953b7e62010-06-13 18:28:54 +0200430#endif /* CONFIG_BOOTDELAY */
wdenkc7de8292002-11-19 11:04:11 +0000431
wdenkc6097192002-11-03 00:24:07 +0000432 /*
433 * Main Loop for Monitor Command Processing
434 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200435#ifdef CONFIG_SYS_HUSH_PARSER
wdenkc6097192002-11-03 00:24:07 +0000436 parse_file_outer();
437 /* This point is never reached */
438 for (;;);
439#else
440 for (;;) {
441#ifdef CONFIG_BOOT_RETRY_TIME
442 if (rc >= 0) {
443 /* Saw enough of a valid command to
444 * restart the timeout.
445 */
446 reset_cmd_timeout();
447 }
448#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200449 len = readline (CONFIG_SYS_PROMPT);
wdenkc6097192002-11-03 00:24:07 +0000450
451 flag = 0; /* assume no special flags for now */
452 if (len > 0)
453 strcpy (lastcommand, console_buffer);
454 else if (len == 0)
455 flag |= CMD_FLAG_REPEAT;
456#ifdef CONFIG_BOOT_RETRY_TIME
457 else if (len == -2) {
458 /* -2 means timed out, retry autoboot
459 */
wdenk4b9206e2004-03-23 22:14:11 +0000460 puts ("\nTimed out waiting for command\n");
wdenkc6097192002-11-03 00:24:07 +0000461# ifdef CONFIG_RESET_TO_RETRY
462 /* Reinit board to run initialization code again */
463 do_reset (NULL, 0, 0, NULL);
464# else
465 return; /* retry autoboot */
466# endif
467 }
468#endif
469
470 if (len == -1)
wdenk4b9206e2004-03-23 22:14:11 +0000471 puts ("<INTERRUPT>\n");
wdenkc6097192002-11-03 00:24:07 +0000472 else
473 rc = run_command (lastcommand, flag);
474
475 if (rc <= 0) {
476 /* invalid command or not repeatable, forget it */
477 lastcommand[0] = 0;
478 }
479 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200480#endif /*CONFIG_SYS_HUSH_PARSER*/
wdenkc6097192002-11-03 00:24:07 +0000481}
482
wdenk6dd652f2003-06-19 23:40:20 +0000483#ifdef CONFIG_BOOT_RETRY_TIME
484/***************************************************************************
Wolfgang Denk19973b62006-10-28 00:38:39 +0200485 * initialize command line timeout
wdenk6dd652f2003-06-19 23:40:20 +0000486 */
487void init_cmd_timeout(void)
488{
489 char *s = getenv ("bootretry");
490
491 if (s != NULL)
wdenkb028f712003-12-07 21:39:28 +0000492 retry_time = (int)simple_strtol(s, NULL, 10);
wdenk6dd652f2003-06-19 23:40:20 +0000493 else
494 retry_time = CONFIG_BOOT_RETRY_TIME;
495
496 if (retry_time >= 0 && retry_time < CONFIG_BOOT_RETRY_MIN)
497 retry_time = CONFIG_BOOT_RETRY_MIN;
498}
499
wdenkc6097192002-11-03 00:24:07 +0000500/***************************************************************************
501 * reset command line timeout to retry_time seconds
502 */
wdenkc6097192002-11-03 00:24:07 +0000503void reset_cmd_timeout(void)
504{
505 endtime = endtick(retry_time);
506}
507#endif
508
Wolfgang Denk501090a2006-07-21 11:33:45 +0200509#ifdef CONFIG_CMDLINE_EDITING
510
511/*
512 * cmdline-editing related codes from vivi.
513 * Author: Janghoon Lyu <nandy@mizi.com>
514 */
515
Wolfgang Denk501090a2006-07-21 11:33:45 +0200516#define putnstr(str,n) do { \
Andrew Klossnerdc4b0b32008-07-07 06:41:14 -0700517 printf ("%.*s", (int)n, str); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200518 } while (0)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200519
520#define CTL_CH(c) ((c) - 'a' + 1)
521
John Schmollerd6112952010-03-12 09:49:24 -0600522#define MAX_CMDBUF_SIZE CONFIG_SYS_CBSIZE
Wolfgang Denk501090a2006-07-21 11:33:45 +0200523
524#define CTL_BACKSPACE ('\b')
525#define DEL ((char)255)
526#define DEL7 ((char)127)
527#define CREAD_HIST_CHAR ('!')
528
529#define getcmd_putch(ch) putc(ch)
530#define getcmd_getch() getc()
531#define getcmd_cbeep() getcmd_putch('\a')
532
533#define HIST_MAX 20
534#define HIST_SIZE MAX_CMDBUF_SIZE
535
536static int hist_max = 0;
537static int hist_add_idx = 0;
538static int hist_cur = -1;
539unsigned hist_num = 0;
540
541char* hist_list[HIST_MAX];
John Schmoller6475b9f2010-03-12 09:49:23 -0600542char hist_lines[HIST_MAX][HIST_SIZE + 1]; /* Save room for NULL */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200543
544#define add_idx_minus_one() ((hist_add_idx == 0) ? hist_max : hist_add_idx-1)
545
546static void hist_init(void)
547{
548 int i;
549
550 hist_max = 0;
551 hist_add_idx = 0;
552 hist_cur = -1;
553 hist_num = 0;
554
555 for (i = 0; i < HIST_MAX; i++) {
556 hist_list[i] = hist_lines[i];
557 hist_list[i][0] = '\0';
558 }
559}
560
561static void cread_add_to_hist(char *line)
562{
563 strcpy(hist_list[hist_add_idx], line);
564
565 if (++hist_add_idx >= HIST_MAX)
566 hist_add_idx = 0;
567
568 if (hist_add_idx > hist_max)
569 hist_max = hist_add_idx;
570
571 hist_num++;
572}
573
574static char* hist_prev(void)
575{
576 char *ret;
577 int old_cur;
578
579 if (hist_cur < 0)
580 return NULL;
581
582 old_cur = hist_cur;
583 if (--hist_cur < 0)
584 hist_cur = hist_max;
585
586 if (hist_cur == hist_add_idx) {
587 hist_cur = old_cur;
588 ret = NULL;
589 } else
590 ret = hist_list[hist_cur];
591
592 return (ret);
593}
594
595static char* hist_next(void)
596{
597 char *ret;
598
599 if (hist_cur < 0)
600 return NULL;
601
602 if (hist_cur == hist_add_idx)
603 return NULL;
604
605 if (++hist_cur > hist_max)
606 hist_cur = 0;
607
608 if (hist_cur == hist_add_idx) {
609 ret = "";
610 } else
611 ret = hist_list[hist_cur];
612
613 return (ret);
614}
615
Stefan Roese3ca91222006-07-27 16:11:19 +0200616#ifndef CONFIG_CMDLINE_EDITING
Wolfgang Denk501090a2006-07-21 11:33:45 +0200617static void cread_print_hist_list(void)
618{
619 int i;
620 unsigned long n;
621
622 n = hist_num - hist_max;
623
624 i = hist_add_idx + 1;
625 while (1) {
626 if (i > hist_max)
627 i = 0;
628 if (i == hist_add_idx)
629 break;
630 printf("%s\n", hist_list[i]);
631 n++;
632 i++;
633 }
634}
Stefan Roese3ca91222006-07-27 16:11:19 +0200635#endif /* CONFIG_CMDLINE_EDITING */
Wolfgang Denk501090a2006-07-21 11:33:45 +0200636
637#define BEGINNING_OF_LINE() { \
638 while (num) { \
639 getcmd_putch(CTL_BACKSPACE); \
640 num--; \
641 } \
642}
643
644#define ERASE_TO_EOL() { \
645 if (num < eol_num) { \
Mike Frysinger8faba482010-07-23 05:28:15 -0400646 printf("%*s", (int)(eol_num - num), ""); \
647 do { \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200648 getcmd_putch(CTL_BACKSPACE); \
Mike Frysinger8faba482010-07-23 05:28:15 -0400649 } while (--eol_num > num); \
Wolfgang Denk501090a2006-07-21 11:33:45 +0200650 } \
651}
652
653#define REFRESH_TO_EOL() { \
654 if (num < eol_num) { \
655 wlen = eol_num - num; \
656 putnstr(buf + num, wlen); \
657 num = eol_num; \
658 } \
659}
660
661static void cread_add_char(char ichar, int insert, unsigned long *num,
662 unsigned long *eol_num, char *buf, unsigned long len)
663{
664 unsigned long wlen;
665
666 /* room ??? */
667 if (insert || *num == *eol_num) {
668 if (*eol_num > len - 1) {
669 getcmd_cbeep();
670 return;
671 }
672 (*eol_num)++;
673 }
674
675 if (insert) {
676 wlen = *eol_num - *num;
677 if (wlen > 1) {
678 memmove(&buf[*num+1], &buf[*num], wlen-1);
679 }
680
681 buf[*num] = ichar;
682 putnstr(buf + *num, wlen);
683 (*num)++;
684 while (--wlen) {
685 getcmd_putch(CTL_BACKSPACE);
686 }
687 } else {
688 /* echo the character */
689 wlen = 1;
690 buf[*num] = ichar;
691 putnstr(buf + *num, wlen);
692 (*num)++;
693 }
694}
695
696static void cread_add_str(char *str, int strsize, int insert, unsigned long *num,
697 unsigned long *eol_num, char *buf, unsigned long len)
698{
699 while (strsize--) {
700 cread_add_char(*str, insert, num, eol_num, buf, len);
701 str++;
702 }
703}
704
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100705static int cread_line(const char *const prompt, char *buf, unsigned int *len)
Wolfgang Denk501090a2006-07-21 11:33:45 +0200706{
707 unsigned long num = 0;
708 unsigned long eol_num = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200709 unsigned long wlen;
710 char ichar;
711 int insert = 1;
712 int esc_len = 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200713 char esc_save[8];
Peter Tyserecc55002009-10-25 15:12:54 -0500714 int init_len = strlen(buf);
715
716 if (init_len)
717 cread_add_str(buf, init_len, 1, &num, &eol_num, buf, *len);
Wolfgang Denk501090a2006-07-21 11:33:45 +0200718
719 while (1) {
Andreas Engel00ac50e2008-01-09 17:10:56 +0100720#ifdef CONFIG_BOOT_RETRY_TIME
721 while (!tstc()) { /* while no incoming data */
722 if (retry_time >= 0 && get_ticks() > endtime)
723 return (-2); /* timed out */
Jens Scharsig30dc1652010-04-09 19:02:38 +0200724 WATCHDOG_RESET();
Andreas Engel00ac50e2008-01-09 17:10:56 +0100725 }
726#endif
727
Wolfgang Denk501090a2006-07-21 11:33:45 +0200728 ichar = getcmd_getch();
729
730 if ((ichar == '\n') || (ichar == '\r')) {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200731 putc('\n');
Wolfgang Denk501090a2006-07-21 11:33:45 +0200732 break;
733 }
734
735 /*
736 * handle standard linux xterm esc sequences for arrow key, etc.
737 */
738 if (esc_len != 0) {
739 if (esc_len == 1) {
740 if (ichar == '[') {
741 esc_save[esc_len] = ichar;
742 esc_len = 2;
743 } else {
744 cread_add_str(esc_save, esc_len, insert,
745 &num, &eol_num, buf, *len);
746 esc_len = 0;
747 }
748 continue;
749 }
750
751 switch (ichar) {
752
753 case 'D': /* <- key */
754 ichar = CTL_CH('b');
755 esc_len = 0;
756 break;
757 case 'C': /* -> key */
758 ichar = CTL_CH('f');
759 esc_len = 0;
760 break; /* pass off to ^F handler */
761 case 'H': /* Home key */
762 ichar = CTL_CH('a');
763 esc_len = 0;
764 break; /* pass off to ^A handler */
765 case 'A': /* up arrow */
766 ichar = CTL_CH('p');
767 esc_len = 0;
768 break; /* pass off to ^P handler */
769 case 'B': /* down arrow */
770 ichar = CTL_CH('n');
771 esc_len = 0;
772 break; /* pass off to ^N handler */
773 default:
774 esc_save[esc_len++] = ichar;
775 cread_add_str(esc_save, esc_len, insert,
776 &num, &eol_num, buf, *len);
777 esc_len = 0;
778 continue;
779 }
780 }
781
782 switch (ichar) {
783 case 0x1b:
784 if (esc_len == 0) {
785 esc_save[esc_len] = ichar;
786 esc_len = 1;
787 } else {
Wolfgang Denkdd9f06f2006-07-21 11:34:34 +0200788 puts("impossible condition #876\n");
Wolfgang Denk501090a2006-07-21 11:33:45 +0200789 esc_len = 0;
790 }
791 break;
792
793 case CTL_CH('a'):
794 BEGINNING_OF_LINE();
795 break;
796 case CTL_CH('c'): /* ^C - break */
797 *buf = '\0'; /* discard input */
798 return (-1);
799 case CTL_CH('f'):
800 if (num < eol_num) {
801 getcmd_putch(buf[num]);
802 num++;
803 }
804 break;
805 case CTL_CH('b'):
806 if (num) {
807 getcmd_putch(CTL_BACKSPACE);
808 num--;
809 }
810 break;
811 case CTL_CH('d'):
812 if (num < eol_num) {
813 wlen = eol_num - num - 1;
814 if (wlen) {
815 memmove(&buf[num], &buf[num+1], wlen);
816 putnstr(buf + num, wlen);
817 }
818
819 getcmd_putch(' ');
820 do {
821 getcmd_putch(CTL_BACKSPACE);
822 } while (wlen--);
823 eol_num--;
824 }
825 break;
826 case CTL_CH('k'):
827 ERASE_TO_EOL();
828 break;
829 case CTL_CH('e'):
830 REFRESH_TO_EOL();
831 break;
832 case CTL_CH('o'):
833 insert = !insert;
834 break;
835 case CTL_CH('x'):
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100836 case CTL_CH('u'):
Wolfgang Denk501090a2006-07-21 11:33:45 +0200837 BEGINNING_OF_LINE();
838 ERASE_TO_EOL();
839 break;
840 case DEL:
841 case DEL7:
842 case 8:
843 if (num) {
844 wlen = eol_num - num;
845 num--;
846 memmove(&buf[num], &buf[num+1], wlen);
847 getcmd_putch(CTL_BACKSPACE);
848 putnstr(buf + num, wlen);
849 getcmd_putch(' ');
850 do {
851 getcmd_putch(CTL_BACKSPACE);
852 } while (wlen--);
853 eol_num--;
854 }
855 break;
856 case CTL_CH('p'):
857 case CTL_CH('n'):
858 {
859 char * hline;
860
861 esc_len = 0;
862
863 if (ichar == CTL_CH('p'))
864 hline = hist_prev();
865 else
866 hline = hist_next();
867
868 if (!hline) {
869 getcmd_cbeep();
870 continue;
871 }
872
873 /* nuke the current line */
874 /* first, go home */
875 BEGINNING_OF_LINE();
876
877 /* erase to end of line */
878 ERASE_TO_EOL();
879
880 /* copy new line into place and display */
881 strcpy(buf, hline);
882 eol_num = strlen(buf);
883 REFRESH_TO_EOL();
884 continue;
885 }
Jean-Christophe PLAGNIOL-VILLARD23d0baf2007-12-22 15:52:58 +0100886#ifdef CONFIG_AUTO_COMPLETE
887 case '\t': {
888 int num2, col;
889
890 /* do not autocomplete when in the middle */
891 if (num < eol_num) {
892 getcmd_cbeep();
893 break;
894 }
895
896 buf[num] = '\0';
897 col = strlen(prompt) + eol_num;
898 num2 = num;
899 if (cmd_auto_complete(prompt, buf, &num2, &col)) {
900 col = num2 - num;
901 num += col;
902 eol_num += col;
903 }
904 break;
905 }
906#endif
Wolfgang Denk501090a2006-07-21 11:33:45 +0200907 default:
908 cread_add_char(ichar, insert, &num, &eol_num, buf, *len);
909 break;
910 }
911 }
912 *len = eol_num;
913 buf[eol_num] = '\0'; /* lose the newline */
914
915 if (buf[0] && buf[0] != CREAD_HIST_CHAR)
916 cread_add_to_hist(buf);
917 hist_cur = hist_add_idx;
918
Peter Tyserf9239432009-10-25 15:12:53 -0500919 return 0;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200920}
921
922#endif /* CONFIG_CMDLINE_EDITING */
923
wdenkc6097192002-11-03 00:24:07 +0000924/****************************************************************************/
925
926/*
927 * Prompt for input and read a line.
928 * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0,
929 * time out when time goes past endtime (timebase time in ticks).
930 * Return: number of read characters
931 * -1 if break
932 * -2 if timed out
933 */
934int readline (const char *const prompt)
935{
Peter Tyserecc55002009-10-25 15:12:54 -0500936 /*
937 * If console_buffer isn't 0-length the user will be prompted to modify
938 * it instead of entering it from scratch as desired.
939 */
940 console_buffer[0] = '\0';
941
James Yang6636b622008-01-09 11:17:49 -0600942 return readline_into_buffer(prompt, console_buffer);
943}
944
945
946int readline_into_buffer (const char *const prompt, char * buffer)
947{
948 char *p = buffer;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200949#ifdef CONFIG_CMDLINE_EDITING
Wolfgang Denk501090a2006-07-21 11:33:45 +0200950 unsigned int len=MAX_CMDBUF_SIZE;
Stefan Roesed8f961b2006-08-07 15:08:44 +0200951 int rc;
Wolfgang Denk501090a2006-07-21 11:33:45 +0200952 static int initted = 0;
953
James Yang597f6c22008-05-05 10:22:53 -0500954 /*
955 * History uses a global array which is not
956 * writable until after relocation to RAM.
957 * Revert to non-history version if still
958 * running from flash.
959 */
960 if (gd->flags & GD_FLG_RELOC) {
961 if (!initted) {
962 hist_init();
963 initted = 1;
964 }
965
Peter Tysere491a712009-10-25 15:12:52 -0500966 if (prompt)
967 puts (prompt);
James Yang597f6c22008-05-05 10:22:53 -0500968
969 rc = cread_line(prompt, p, &len);
970 return rc < 0 ? rc : len;
971
972 } else {
973#endif /* CONFIG_CMDLINE_EDITING */
Kumar Gala0ec59522008-01-10 02:22:05 -0600974 char * p_buf = p;
wdenkc6097192002-11-03 00:24:07 +0000975 int n = 0; /* buffer index */
976 int plen = 0; /* prompt length */
977 int col; /* output column cnt */
978 char c;
979
980 /* print prompt */
981 if (prompt) {
982 plen = strlen (prompt);
983 puts (prompt);
984 }
985 col = plen;
986
987 for (;;) {
988#ifdef CONFIG_BOOT_RETRY_TIME
989 while (!tstc()) { /* while no incoming data */
990 if (retry_time >= 0 && get_ticks() > endtime)
991 return (-2); /* timed out */
Jens Scharsig30dc1652010-04-09 19:02:38 +0200992 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +0000993 }
994#endif
995 WATCHDOG_RESET(); /* Trigger watchdog, if needed */
996
997#ifdef CONFIG_SHOW_ACTIVITY
998 while (!tstc()) {
999 extern void show_activity(int arg);
1000 show_activity(0);
Jens Scharsig30dc1652010-04-09 19:02:38 +02001001 WATCHDOG_RESET();
wdenkc6097192002-11-03 00:24:07 +00001002 }
1003#endif
1004 c = getc();
1005
1006 /*
1007 * Special character handling
1008 */
1009 switch (c) {
1010 case '\r': /* Enter */
1011 case '\n':
1012 *p = '\0';
1013 puts ("\r\n");
James Yang6636b622008-01-09 11:17:49 -06001014 return (p - p_buf);
wdenkc6097192002-11-03 00:24:07 +00001015
wdenk27aa8182004-03-23 22:37:33 +00001016 case '\0': /* nul */
1017 continue;
1018
wdenkc6097192002-11-03 00:24:07 +00001019 case 0x03: /* ^C - break */
James Yang6636b622008-01-09 11:17:49 -06001020 p_buf[0] = '\0'; /* discard input */
wdenkc6097192002-11-03 00:24:07 +00001021 return (-1);
1022
1023 case 0x15: /* ^U - erase line */
1024 while (col > plen) {
1025 puts (erase_seq);
1026 --col;
1027 }
James Yang6636b622008-01-09 11:17:49 -06001028 p = p_buf;
wdenkc6097192002-11-03 00:24:07 +00001029 n = 0;
1030 continue;
1031
Wolfgang Denk1636d1c2007-06-22 23:59:00 +02001032 case 0x17: /* ^W - erase word */
James Yang6636b622008-01-09 11:17:49 -06001033 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001034 while ((n > 0) && (*p != ' ')) {
James Yang6636b622008-01-09 11:17:49 -06001035 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001036 }
1037 continue;
1038
1039 case 0x08: /* ^H - backspace */
1040 case 0x7F: /* DEL - backspace */
James Yang6636b622008-01-09 11:17:49 -06001041 p=delete_char(p_buf, p, &col, &n, plen);
wdenkc6097192002-11-03 00:24:07 +00001042 continue;
1043
1044 default:
1045 /*
1046 * Must be a normal character then
1047 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001048 if (n < CONFIG_SYS_CBSIZE-2) {
wdenkc6097192002-11-03 00:24:07 +00001049 if (c == '\t') { /* expand TABs */
wdenk04a85b32004-04-15 18:22:41 +00001050#ifdef CONFIG_AUTO_COMPLETE
1051 /* if auto completion triggered just continue */
1052 *p = '\0';
1053 if (cmd_auto_complete(prompt, console_buffer, &n, &col)) {
James Yang6636b622008-01-09 11:17:49 -06001054 p = p_buf + n; /* reset */
wdenk04a85b32004-04-15 18:22:41 +00001055 continue;
1056 }
1057#endif
wdenkc6097192002-11-03 00:24:07 +00001058 puts (tab_seq+(col&07));
1059 col += 8 - (col&07);
1060 } else {
1061 ++col; /* echo input */
1062 putc (c);
1063 }
1064 *p++ = c;
1065 ++n;
1066 } else { /* Buffer full */
1067 putc ('\a');
1068 }
1069 }
1070 }
James Yang597f6c22008-05-05 10:22:53 -05001071#ifdef CONFIG_CMDLINE_EDITING
1072 }
1073#endif
wdenkc6097192002-11-03 00:24:07 +00001074}
1075
1076/****************************************************************************/
1077
1078static char * delete_char (char *buffer, char *p, int *colp, int *np, int plen)
1079{
1080 char *s;
1081
1082 if (*np == 0) {
1083 return (p);
1084 }
1085
1086 if (*(--p) == '\t') { /* will retype the whole line */
1087 while (*colp > plen) {
1088 puts (erase_seq);
1089 (*colp)--;
1090 }
1091 for (s=buffer; s<p; ++s) {
1092 if (*s == '\t') {
1093 puts (tab_seq+((*colp) & 07));
1094 *colp += 8 - ((*colp) & 07);
1095 } else {
1096 ++(*colp);
1097 putc (*s);
1098 }
1099 }
1100 } else {
1101 puts (erase_seq);
1102 (*colp)--;
1103 }
1104 (*np)--;
1105 return (p);
1106}
1107
1108/****************************************************************************/
1109
1110int parse_line (char *line, char *argv[])
1111{
1112 int nargs = 0;
1113
1114#ifdef DEBUG_PARSER
1115 printf ("parse_line: \"%s\"\n", line);
1116#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001117 while (nargs < CONFIG_SYS_MAXARGS) {
wdenkc6097192002-11-03 00:24:07 +00001118
1119 /* skip any white space */
1120 while ((*line == ' ') || (*line == '\t')) {
1121 ++line;
1122 }
1123
1124 if (*line == '\0') { /* end of line, no more args */
1125 argv[nargs] = NULL;
1126#ifdef DEBUG_PARSER
1127 printf ("parse_line: nargs=%d\n", nargs);
1128#endif
1129 return (nargs);
1130 }
1131
1132 argv[nargs++] = line; /* begin of argument string */
1133
1134 /* find end of string */
1135 while (*line && (*line != ' ') && (*line != '\t')) {
1136 ++line;
1137 }
1138
1139 if (*line == '\0') { /* end of line, no more args */
1140 argv[nargs] = NULL;
1141#ifdef DEBUG_PARSER
1142 printf ("parse_line: nargs=%d\n", nargs);
1143#endif
1144 return (nargs);
1145 }
1146
1147 *line++ = '\0'; /* terminate current arg */
1148 }
1149
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001150 printf ("** Too many args (max. %d) **\n", CONFIG_SYS_MAXARGS);
wdenkc6097192002-11-03 00:24:07 +00001151
1152#ifdef DEBUG_PARSER
1153 printf ("parse_line: nargs=%d\n", nargs);
1154#endif
1155 return (nargs);
1156}
1157
1158/****************************************************************************/
1159
1160static void process_macros (const char *input, char *output)
1161{
1162 char c, prev;
1163 const char *varname_start = NULL;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001164 int inputcnt = strlen (input);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001165 int outputcnt = CONFIG_SYS_CBSIZE;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001166 int state = 0; /* 0 = waiting for '$' */
1167
1168 /* 1 = waiting for '(' or '{' */
1169 /* 2 = waiting for ')' or '}' */
1170 /* 3 = waiting for ''' */
wdenkc6097192002-11-03 00:24:07 +00001171#ifdef DEBUG_PARSER
1172 char *output_start = output;
1173
Wolfgang Denk19973b62006-10-28 00:38:39 +02001174 printf ("[PROCESS_MACROS] INPUT len %d: \"%s\"\n", strlen (input),
1175 input);
wdenkc6097192002-11-03 00:24:07 +00001176#endif
1177
Wolfgang Denk19973b62006-10-28 00:38:39 +02001178 prev = '\0'; /* previous character */
wdenkc6097192002-11-03 00:24:07 +00001179
1180 while (inputcnt && outputcnt) {
wdenk8bde7f72003-06-27 21:31:46 +00001181 c = *input++;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001182 inputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001183
Wolfgang Denk19973b62006-10-28 00:38:39 +02001184 if (state != 3) {
1185 /* remove one level of escape characters */
1186 if ((c == '\\') && (prev != '\\')) {
1187 if (inputcnt-- == 0)
1188 break;
1189 prev = c;
1190 c = *input++;
1191 }
wdenka25f8622003-01-02 23:57:29 +00001192 }
wdenkc6097192002-11-03 00:24:07 +00001193
Wolfgang Denk19973b62006-10-28 00:38:39 +02001194 switch (state) {
1195 case 0: /* Waiting for (unescaped) $ */
1196 if ((c == '\'') && (prev != '\\')) {
1197 state = 3;
1198 break;
1199 }
1200 if ((c == '$') && (prev != '\\')) {
1201 state++;
1202 } else {
wdenkc6097192002-11-03 00:24:07 +00001203 *(output++) = c;
1204 outputcnt--;
1205 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001206 break;
1207 case 1: /* Waiting for ( */
1208 if (c == '(' || c == '{') {
1209 state++;
1210 varname_start = input;
1211 } else {
1212 state = 0;
1213 *(output++) = '$';
1214 outputcnt--;
wdenkc6097192002-11-03 00:24:07 +00001215
Wolfgang Denk19973b62006-10-28 00:38:39 +02001216 if (outputcnt) {
1217 *(output++) = c;
wdenkc6097192002-11-03 00:24:07 +00001218 outputcnt--;
1219 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001220 }
1221 break;
1222 case 2: /* Waiting for ) */
1223 if (c == ')' || c == '}') {
1224 int i;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001225 char envname[CONFIG_SYS_CBSIZE], *envval;
Wolfgang Denk19973b62006-10-28 00:38:39 +02001226 int envcnt = input - varname_start - 1; /* Varname # of chars */
1227
1228 /* Get the varname */
1229 for (i = 0; i < envcnt; i++) {
1230 envname[i] = varname_start[i];
1231 }
1232 envname[i] = 0;
1233
1234 /* Get its value */
1235 envval = getenv (envname);
1236
1237 /* Copy into the line if it exists */
1238 if (envval != NULL)
1239 while ((*envval) && outputcnt) {
1240 *(output++) = *(envval++);
1241 outputcnt--;
1242 }
1243 /* Look for another '$' */
1244 state = 0;
1245 }
1246 break;
1247 case 3: /* Waiting for ' */
1248 if ((c == '\'') && (prev != '\\')) {
1249 state = 0;
1250 } else {
1251 *(output++) = c;
1252 outputcnt--;
1253 }
1254 break;
wdenkc6097192002-11-03 00:24:07 +00001255 }
Wolfgang Denk19973b62006-10-28 00:38:39 +02001256 prev = c;
wdenkc6097192002-11-03 00:24:07 +00001257 }
1258
1259 if (outputcnt)
1260 *output = 0;
Bartlomiej Sieka9160b962007-05-27 17:04:18 +02001261 else
1262 *(output - 1) = 0;
wdenkc6097192002-11-03 00:24:07 +00001263
1264#ifdef DEBUG_PARSER
1265 printf ("[PROCESS_MACROS] OUTPUT len %d: \"%s\"\n",
Wolfgang Denk19973b62006-10-28 00:38:39 +02001266 strlen (output_start), output_start);
wdenkc6097192002-11-03 00:24:07 +00001267#endif
1268}
1269
1270/****************************************************************************
1271 * returns:
1272 * 1 - command executed, repeatable
1273 * 0 - command executed but not repeatable, interrupted commands are
1274 * always considered not repeatable
1275 * -1 - not executed (unrecognized, bootd recursion or too many args)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001276 * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is
wdenkc6097192002-11-03 00:24:07 +00001277 * considered unrecognized)
1278 *
1279 * WARNING:
1280 *
1281 * We must create a temporary copy of the command since the command we get
1282 * may be the result from getenv(), which returns a pointer directly to
1283 * the environment data, which may change magicly when the command we run
1284 * creates or modifies environment variables (like "bootp" does).
1285 */
1286
1287int run_command (const char *cmd, int flag)
1288{
1289 cmd_tbl_t *cmdtp;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001290 char cmdbuf[CONFIG_SYS_CBSIZE]; /* working copy of cmd */
wdenkc6097192002-11-03 00:24:07 +00001291 char *token; /* start of token in cmdbuf */
1292 char *sep; /* end of token (separator) in cmdbuf */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001293 char finaltoken[CONFIG_SYS_CBSIZE];
wdenkc6097192002-11-03 00:24:07 +00001294 char *str = cmdbuf;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001295 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
wdenkf07771c2003-05-28 08:06:31 +00001296 int argc, inquotes;
wdenkc6097192002-11-03 00:24:07 +00001297 int repeatable = 1;
wdenkf07771c2003-05-28 08:06:31 +00001298 int rc = 0;
wdenkc6097192002-11-03 00:24:07 +00001299
1300#ifdef DEBUG_PARSER
1301 printf ("[RUN_COMMAND] cmd[%p]=\"", cmd);
1302 puts (cmd ? cmd : "NULL"); /* use puts - string may be loooong */
1303 puts ("\"\n");
1304#endif
1305
1306 clear_ctrlc(); /* forget any previous Control C */
1307
1308 if (!cmd || !*cmd) {
1309 return -1; /* empty command */
1310 }
1311
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001312 if (strlen(cmd) >= CONFIG_SYS_CBSIZE) {
wdenkc6097192002-11-03 00:24:07 +00001313 puts ("## Command too long!\n");
1314 return -1;
1315 }
1316
1317 strcpy (cmdbuf, cmd);
1318
1319 /* Process separators and check for invalid
1320 * repeatable commands
1321 */
1322
1323#ifdef DEBUG_PARSER
1324 printf ("[PROCESS_SEPARATORS] %s\n", cmd);
1325#endif
1326 while (*str) {
1327
1328 /*
1329 * Find separator, or string end
1330 * Allow simple escape of ';' by writing "\;"
1331 */
wdenka25f8622003-01-02 23:57:29 +00001332 for (inquotes = 0, sep = str; *sep; sep++) {
1333 if ((*sep=='\'') &&
1334 (*(sep-1) != '\\'))
1335 inquotes=!inquotes;
1336
1337 if (!inquotes &&
1338 (*sep == ';') && /* separator */
wdenkc6097192002-11-03 00:24:07 +00001339 ( sep != str) && /* past string start */
1340 (*(sep-1) != '\\')) /* and NOT escaped */
1341 break;
1342 }
1343
1344 /*
1345 * Limit the token to data between separators
1346 */
1347 token = str;
1348 if (*sep) {
1349 str = sep + 1; /* start of command for next pass */
1350 *sep = '\0';
1351 }
1352 else
1353 str = sep; /* no more commands for next pass */
1354#ifdef DEBUG_PARSER
1355 printf ("token: \"%s\"\n", token);
1356#endif
1357
1358 /* find macros in this token and replace them */
1359 process_macros (token, finaltoken);
1360
1361 /* Extract arguments */
Wolfgang Denk1264b402006-03-12 02:20:55 +01001362 if ((argc = parse_line (finaltoken, argv)) == 0) {
1363 rc = -1; /* no command at all */
1364 continue;
1365 }
wdenkc6097192002-11-03 00:24:07 +00001366
1367 /* Look up command in command table */
1368 if ((cmdtp = find_cmd(argv[0])) == NULL) {
1369 printf ("Unknown command '%s' - try 'help'\n", argv[0]);
wdenkf07771c2003-05-28 08:06:31 +00001370 rc = -1; /* give up after bad command */
1371 continue;
wdenkc6097192002-11-03 00:24:07 +00001372 }
1373
1374 /* found - check max args */
1375 if (argc > cmdtp->maxargs) {
Peter Tyser62c3ae72009-01-27 18:03:10 -06001376 cmd_usage(cmdtp);
wdenkf07771c2003-05-28 08:06:31 +00001377 rc = -1;
1378 continue;
wdenkc6097192002-11-03 00:24:07 +00001379 }
1380
Jon Loeligerc3517f92007-07-08 18:10:08 -05001381#if defined(CONFIG_CMD_BOOTD)
wdenkc6097192002-11-03 00:24:07 +00001382 /* avoid "bootd" recursion */
1383 if (cmdtp->cmd == do_bootd) {
1384#ifdef DEBUG_PARSER
1385 printf ("[%s]\n", finaltoken);
1386#endif
1387 if (flag & CMD_FLAG_BOOTD) {
wdenk4b9206e2004-03-23 22:14:11 +00001388 puts ("'bootd' recursion detected\n");
wdenkf07771c2003-05-28 08:06:31 +00001389 rc = -1;
1390 continue;
Wolfgang Denk1264b402006-03-12 02:20:55 +01001391 } else {
wdenkc6097192002-11-03 00:24:07 +00001392 flag |= CMD_FLAG_BOOTD;
Wolfgang Denk1264b402006-03-12 02:20:55 +01001393 }
wdenkc6097192002-11-03 00:24:07 +00001394 }
Jon Loeliger90253172007-07-10 11:02:44 -05001395#endif
wdenkc6097192002-11-03 00:24:07 +00001396
1397 /* OK - call function to do the command */
1398 if ((cmdtp->cmd) (cmdtp, flag, argc, argv) != 0) {
wdenkf07771c2003-05-28 08:06:31 +00001399 rc = -1;
wdenkc6097192002-11-03 00:24:07 +00001400 }
1401
1402 repeatable &= cmdtp->repeatable;
1403
1404 /* Did the user stop this? */
1405 if (had_ctrlc ())
Detlev Zundel5afb2022007-05-23 18:47:48 +02001406 return -1; /* if stopped then not repeatable */
wdenkc6097192002-11-03 00:24:07 +00001407 }
1408
wdenkf07771c2003-05-28 08:06:31 +00001409 return rc ? rc : repeatable;
wdenkc6097192002-11-03 00:24:07 +00001410}
1411
1412/****************************************************************************/
1413
Jon Loeligerc3517f92007-07-08 18:10:08 -05001414#if defined(CONFIG_CMD_RUN)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001415int do_run (cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
wdenkc6097192002-11-03 00:24:07 +00001416{
1417 int i;
wdenkc6097192002-11-03 00:24:07 +00001418
Wolfgang Denk47e26b12010-07-17 01:06:04 +02001419 if (argc < 2)
1420 return cmd_usage(cmdtp);
wdenkc6097192002-11-03 00:24:07 +00001421
1422 for (i=1; i<argc; ++i) {
wdenk3e386912003-04-05 00:53:31 +00001423 char *arg;
1424
1425 if ((arg = getenv (argv[i])) == NULL) {
1426 printf ("## Error: \"%s\" not defined\n", argv[i]);
1427 return 1;
1428 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001429#ifndef CONFIG_SYS_HUSH_PARSER
wdenk3e386912003-04-05 00:53:31 +00001430 if (run_command (arg, flag) == -1)
1431 return 1;
wdenkc6097192002-11-03 00:24:07 +00001432#else
wdenk3e386912003-04-05 00:53:31 +00001433 if (parse_string_outer(arg,
wdenk7aa78612003-05-03 15:50:43 +00001434 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
wdenk3e386912003-04-05 00:53:31 +00001435 return 1;
wdenkc6097192002-11-03 00:24:07 +00001436#endif
1437 }
wdenk3e386912003-04-05 00:53:31 +00001438 return 0;
wdenkc6097192002-11-03 00:24:07 +00001439}
Jon Loeliger90253172007-07-10 11:02:44 -05001440#endif