2 * (C) Copyright 2000-2009
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25 * Command Processor Table
32 do_version (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
34 extern char version_string[];
35 printf ("\n%s\n", version_string);
40 version, 1, 1, do_version,
41 "print monitor version",
45 #if defined(CONFIG_CMD_ECHO)
48 do_echo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
52 for (i = 1; i < argc; i++) {
57 while ((c = *p++) != '\0') {
58 if (c == '\\' && *p == 'c') {
73 echo, CONFIG_SYS_MAXARGS, 1, do_echo,
74 "echo args to console",
76 " - echo args to console; \\c suppresses newline\n"
81 #ifdef CONFIG_SYS_HUSH_PARSER
84 do_test (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
87 int left, adv, expr, last_expr, neg, last_cmp;
98 printf(" %s", argv[left++]);
103 left = argc - 1; ap = argv + 1;
104 if (left > 0 && strcmp(ap[0], "!") == 0) {
116 if (strcmp(ap[0], "-o") == 0 || strcmp(ap[0], "-a") == 0)
118 else if (strcmp(ap[0], "-z") == 0 || strcmp(ap[0], "-n") == 0)
129 if (strcmp(ap[0], "-o") == 0) {
132 } else if (strcmp(ap[0], "-a") == 0) {
142 if (strcmp(ap[0], "-z") == 0)
143 expr = strlen(ap[1]) == 0 ? 1 : 0;
144 else if (strcmp(ap[0], "-n") == 0)
145 expr = strlen(ap[1]) == 0 ? 0 : 1;
152 expr = last_expr || expr;
153 else if (last_cmp == 1)
154 expr = last_expr && expr;
159 if (strcmp(ap[1], "=") == 0)
160 expr = strcmp(ap[0], ap[2]) == 0;
161 else if (strcmp(ap[1], "!=") == 0)
162 expr = strcmp(ap[0], ap[2]) != 0;
163 else if (strcmp(ap[1], ">") == 0)
164 expr = strcmp(ap[0], ap[2]) > 0;
165 else if (strcmp(ap[1], "<") == 0)
166 expr = strcmp(ap[0], ap[2]) < 0;
167 else if (strcmp(ap[1], "-eq") == 0)
168 expr = simple_strtol(ap[0], NULL, 10) == simple_strtol(ap[2], NULL, 10);
169 else if (strcmp(ap[1], "-ne") == 0)
170 expr = simple_strtol(ap[0], NULL, 10) != simple_strtol(ap[2], NULL, 10);
171 else if (strcmp(ap[1], "-lt") == 0)
172 expr = simple_strtol(ap[0], NULL, 10) < simple_strtol(ap[2], NULL, 10);
173 else if (strcmp(ap[1], "-le") == 0)
174 expr = simple_strtol(ap[0], NULL, 10) <= simple_strtol(ap[2], NULL, 10);
175 else if (strcmp(ap[1], "-gt") == 0)
176 expr = simple_strtol(ap[0], NULL, 10) > simple_strtol(ap[2], NULL, 10);
177 else if (strcmp(ap[1], "-ge") == 0)
178 expr = simple_strtol(ap[0], NULL, 10) >= simple_strtol(ap[2], NULL, 10);
185 expr = last_expr || expr;
186 else if (last_cmp == 1)
187 expr = last_expr && expr;
191 ap += adv; left -= adv;
199 debug (": returns %d\n", expr);
205 test, CONFIG_SYS_MAXARGS, 1, do_test,
206 "minimal test like /bin/sh",
208 " - test functionality\n"
212 do_exit (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
218 r = simple_strtoul(argv[1], NULL, 10);
226 " - exit functionality\n"
233 * Use puts() instead of printf() to avoid printf buffer overflow
234 * for long help messages
237 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
238 flag, int argc, char *argv[])
243 if (argc == 1) { /*show list of commands */
244 cmd_tbl_t *cmd_array[cmd_items];
247 /* Make array of commands from .uboot_cmd section */
249 for (i = 0; i < cmd_items; i++) {
250 cmd_array[i] = cmdtp++;
253 /* Sort command list (trivial bubble sort) */
254 for (i = cmd_items - 1; i > 0; --i) {
256 for (j = 0; j < i; ++j) {
257 if (strcmp (cmd_array[j]->name,
258 cmd_array[j + 1]->name) > 0) {
261 cmd_array[j] = cmd_array[j + 1];
262 cmd_array[j + 1] = tmp;
270 /* print short help (usage) */
271 for (i = 0; i < cmd_items; i++) {
272 const char *usage = cmd_array[i]->usage;
274 /* allow user abort */
279 printf("%-*s- %s\n", CONFIG_SYS_HELP_CMD_WIDTH,
280 cmd_array[i]->name, usage);
285 * command help (long version)
287 for (i = 1; i < argc; ++i) {
288 if ((cmdtp = find_cmd_tbl (argv[i], cmd_start, cmd_items )) != NULL) {
289 rcode |= cmd_usage(cmdtp);
291 printf ("Unknown command '%s' - try 'help'"
292 " without arguments for list of all"
293 " known commands\n\n", argv[i]
301 int do_help (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
303 return _do_help(&__u_boot_cmd_start,
304 &__u_boot_cmd_end - &__u_boot_cmd_start,
305 cmdtp, flag, argc, argv);
310 help, CONFIG_SYS_MAXARGS, 1, do_help,
313 " - show help information (for 'command')\n"
314 "'help' prints online help for the monitor commands.\n\n"
315 "Without arguments, it prints a short usage message for all commands.\n\n"
316 "To get detailed help information for specific commands you can type\n"
317 "'help' with one or more command names as arguments.\n"
320 /* This do not ust the U_BOOT_CMD macro as ? can't be used in symbol names */
321 #ifdef CONFIG_SYS_LONGHELP
322 cmd_tbl_t __u_boot_cmd_question_mark Struct_Section = {
323 "?", CONFIG_SYS_MAXARGS, 1, do_help,
328 cmd_tbl_t __u_boot_cmd_question_mark Struct_Section = {
329 "?", CONFIG_SYS_MAXARGS, 1, do_help,
332 #endif /* CONFIG_SYS_LONGHELP */
334 /***************************************************************************
335 * find command table entry for a command
337 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len)
340 cmd_tbl_t *cmdtp_temp = table; /*Init value */
346 * Some commands allow length modifiers (like "cp.b");
347 * compare command name only until first dot.
349 len = ((p = strchr(cmd, '.')) == NULL) ? strlen (cmd) : (p - cmd);
352 cmdtp != table + table_len;
354 if (strncmp (cmd, cmdtp->name, len) == 0) {
355 if (len == strlen (cmdtp->name))
356 return cmdtp; /* full match */
358 cmdtp_temp = cmdtp; /* abbreviated command ? */
362 if (n_found == 1) { /* exactly one match */
366 return NULL; /* not found or ambiguous command */
369 cmd_tbl_t *find_cmd (const char *cmd)
371 int len = &__u_boot_cmd_end - &__u_boot_cmd_start;
372 return find_cmd_tbl(cmd, &__u_boot_cmd_start, len);
375 int cmd_usage(cmd_tbl_t *cmdtp)
377 printf("%s - %s\n\n", cmdtp->name, cmdtp->usage);
379 #ifdef CONFIG_SYS_LONGHELP
380 printf("Usage:\n%s ", cmdtp->name);
383 puts ("- No additional help available.\n");
389 #endif /* CONFIG_SYS_LONGHELP */
393 #ifdef CONFIG_AUTO_COMPLETE
395 int var_complete(int argc, char *argv[], char last_char, int maxv, char *cmdv[])
397 static char tmp_buf[512];
400 space = last_char == '\0' || last_char == ' ' || last_char == '\t';
402 if (space && argc == 1)
403 return env_complete("", maxv, cmdv, sizeof(tmp_buf), tmp_buf);
405 if (!space && argc == 2)
406 return env_complete(argv[1], maxv, cmdv, sizeof(tmp_buf), tmp_buf);
411 static void install_auto_complete_handler(const char *cmd,
412 int (*complete)(int argc, char *argv[], char last_char, int maxv, char *cmdv[]))
416 cmdtp = find_cmd(cmd);
420 cmdtp->complete = complete;
423 void install_auto_complete(void)
425 install_auto_complete_handler("printenv", var_complete);
426 install_auto_complete_handler("setenv", var_complete);
427 #if defined(CONFIG_CMD_RUN)
428 install_auto_complete_handler("run", var_complete);
432 /*************************************************************************************/
434 static int complete_cmdv(int argc, char *argv[], char last_char, int maxv, char *cmdv[])
449 /* output full list of commands */
450 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
451 if (n_found >= maxv - 2) {
452 cmdv[n_found++] = "...";
455 cmdv[n_found++] = cmdtp->name;
457 cmdv[n_found] = NULL;
461 /* more than one arg or one but the start of the next */
462 if (argc > 1 || (last_char == '\0' || last_char == ' ' || last_char == '\t')) {
463 cmdtp = find_cmd(argv[0]);
464 if (cmdtp == NULL || cmdtp->complete == NULL) {
468 return (*cmdtp->complete)(argc, argv, last_char, maxv, cmdv);
473 * Some commands allow length modifiers (like "cp.b");
474 * compare command name only until first dot.
476 p = strchr(cmd, '.');
482 /* return the partial matches */
483 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
485 clen = strlen(cmdtp->name);
489 if (memcmp(cmd, cmdtp->name, len) != 0)
493 if (n_found >= maxv - 2) {
494 cmdv[n_found++] = "...";
498 cmdv[n_found++] = cmdtp->name;
501 cmdv[n_found] = NULL;
505 static int make_argv(char *s, int argvsz, char *argv[])
509 /* split into argv */
510 while (argc < argvsz - 1) {
512 /* skip any white space */
513 while ((*s == ' ') || (*s == '\t'))
516 if (*s == '\0') /* end of s, no more args */
519 argv[argc++] = s; /* begin of argument string */
521 /* find end of string */
522 while (*s && (*s != ' ') && (*s != '\t'))
525 if (*s == '\0') /* end of s, no more args */
528 *s++ = '\0'; /* terminate current arg */
535 static void print_argv(const char *banner, const char *leader, const char *sep, int linemax, char *argv[])
537 int ll = leader != NULL ? strlen(leader) : 0;
538 int sl = sep != NULL ? strlen(sep) : 0;
546 i = linemax; /* force leader and newline */
547 while (*argv != NULL) {
548 len = strlen(*argv) + sl;
549 if (i + len >= linemax) {
562 static int find_common_prefix(char *argv[])
565 char *anchor, *s, *t;
572 len = strlen(anchor);
573 while ((t = *argv++) != NULL) {
575 for (i = 0; i < len; i++, t++, s++) {
584 static char tmp_buf[CONFIG_SYS_CBSIZE]; /* copy of console I/O buffer */
586 int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp)
588 int n = *np, col = *colp;
589 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
593 int i, j, k, len, seplen, argc;
597 if (strcmp(prompt, CONFIG_SYS_PROMPT) != 0)
598 return 0; /* not in normal console */
602 last_char = buf[cnt - 1];
606 /* copy to secondary buffer which will be affected */
607 strcpy(tmp_buf, buf);
609 /* separate into argv */
610 argc = make_argv(tmp_buf, sizeof(argv)/sizeof(argv[0]), argv);
612 /* do the completion and return the possible completions */
613 i = complete_cmdv(argc, argv, last_char, sizeof(cmdv)/sizeof(cmdv[0]), cmdv);
615 /* no match; bell and out */
617 if (argc > 1) /* allow tab for non command */
627 if (i == 1) { /* one match; perfect */
628 k = strlen(argv[argc - 1]);
633 } else if (i > 1 && (j = find_common_prefix(cmdv)) != 0) { /* more */
634 k = strlen(argv[argc - 1]);
644 /* make sure it fits */
645 if (n + k >= CONFIG_SYS_CBSIZE - 2) {
651 for (i = 0; i < len; i++)
654 for (i = 0; i < seplen; i++)
665 print_argv(NULL, " ", " ", 78, cmdv);
676 int cmd_get_data_size(char* arg, int default_size)
678 /* Check for a size specification .b, .w or .l.
680 int len = strlen(arg);
681 if (len > 2 && arg[len-2] == '.') {