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 * Use puts() instead of printf() to avoid printf buffer overflow
33 * for long help messages
36 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
37 flag, int argc, char * const argv[])
42 if (argc == 1) { /*show list of commands */
43 cmd_tbl_t *cmd_array[cmd_items];
46 /* Make array of commands from .uboot_cmd section */
48 for (i = 0; i < cmd_items; i++) {
49 cmd_array[i] = cmdtp++;
52 /* Sort command list (trivial bubble sort) */
53 for (i = cmd_items - 1; i > 0; --i) {
55 for (j = 0; j < i; ++j) {
56 if (strcmp (cmd_array[j]->name,
57 cmd_array[j + 1]->name) > 0) {
60 cmd_array[j] = cmd_array[j + 1];
61 cmd_array[j + 1] = tmp;
69 /* print short help (usage) */
70 for (i = 0; i < cmd_items; i++) {
71 const char *usage = cmd_array[i]->usage;
73 /* allow user abort */
78 printf("%-*s- %s\n", CONFIG_SYS_HELP_CMD_WIDTH,
79 cmd_array[i]->name, usage);
84 * command help (long version)
86 for (i = 1; i < argc; ++i) {
87 if ((cmdtp = find_cmd_tbl (argv[i], cmd_start, cmd_items )) != NULL) {
88 rcode |= cmd_usage(cmdtp);
90 printf ("Unknown command '%s' - try 'help'"
91 " without arguments for list of all"
92 " known commands\n\n", argv[i]
100 /***************************************************************************
101 * find command table entry for a command
103 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len)
106 cmd_tbl_t *cmdtp_temp = table; /*Init value */
112 * Some commands allow length modifiers (like "cp.b");
113 * compare command name only until first dot.
115 len = ((p = strchr(cmd, '.')) == NULL) ? strlen (cmd) : (p - cmd);
118 cmdtp != table + table_len;
120 if (strncmp (cmd, cmdtp->name, len) == 0) {
121 if (len == strlen (cmdtp->name))
122 return cmdtp; /* full match */
124 cmdtp_temp = cmdtp; /* abbreviated command ? */
128 if (n_found == 1) { /* exactly one match */
132 return NULL; /* not found or ambiguous command */
135 cmd_tbl_t *find_cmd (const char *cmd)
137 int len = &__u_boot_cmd_end - &__u_boot_cmd_start;
138 return find_cmd_tbl(cmd, &__u_boot_cmd_start, len);
141 int cmd_usage(cmd_tbl_t *cmdtp)
143 printf("%s - %s\n\n", cmdtp->name, cmdtp->usage);
145 #ifdef CONFIG_SYS_LONGHELP
146 printf("Usage:\n%s ", cmdtp->name);
149 puts ("- No additional help available.\n");
155 #endif /* CONFIG_SYS_LONGHELP */
159 #ifdef CONFIG_AUTO_COMPLETE
161 int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[])
163 #if 0 /* need to reimplement */
164 static char tmp_buf[512];
167 space = last_char == '\0' || last_char == ' ' || last_char == '\t';
169 if (space && argc == 1)
170 return env_complete("", maxv, cmdv, sizeof(tmp_buf), tmp_buf);
172 if (!space && argc == 2)
173 return env_complete(argv[1], maxv, cmdv, sizeof(tmp_buf), tmp_buf);
178 static void install_auto_complete_handler(const char *cmd,
179 int (*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]))
183 cmdtp = find_cmd(cmd);
187 cmdtp->complete = complete;
190 void install_auto_complete(void)
192 #if defined(CONFIG_CMD_EDITENV)
193 install_auto_complete_handler("editenv", var_complete);
195 install_auto_complete_handler("printenv", var_complete);
196 install_auto_complete_handler("setenv", var_complete);
197 #if defined(CONFIG_CMD_RUN)
198 install_auto_complete_handler("run", var_complete);
202 /*************************************************************************************/
204 static int complete_cmdv(int argc, char * const argv[], char last_char, int maxv, char *cmdv[])
219 /* output full list of commands */
220 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
221 if (n_found >= maxv - 2) {
222 cmdv[n_found++] = "...";
225 cmdv[n_found++] = cmdtp->name;
227 cmdv[n_found] = NULL;
231 /* more than one arg or one but the start of the next */
232 if (argc > 1 || (last_char == '\0' || last_char == ' ' || last_char == '\t')) {
233 cmdtp = find_cmd(argv[0]);
234 if (cmdtp == NULL || cmdtp->complete == NULL) {
238 return (*cmdtp->complete)(argc, argv, last_char, maxv, cmdv);
243 * Some commands allow length modifiers (like "cp.b");
244 * compare command name only until first dot.
246 p = strchr(cmd, '.');
252 /* return the partial matches */
253 for (cmdtp = &__u_boot_cmd_start; cmdtp != &__u_boot_cmd_end; cmdtp++) {
255 clen = strlen(cmdtp->name);
259 if (memcmp(cmd, cmdtp->name, len) != 0)
263 if (n_found >= maxv - 2) {
264 cmdv[n_found++] = "...";
268 cmdv[n_found++] = cmdtp->name;
271 cmdv[n_found] = NULL;
275 static int make_argv(char *s, int argvsz, char *argv[])
279 /* split into argv */
280 while (argc < argvsz - 1) {
282 /* skip any white space */
283 while ((*s == ' ') || (*s == '\t'))
286 if (*s == '\0') /* end of s, no more args */
289 argv[argc++] = s; /* begin of argument string */
291 /* find end of string */
292 while (*s && (*s != ' ') && (*s != '\t'))
295 if (*s == '\0') /* end of s, no more args */
298 *s++ = '\0'; /* terminate current arg */
305 static void print_argv(const char *banner, const char *leader, const char *sep, int linemax, char * const argv[])
307 int ll = leader != NULL ? strlen(leader) : 0;
308 int sl = sep != NULL ? strlen(sep) : 0;
316 i = linemax; /* force leader and newline */
317 while (*argv != NULL) {
318 len = strlen(*argv) + sl;
319 if (i + len >= linemax) {
332 static int find_common_prefix(char * const argv[])
335 char *anchor, *s, *t;
342 len = strlen(anchor);
343 while ((t = *argv++) != NULL) {
345 for (i = 0; i < len; i++, t++, s++) {
354 static char tmp_buf[CONFIG_SYS_CBSIZE]; /* copy of console I/O buffer */
356 int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp)
358 int n = *np, col = *colp;
359 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
363 int i, j, k, len, seplen, argc;
367 if (strcmp(prompt, CONFIG_SYS_PROMPT) != 0)
368 return 0; /* not in normal console */
372 last_char = buf[cnt - 1];
376 /* copy to secondary buffer which will be affected */
377 strcpy(tmp_buf, buf);
379 /* separate into argv */
380 argc = make_argv(tmp_buf, sizeof(argv)/sizeof(argv[0]), argv);
382 /* do the completion and return the possible completions */
383 i = complete_cmdv(argc, argv, last_char, sizeof(cmdv)/sizeof(cmdv[0]), cmdv);
385 /* no match; bell and out */
387 if (argc > 1) /* allow tab for non command */
397 if (i == 1) { /* one match; perfect */
398 k = strlen(argv[argc - 1]);
403 } else if (i > 1 && (j = find_common_prefix(cmdv)) != 0) { /* more */
404 k = strlen(argv[argc - 1]);
414 /* make sure it fits */
415 if (n + k >= CONFIG_SYS_CBSIZE - 2) {
421 for (i = 0; i < len; i++)
424 for (i = 0; i < seplen; i++)
435 print_argv(NULL, " ", " ", 78, cmdv);
446 int cmd_get_data_size(char* arg, int default_size)
448 /* Check for a size specification .b, .w or .l.
450 int len = strlen(arg);
451 if (len > 2 && arg[len-2] == '.') {
469 #if !defined(CONFIG_RELOC_FIXUP_WORKS)
470 DECLARE_GLOBAL_DATA_PTR;
472 void fixup_cmdtable(cmd_tbl_t *cmdtp, int size)
476 if (gd->reloc_off == 0)
479 for (i = 0; i < size; i++) {
482 addr = (ulong) (cmdtp->cmd) + gd->reloc_off;
484 printf("Command \"%s\": 0x%08lx => 0x%08lx\n",
485 cmdtp->name, (ulong) (cmdtp->cmd), addr);
488 (int (*)(struct cmd_tbl_s *, int, int, char * const []))addr;
489 addr = (ulong)(cmdtp->name) + gd->reloc_off;
490 cmdtp->name = (char *)addr;
492 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
493 cmdtp->usage = (char *)addr;
495 #ifdef CONFIG_SYS_LONGHELP
497 addr = (ulong)(cmdtp->help) + gd->reloc_off;
498 cmdtp->help = (char *)addr;