]> git.ipfire.org Git - thirdparty/u-boot.git/blame - common/command.c
Merge branch '2024-03-02-assorted-updates' into next
[thirdparty/u-boot.git] / common / command.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
5dfa25f2 2/*
2dce551e 3 * (C) Copyright 2000-2009
5dfa25f2 4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5dfa25f2
WD
5 */
6
7/*
8 * Command Processor Table
9 */
10
11#include <common.h>
a33a8242 12#include <compiler.h>
5dfa25f2 13#include <command.h>
24b852a7 14#include <console.h>
af95f206 15#include <env.h>
30f3333d 16#include <image.h>
f7ae49fc 17#include <log.h>
30f3333d 18#include <mapmem.h>
401d1c4f 19#include <asm/global_data.h>
4d91a6ec 20#include <linux/ctype.h>
5dfa25f2 21
7cf5b405
HS
22DECLARE_GLOBAL_DATA_PTR;
23
5dfa25f2
WD
24/*
25 * Use puts() instead of printf() to avoid printf buffer overflow
26 * for long help messages
27 */
2dce551e 28
09140113
SG
29int _do_help(struct cmd_tbl *cmd_start, int cmd_items, struct cmd_tbl *cmdtp,
30 int flag, int argc, char *const argv[])
5dfa25f2
WD
31{
32 int i;
33 int rcode = 0;
34
616e2162 35 if (argc == 1) { /* show list of commands */
09140113 36 struct cmd_tbl *cmd_array[cmd_items];
9d2b18a0
WD
37 int i, j, swaps;
38
39 /* Make array of commands from .uboot_cmd section */
2dce551e 40 cmdtp = cmd_start;
9d2b18a0
WD
41 for (i = 0; i < cmd_items; i++) {
42 cmd_array[i] = cmdtp++;
8bde7f77 43 }
8bde7f77 44
9d2b18a0
WD
45 /* Sort command list (trivial bubble sort) */
46 for (i = cmd_items - 1; i > 0; --i) {
47 swaps = 0;
48 for (j = 0; j < i; ++j) {
616e2162
MY
49 if (strcmp(cmd_array[j]->name,
50 cmd_array[j + 1]->name) > 0) {
09140113 51 struct cmd_tbl *tmp;
9d2b18a0
WD
52 tmp = cmd_array[j];
53 cmd_array[j] = cmd_array[j + 1];
54 cmd_array[j + 1] = tmp;
55 ++swaps;
56 }
8bde7f77 57 }
9d2b18a0
WD
58 if (!swaps)
59 break;
8bde7f77 60 }
5dfa25f2 61
8bde7f77 62 /* print short help (usage) */
9d2b18a0
WD
63 for (i = 0; i < cmd_items; i++) {
64 const char *usage = cmd_array[i]->usage;
65
5dfa25f2 66 /* allow user abort */
616e2162 67 if (ctrlc())
5dfa25f2 68 return 1;
9d2b18a0 69 if (usage == NULL)
5dfa25f2 70 continue;
6e7df1d1 71 printf("%-*s- %s\n", CFG_SYS_HELP_CMD_WIDTH,
2fb2604d 72 cmd_array[i]->name, usage);
5dfa25f2 73 }
5dfa25f2
WD
74 return 0;
75 }
5dfa25f2
WD
76 /*
77 * command help (long version)
78 */
8bde7f77 79 for (i = 1; i < argc; ++i) {
616e2162
MY
80 cmdtp = find_cmd_tbl(argv[i], cmd_start, cmd_items);
81 if (cmdtp != NULL) {
94796d85 82 rcode |= cmd_usage(cmdtp);
71f95118 83 } else {
616e2162
MY
84 printf("Unknown command '%s' - try 'help' without arguments for list of all known commands\n\n",
85 argv[i]);
5dfa25f2
WD
86 rcode = 1;
87 }
88 }
89 return rcode;
90}
91
616e2162 92/* find command table entry for a command */
09140113
SG
93struct cmd_tbl *find_cmd_tbl(const char *cmd, struct cmd_tbl *table,
94 int table_len)
5dfa25f2 95{
f8bb6964 96#ifdef CONFIG_CMDLINE
09140113
SG
97 struct cmd_tbl *cmdtp;
98 struct cmd_tbl *cmdtp_temp = table; /* Init value */
9d2b18a0
WD
99 const char *p;
100 int len;
101 int n_found = 0;
102
7013c061
TW
103 if (!cmd)
104 return NULL;
9d2b18a0
WD
105 /*
106 * Some commands allow length modifiers (like "cp.b");
107 * compare command name only until first dot.
108 */
109 len = ((p = strchr(cmd, '.')) == NULL) ? strlen (cmd) : (p - cmd);
110
616e2162
MY
111 for (cmdtp = table; cmdtp != table + table_len; cmdtp++) {
112 if (strncmp(cmd, cmdtp->name, len) == 0) {
113 if (len == strlen(cmdtp->name))
9d2b18a0
WD
114 return cmdtp; /* full match */
115
116 cmdtp_temp = cmdtp; /* abbreviated command ? */
117 n_found++;
118 }
5dfa25f2 119 }
9d2b18a0 120 if (n_found == 1) { /* exactly one match */
8bde7f77 121 return cmdtp_temp;
9d2b18a0 122 }
f8bb6964 123#endif /* CONFIG_CMDLINE */
5dfa25f2 124
9d2b18a0 125 return NULL; /* not found or ambiguous command */
8bde7f77 126}
04a85b3b 127
09140113 128struct cmd_tbl *find_cmd(const char *cmd)
b799cb4c 129{
09140113
SG
130 struct cmd_tbl *start = ll_entry_start(struct cmd_tbl, cmd);
131 const int len = ll_entry_count(struct cmd_tbl, cmd);
6c7c946c 132 return find_cmd_tbl(cmd, start, len);
b799cb4c
KG
133}
134
09140113 135int cmd_usage(const struct cmd_tbl *cmdtp)
62c3ae7c 136{
94796d85
WD
137 printf("%s - %s\n\n", cmdtp->name, cmdtp->usage);
138
139#ifdef CONFIG_SYS_LONGHELP
140 printf("Usage:\n%s ", cmdtp->name);
141
142 if (!cmdtp->help) {
143 puts ("- No additional help available.\n");
144 return 1;
145 }
146
616e2162
MY
147 puts(cmdtp->help);
148 putc('\n');
94796d85 149#endif /* CONFIG_SYS_LONGHELP */
47e26b1b 150 return 1;
62c3ae7c
PT
151}
152
04a85b3b 153#ifdef CONFIG_AUTO_COMPLETE
03dcf17d 154static char env_complete_buf[512];
04a85b3b 155
09140113
SG
156int var_complete(int argc, char *const argv[], char last_char, int maxv,
157 char *cmdv[])
04a85b3b 158{
04a85b3b
WD
159 int space;
160
4d91a6ec 161 space = last_char == '\0' || isblank(last_char);
04a85b3b
WD
162
163 if (space && argc == 1)
03dcf17d
BB
164 return env_complete("", maxv, cmdv, sizeof(env_complete_buf),
165 env_complete_buf, false);
04a85b3b
WD
166
167 if (!space && argc == 2)
03dcf17d
BB
168 return env_complete(argv[1], maxv, cmdv,
169 sizeof(env_complete_buf),
170 env_complete_buf, false);
560d424b 171
04a85b3b
WD
172 return 0;
173}
174
09140113 175static int dollar_complete(int argc, char *const argv[], char last_char,
03dcf17d
BB
176 int maxv, char *cmdv[])
177{
178 /* Make sure the last argument starts with a $. */
179 if (argc < 1 || argv[argc - 1][0] != '$' ||
180 last_char == '\0' || isblank(last_char))
181 return 0;
182
183 return env_complete(argv[argc - 1], maxv, cmdv, sizeof(env_complete_buf),
184 env_complete_buf, true);
185}
186
04a85b3b
WD
187/*************************************************************************************/
188
09140113
SG
189int complete_subcmdv(struct cmd_tbl *cmdtp, int count, int argc,
190 char *const argv[], char last_char,
6fb61445 191 int maxv, char *cmdv[])
04a85b3b 192{
f8bb6964 193#ifdef CONFIG_CMDLINE
09140113 194 const struct cmd_tbl *cmdend = cmdtp + count;
04a85b3b
WD
195 const char *p;
196 int len, clen;
197 int n_found = 0;
198 const char *cmd;
199
200 /* sanity? */
201 if (maxv < 2)
202 return -2;
203
204 cmdv[0] = NULL;
205
206 if (argc == 0) {
207 /* output full list of commands */
6c7c946c 208 for (; cmdtp != cmdend; cmdtp++) {
04a85b3b 209 if (n_found >= maxv - 2) {
9b438946 210 cmdv[n_found++] = "...";
04a85b3b
WD
211 break;
212 }
9b438946 213 cmdv[n_found++] = cmdtp->name;
04a85b3b
WD
214 }
215 cmdv[n_found] = NULL;
216 return n_found;
217 }
218
219 /* more than one arg or one but the start of the next */
616e2162 220 if (argc > 1 || last_char == '\0' || isblank(last_char)) {
6fb61445 221 cmdtp = find_cmd_tbl(argv[0], cmdtp, count);
04a85b3b
WD
222 if (cmdtp == NULL || cmdtp->complete == NULL) {
223 cmdv[0] = NULL;
224 return 0;
225 }
226 return (*cmdtp->complete)(argc, argv, last_char, maxv, cmdv);
227 }
228
229 cmd = argv[0];
230 /*
231 * Some commands allow length modifiers (like "cp.b");
232 * compare command name only until first dot.
233 */
234 p = strchr(cmd, '.');
235 if (p == NULL)
236 len = strlen(cmd);
237 else
238 len = p - cmd;
239
240 /* return the partial matches */
6c7c946c 241 for (; cmdtp != cmdend; cmdtp++) {
04a85b3b
WD
242
243 clen = strlen(cmdtp->name);
244 if (clen < len)
245 continue;
246
247 if (memcmp(cmd, cmdtp->name, len) != 0)
248 continue;
249
250 /* too many! */
251 if (n_found >= maxv - 2) {
252 cmdv[n_found++] = "...";
253 break;
254 }
255
256 cmdv[n_found++] = cmdtp->name;
257 }
258
259 cmdv[n_found] = NULL;
260 return n_found;
f8bb6964
SG
261#else
262 return 0;
263#endif
04a85b3b
WD
264}
265
09140113 266static int complete_cmdv(int argc, char *const argv[], char last_char,
6fb61445
BB
267 int maxv, char *cmdv[])
268{
269#ifdef CONFIG_CMDLINE
09140113
SG
270 return complete_subcmdv(ll_entry_start(struct cmd_tbl, cmd),
271 ll_entry_count(struct cmd_tbl, cmd), argc, argv,
6fb61445
BB
272 last_char, maxv, cmdv);
273#else
274 return 0;
275#endif
276}
277
04a85b3b
WD
278static int make_argv(char *s, int argvsz, char *argv[])
279{
280 int argc = 0;
281
282 /* split into argv */
283 while (argc < argvsz - 1) {
284
285 /* skip any white space */
4d91a6ec 286 while (isblank(*s))
04a85b3b
WD
287 ++s;
288
53677ef1 289 if (*s == '\0') /* end of s, no more args */
04a85b3b
WD
290 break;
291
292 argv[argc++] = s; /* begin of argument string */
293
294 /* find end of string */
4d91a6ec 295 while (*s && !isblank(*s))
04a85b3b
WD
296 ++s;
297
298 if (*s == '\0') /* end of s, no more args */
299 break;
300
301 *s++ = '\0'; /* terminate current arg */
302 }
303 argv[argc] = NULL;
304
305 return argc;
306}
307
09140113
SG
308static void print_argv(const char *banner, const char *leader, const char *sep,
309 int linemax, char *const argv[])
04a85b3b
WD
310{
311 int ll = leader != NULL ? strlen(leader) : 0;
312 int sl = sep != NULL ? strlen(sep) : 0;
313 int len, i;
314
315 if (banner) {
316 puts("\n");
317 puts(banner);
318 }
319
320 i = linemax; /* force leader and newline */
321 while (*argv != NULL) {
322 len = strlen(*argv) + sl;
323 if (i + len >= linemax) {
324 puts("\n");
325 if (leader)
326 puts(leader);
327 i = ll - sl;
328 } else if (sep)
329 puts(sep);
330 puts(*argv++);
331 i += len;
332 }
333 printf("\n");
334}
335
09140113 336static int find_common_prefix(char *const argv[])
04a85b3b
WD
337{
338 int i, len;
339 char *anchor, *s, *t;
340
341 if (*argv == NULL)
342 return 0;
343
344 /* begin with max */
345 anchor = *argv++;
346 len = strlen(anchor);
347 while ((t = *argv++) != NULL) {
348 s = anchor;
349 for (i = 0; i < len; i++, t++, s++) {
350 if (*t != *s)
351 break;
352 }
353 len = s - anchor;
354 }
355 return len;
356}
357
04a85b3b
WD
358int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp)
359{
0de448d0 360 char tmp_buf[CONFIG_SYS_CBSIZE + 1]; /* copy of console I/O buffer */
04a85b3b 361 int n = *np, col = *colp;
6d0f6bcf 362 char *argv[CONFIG_SYS_MAXARGS + 1]; /* NULL terminated */
04a85b3b
WD
363 char *cmdv[20];
364 char *s, *t;
365 const char *sep;
366 int i, j, k, len, seplen, argc;
367 int cnt;
368 char last_char;
4225f830
MV
369#ifdef CONFIG_CMDLINE_PS_SUPPORT
370 const char *ps_prompt = env_get("PS1");
371#else
372 const char *ps_prompt = CONFIG_SYS_PROMPT;
373#endif
04a85b3b 374
4225f830 375 if (strcmp(prompt, ps_prompt) != 0)
04a85b3b
WD
376 return 0; /* not in normal console */
377
378 cnt = strlen(buf);
379 if (cnt >= 1)
380 last_char = buf[cnt - 1];
381 else
382 last_char = '\0';
383
384 /* copy to secondary buffer which will be affected */
385 strcpy(tmp_buf, buf);
386
387 /* separate into argv */
388 argc = make_argv(tmp_buf, sizeof(argv)/sizeof(argv[0]), argv);
389
03dcf17d
BB
390 /* first try a $ completion */
391 i = dollar_complete(argc, argv, last_char,
392 sizeof(cmdv) / sizeof(cmdv[0]), cmdv);
393 if (!i) {
394 /* do the completion and return the possible completions */
395 i = complete_cmdv(argc, argv, last_char,
396 sizeof(cmdv) / sizeof(cmdv[0]), cmdv);
397 }
04a85b3b
WD
398
399 /* no match; bell and out */
400 if (i == 0) {
401 if (argc > 1) /* allow tab for non command */
402 return 0;
403 putc('\a');
404 return 1;
405 }
406
407 s = NULL;
408 len = 0;
409 sep = NULL;
410 seplen = 0;
411 if (i == 1) { /* one match; perfect */
cbe07ebe
BB
412 if (last_char != '\0' && !isblank(last_char))
413 k = strlen(argv[argc - 1]);
414 else
415 k = 0;
416
04a85b3b
WD
417 s = cmdv[0] + k;
418 len = strlen(s);
419 sep = " ";
420 seplen = 1;
616e2162 421 } else if (i > 1 && (j = find_common_prefix(cmdv)) != 0) { /* more */
cbe07ebe
BB
422 if (last_char != '\0' && !isblank(last_char))
423 k = strlen(argv[argc - 1]);
424 else
425 k = 0;
426
04a85b3b
WD
427 j -= k;
428 if (j > 0) {
429 s = cmdv[0] + k;
430 len = j;
431 }
432 }
433
434 if (s != NULL) {
435 k = len + seplen;
436 /* make sure it fits */
6d0f6bcf 437 if (n + k >= CONFIG_SYS_CBSIZE - 2) {
04a85b3b
WD
438 putc('\a');
439 return 1;
440 }
441
442 t = buf + cnt;
443 for (i = 0; i < len; i++)
444 *t++ = *s++;
445 if (sep != NULL)
446 for (i = 0; i < seplen; i++)
447 *t++ = sep[i];
448 *t = '\0';
449 n += k;
450 col += k;
451 puts(t - k);
452 if (sep == NULL)
453 putc('\a');
454 *np = n;
455 *colp = col;
456 } else {
457 print_argv(NULL, " ", " ", 78, cmdv);
458
459 puts(prompt);
460 puts(buf);
461 }
462 return 1;
463}
464
465#endif
8a40fb14
JCPV
466
467#ifdef CMD_DATA_SIZE
48f31ee7 468int cmd_get_data_size(const char *arg, int default_size)
8a40fb14
JCPV
469{
470 /* Check for a size specification .b, .w or .l.
471 */
472 int len = strlen(arg);
92fa22a1 473 if (len >= 2 && arg[len-2] == '.') {
616e2162 474 switch (arg[len-1]) {
8a40fb14
JCPV
475 case 'b':
476 return 1;
477 case 'w':
478 return 2;
479 case 'l':
480 return 4;
481 case 's':
7526deec 482 return CMD_DATA_SIZE_STR;
a33a8242
SG
483 case 'q':
484 if (MEM_SUPPORT_64BIT_DATA)
485 return 8;
486 /* no break */
8a40fb14 487 default:
7526deec 488 return CMD_DATA_SIZE_ERR;
8a40fb14
JCPV
489 }
490 }
491 return default_size;
492}
493#endif
620f1f6a 494
09140113 495void fixup_cmdtable(struct cmd_tbl *cmdtp, int size)
620f1f6a
HS
496{
497 int i;
498
499 if (gd->reloc_off == 0)
500 return;
501
502 for (i = 0; i < size; i++) {
503 ulong addr;
504
6f94daf9
MS
505 addr = (ulong)(cmdtp->cmd_rep) + gd->reloc_off;
506 cmdtp->cmd_rep =
09140113 507 (int (*)(struct cmd_tbl *, int, int,
6f94daf9
MS
508 char * const [], int *))addr;
509
616e2162 510 addr = (ulong)(cmdtp->cmd) + gd->reloc_off;
2e88bb28 511#ifdef DEBUG_COMMANDS
620f1f6a 512 printf("Command \"%s\": 0x%08lx => 0x%08lx\n",
616e2162 513 cmdtp->name, (ulong)(cmdtp->cmd), addr);
620f1f6a 514#endif
09140113
SG
515 cmdtp->cmd = (int (*)(struct cmd_tbl *, int, int,
516 char *const []))addr;
620f1f6a
HS
517 addr = (ulong)(cmdtp->name) + gd->reloc_off;
518 cmdtp->name = (char *)addr;
519 if (cmdtp->usage) {
520 addr = (ulong)(cmdtp->usage) + gd->reloc_off;
521 cmdtp->usage = (char *)addr;
522 }
523#ifdef CONFIG_SYS_LONGHELP
524 if (cmdtp->help) {
525 addr = (ulong)(cmdtp->help) + gd->reloc_off;
526 cmdtp->help = (char *)addr;
527 }
fa28bd2e
DS
528#endif
529#ifdef CONFIG_AUTO_COMPLETE
530 if (cmdtp->complete) {
531 addr = (ulong)(cmdtp->complete) + gd->reloc_off;
3668d8fa
DS
532 cmdtp->complete =
533 (int (*)(int, char * const [], char, int, char * []))addr;
fa28bd2e 534 }
620f1f6a
HS
535#endif
536 cmdtp++;
537 }
538}
bdf8e34b 539
09140113
SG
540int cmd_always_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
541 char *const argv[], int *repeatable)
80a48dd4
BB
542{
543 *repeatable = 1;
544
545 return cmdtp->cmd(cmdtp, flag, argc, argv);
546}
547
09140113
SG
548int cmd_never_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
549 char *const argv[], int *repeatable)
80a48dd4
BB
550{
551 *repeatable = 0;
552
553 return cmdtp->cmd(cmdtp, flag, argc, argv);
554}
555
09140113
SG
556int cmd_discard_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
557 char *const argv[])
80a48dd4
BB
558{
559 int repeatable;
560
561 return cmdtp->cmd_rep(cmdtp, flag, argc, argv, &repeatable);
562}
563
bdf8e34b
SG
564/**
565 * Call a command function. This should be the only route in U-Boot to call
566 * a command, so that we can track whether we are waiting for input or
567 * executing a command.
568 *
569 * @param cmdtp Pointer to the command to execute
570 * @param flag Some flags normally 0 (see CMD_FLAG_.. above)
571 * @param argc Number of arguments (arg 0 must be the command text)
572 * @param argv Arguments
80a48dd4 573 * @param repeatable Can the command be repeated
185f812c 574 * Return: 0 if command succeeded, else non-zero (CMD_RET_...)
bdf8e34b 575 */
09140113
SG
576static int cmd_call(struct cmd_tbl *cmdtp, int flag, int argc,
577 char *const argv[], int *repeatable)
bdf8e34b
SG
578{
579 int result;
580
80a48dd4 581 result = cmdtp->cmd_rep(cmdtp, flag, argc, argv, repeatable);
bdf8e34b 582 if (result)
58b6ad68 583 debug("Command failed, result=%d\n", result);
bdf8e34b
SG
584 return result;
585}
9d12d5d4 586
09140113 587enum command_ret_t cmd_process(int flag, int argc, char *const argv[],
34765e88 588 int *repeatable, ulong *ticks)
9d12d5d4
SG
589{
590 enum command_ret_t rc = CMD_RET_SUCCESS;
09140113 591 struct cmd_tbl *cmdtp;
9d12d5d4 592
7ae31fcc
CM
593#if defined(CONFIG_SYS_XTRACE)
594 char *xtrace;
595
596 xtrace = env_get("xtrace");
597 if (xtrace) {
598 puts("+");
599 for (int i = 0; i < argc; i++) {
600 puts(" ");
601 puts(argv[i]);
602 }
603 puts("\n");
604 }
605#endif
606
9d12d5d4
SG
607 /* Look up command in command table */
608 cmdtp = find_cmd(argv[0]);
609 if (cmdtp == NULL) {
610 printf("Unknown command '%s' - try 'help'\n", argv[0]);
611 return 1;
612 }
613
614 /* found - check max args */
615 if (argc > cmdtp->maxargs)
616 rc = CMD_RET_USAGE;
617
618#if defined(CONFIG_CMD_BOOTD)
619 /* avoid "bootd" recursion */
620 else if (cmdtp->cmd == do_bootd) {
621 if (flag & CMD_FLAG_BOOTD) {
622 puts("'bootd' recursion detected\n");
623 rc = CMD_RET_FAILURE;
624 } else {
625 flag |= CMD_FLAG_BOOTD;
626 }
627 }
628#endif
629
630 /* If OK so far, then do the command */
631 if (!rc) {
80a48dd4
BB
632 int newrep;
633
34765e88
RG
634 if (ticks)
635 *ticks = get_timer(0);
80a48dd4 636 rc = cmd_call(cmdtp, flag, argc, argv, &newrep);
34765e88
RG
637 if (ticks)
638 *ticks = get_timer(*ticks);
80a48dd4 639 *repeatable &= newrep;
9d12d5d4
SG
640 }
641 if (rc == CMD_RET_USAGE)
642 rc = cmd_usage(cmdtp);
643 return rc;
644}
16ff9902 645
09140113 646int cmd_process_error(struct cmd_tbl *cmdtp, int err)
16ff9902 647{
27eb7bce
MS
648 if (err == CMD_RET_USAGE)
649 return CMD_RET_USAGE;
650
16ff9902
SG
651 if (err) {
652 printf("Command '%s' failed: Error %d\n", cmdtp->name, err);
37233240 653 return CMD_RET_FAILURE;
16ff9902
SG
654 }
655
37233240 656 return CMD_RET_SUCCESS;
16ff9902 657}
30f3333d
SG
658
659int cmd_source_script(ulong addr, const char *fit_uname, const char *confname)
660{
661 char *data;
662 void *buf;
663 uint len;
664 int ret;
665
666 buf = map_sysmem(addr, 0);
667 ret = image_locate_script(buf, 0, fit_uname, confname, &data, &len);
668 unmap_sysmem(buf);
669 if (ret)
670 return CMD_RET_FAILURE;
671
672 debug("** Script length: %d\n", len);
673 return run_command_list(data, len, 0);
674}