Merge tag 'u-boot-atmel-2021.04-a' of https://gitlab.denx.de/u-boot/custodians/u...
[platform/kernel/u-boot.git] / cmd / nvedit.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2013
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  *
6  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7  * Andreas Heppel <aheppel@sysgo.de>
8  *
9  * Copyright 2011 Freescale Semiconductor, Inc.
10  */
11
12 /*
13  * Support for persistent environment data
14  *
15  * The "environment" is stored on external storage as a list of '\0'
16  * terminated "name=value" strings. The end of the list is marked by
17  * a double '\0'. The environment is preceded by a 32 bit CRC over
18  * the data part and, in case of redundant environment, a byte of
19  * flags.
20  *
21  * This linearized representation will also be used before
22  * relocation, i. e. as long as we don't have a full C runtime
23  * environment. After that, we use a hash table.
24  */
25
26 #include <common.h>
27 #include <cli.h>
28 #include <command.h>
29 #include <console.h>
30 #include <env.h>
31 #include <env_internal.h>
32 #include <log.h>
33 #include <net.h>
34 #include <search.h>
35 #include <errno.h>
36 #include <malloc.h>
37 #include <mapmem.h>
38 #include <linux/bitops.h>
39 #include <u-boot/crc.h>
40 #include <watchdog.h>
41 #include <linux/stddef.h>
42 #include <asm/byteorder.h>
43 #include <asm/io.h>
44
45 DECLARE_GLOBAL_DATA_PTR;
46
47 #if     defined(CONFIG_ENV_IS_IN_EEPROM)        || \
48         defined(CONFIG_ENV_IS_IN_FLASH)         || \
49         defined(CONFIG_ENV_IS_IN_MMC)           || \
50         defined(CONFIG_ENV_IS_IN_FAT)           || \
51         defined(CONFIG_ENV_IS_IN_EXT4)          || \
52         defined(CONFIG_ENV_IS_IN_NAND)          || \
53         defined(CONFIG_ENV_IS_IN_NVRAM)         || \
54         defined(CONFIG_ENV_IS_IN_ONENAND)       || \
55         defined(CONFIG_ENV_IS_IN_SATA)          || \
56         defined(CONFIG_ENV_IS_IN_SPI_FLASH)     || \
57         defined(CONFIG_ENV_IS_IN_REMOTE)        || \
58         defined(CONFIG_ENV_IS_IN_UBI)
59
60 #define ENV_IS_IN_DEVICE
61
62 #endif
63
64 #if     !defined(ENV_IS_IN_DEVICE)              && \
65         !defined(CONFIG_ENV_IS_NOWHERE)
66 # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|MMC|FAT|EXT4|\
67 NAND|NVRAM|ONENAND|SATA|SPI_FLASH|REMOTE|UBI} or CONFIG_ENV_IS_NOWHERE
68 #endif
69
70 /*
71  * Maximum expected input data size for import command
72  */
73 #define MAX_ENV_SIZE    (1 << 20)       /* 1 MiB */
74
75 /*
76  * This variable is incremented on each do_env_set(), so it can
77  * be used via env_get_id() as an indication, if the environment
78  * has changed or not. So it is possible to reread an environment
79  * variable only if the environment was changed ... done so for
80  * example in NetInitLoop()
81  */
82 static int env_id = 1;
83
84 int env_get_id(void)
85 {
86         return env_id;
87 }
88
89 #ifndef CONFIG_SPL_BUILD
90 /*
91  * Command interface: print one or all environment variables
92  *
93  * Returns 0 in case of error, or length of printed string
94  */
95 static int env_print(char *name, int flag)
96 {
97         char *res = NULL;
98         ssize_t len;
99
100         if (name) {             /* print a single name */
101                 struct env_entry e, *ep;
102
103                 e.key = name;
104                 e.data = NULL;
105                 hsearch_r(e, ENV_FIND, &ep, &env_htab, flag);
106                 if (ep == NULL)
107                         return 0;
108                 len = printf("%s=%s\n", ep->key, ep->data);
109                 return len;
110         }
111
112         /* print whole list */
113         len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL);
114
115         if (len > 0) {
116                 puts(res);
117                 free(res);
118                 return len;
119         }
120
121         /* should never happen */
122         printf("## Error: cannot export environment\n");
123         return 0;
124 }
125
126 static int do_env_print(struct cmd_tbl *cmdtp, int flag, int argc,
127                         char *const argv[])
128 {
129         int i;
130         int rcode = 0;
131         int env_flag = H_HIDE_DOT;
132
133 #if defined(CONFIG_CMD_NVEDIT_EFI)
134         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
135                 return do_env_print_efi(cmdtp, flag, --argc, ++argv);
136 #endif
137
138         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') {
139                 argc--;
140                 argv++;
141                 env_flag &= ~H_HIDE_DOT;
142         }
143
144         if (argc == 1) {
145                 /* print all env vars */
146                 rcode = env_print(NULL, env_flag);
147                 if (!rcode)
148                         return 1;
149                 printf("\nEnvironment size: %d/%ld bytes\n",
150                         rcode, (ulong)ENV_SIZE);
151                 return 0;
152         }
153
154         /* print selected env vars */
155         env_flag &= ~H_HIDE_DOT;
156         for (i = 1; i < argc; ++i) {
157                 int rc = env_print(argv[i], env_flag);
158                 if (!rc) {
159                         printf("## Error: \"%s\" not defined\n", argv[i]);
160                         ++rcode;
161                 }
162         }
163
164         return rcode;
165 }
166
167 #ifdef CONFIG_CMD_GREPENV
168 static int do_env_grep(struct cmd_tbl *cmdtp, int flag,
169                        int argc, char *const argv[])
170 {
171         char *res = NULL;
172         int len, grep_how, grep_what;
173
174         if (argc < 2)
175                 return CMD_RET_USAGE;
176
177         grep_how  = H_MATCH_SUBSTR;     /* default: substring search    */
178         grep_what = H_MATCH_BOTH;       /* default: grep names and values */
179
180         while (--argc > 0 && **++argv == '-') {
181                 char *arg = *argv;
182                 while (*++arg) {
183                         switch (*arg) {
184 #ifdef CONFIG_REGEX
185                         case 'e':               /* use regex matching */
186                                 grep_how  = H_MATCH_REGEX;
187                                 break;
188 #endif
189                         case 'n':               /* grep for name */
190                                 grep_what = H_MATCH_KEY;
191                                 break;
192                         case 'v':               /* grep for value */
193                                 grep_what = H_MATCH_DATA;
194                                 break;
195                         case 'b':               /* grep for both */
196                                 grep_what = H_MATCH_BOTH;
197                                 break;
198                         case '-':
199                                 goto DONE;
200                         default:
201                                 return CMD_RET_USAGE;
202                         }
203                 }
204         }
205
206 DONE:
207         len = hexport_r(&env_htab, '\n',
208                         flag | grep_what | grep_how,
209                         &res, 0, argc, argv);
210
211         if (len > 0) {
212                 puts(res);
213                 free(res);
214         }
215
216         if (len < 2)
217                 return 1;
218
219         return 0;
220 }
221 #endif
222 #endif /* CONFIG_SPL_BUILD */
223
224 /*
225  * Set a new environment variable,
226  * or replace or delete an existing one.
227  */
228 static int _do_env_set(int flag, int argc, char *const argv[], int env_flag)
229 {
230         int   i, len;
231         char  *name, *value, *s;
232         struct env_entry e, *ep;
233
234         debug("Initial value for argc=%d\n", argc);
235
236 #if CONFIG_IS_ENABLED(CMD_NVEDIT_EFI)
237         if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
238                 return do_env_set_efi(NULL, flag, --argc, ++argv);
239 #endif
240
241         while (argc > 1 && **(argv + 1) == '-') {
242                 char *arg = *++argv;
243
244                 --argc;
245                 while (*++arg) {
246                         switch (*arg) {
247                         case 'f':               /* force */
248                                 env_flag |= H_FORCE;
249                                 break;
250                         default:
251                                 return CMD_RET_USAGE;
252                         }
253                 }
254         }
255         debug("Final value for argc=%d\n", argc);
256         name = argv[1];
257
258         if (strchr(name, '=')) {
259                 printf("## Error: illegal character '='"
260                        "in variable name \"%s\"\n", name);
261                 return 1;
262         }
263
264         env_id++;
265
266         /* Delete only ? */
267         if (argc < 3 || argv[2] == NULL) {
268                 int rc = hdelete_r(name, &env_htab, env_flag);
269
270                 /* If the variable didn't exist, don't report an error */
271                 return rc && rc != -ENOENT ? 1 : 0;
272         }
273
274         /*
275          * Insert / replace new value
276          */
277         for (i = 2, len = 0; i < argc; ++i)
278                 len += strlen(argv[i]) + 1;
279
280         value = malloc(len);
281         if (value == NULL) {
282                 printf("## Can't malloc %d bytes\n", len);
283                 return 1;
284         }
285         for (i = 2, s = value; i < argc; ++i) {
286                 char *v = argv[i];
287
288                 while ((*s++ = *v++) != '\0')
289                         ;
290                 *(s - 1) = ' ';
291         }
292         if (s != value)
293                 *--s = '\0';
294
295         e.key   = name;
296         e.data  = value;
297         hsearch_r(e, ENV_ENTER, &ep, &env_htab, env_flag);
298         free(value);
299         if (!ep) {
300                 printf("## Error inserting \"%s\" variable, errno=%d\n",
301                         name, errno);
302                 return 1;
303         }
304
305         return 0;
306 }
307
308 int env_set(const char *varname, const char *varvalue)
309 {
310         const char * const argv[4] = { "setenv", varname, varvalue, NULL };
311
312         /* before import into hashtable */
313         if (!(gd->flags & GD_FLG_ENV_READY))
314                 return 1;
315
316         if (varvalue == NULL || varvalue[0] == '\0')
317                 return _do_env_set(0, 2, (char * const *)argv, H_PROGRAMMATIC);
318         else
319                 return _do_env_set(0, 3, (char * const *)argv, H_PROGRAMMATIC);
320 }
321
322 /**
323  * Set an environment variable to an integer value
324  *
325  * @param varname       Environment variable to set
326  * @param value         Value to set it to
327  * @return 0 if ok, 1 on error
328  */
329 int env_set_ulong(const char *varname, ulong value)
330 {
331         /* TODO: this should be unsigned */
332         char *str = simple_itoa(value);
333
334         return env_set(varname, str);
335 }
336
337 /**
338  * Set an environment variable to an value in hex
339  *
340  * @param varname       Environment variable to set
341  * @param value         Value to set it to
342  * @return 0 if ok, 1 on error
343  */
344 int env_set_hex(const char *varname, ulong value)
345 {
346         char str[17];
347
348         sprintf(str, "%lx", value);
349         return env_set(varname, str);
350 }
351
352 ulong env_get_hex(const char *varname, ulong default_val)
353 {
354         const char *s;
355         ulong value;
356         char *endp;
357
358         s = env_get(varname);
359         if (s)
360                 value = simple_strtoul(s, &endp, 16);
361         if (!s || endp == s)
362                 return default_val;
363
364         return value;
365 }
366
367 int eth_env_get_enetaddr(const char *name, uint8_t *enetaddr)
368 {
369         string_to_enetaddr(env_get(name), enetaddr);
370         return is_valid_ethaddr(enetaddr);
371 }
372
373 int eth_env_set_enetaddr(const char *name, const uint8_t *enetaddr)
374 {
375         char buf[ARP_HLEN_ASCII + 1];
376
377         if (eth_env_get_enetaddr(name, (uint8_t *)buf))
378                 return -EEXIST;
379
380         sprintf(buf, "%pM", enetaddr);
381
382         return env_set(name, buf);
383 }
384
385 #ifndef CONFIG_SPL_BUILD
386 static int do_env_set(struct cmd_tbl *cmdtp, int flag, int argc,
387                       char *const argv[])
388 {
389         if (argc < 2)
390                 return CMD_RET_USAGE;
391
392         return _do_env_set(flag, argc, argv, H_INTERACTIVE);
393 }
394
395 /*
396  * Prompt for environment variable
397  */
398 #if defined(CONFIG_CMD_ASKENV)
399 int do_env_ask(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
400 {
401         char message[CONFIG_SYS_CBSIZE];
402         int i, len, pos, size;
403         char *local_args[4];
404         char *endptr;
405
406         local_args[0] = argv[0];
407         local_args[1] = argv[1];
408         local_args[2] = NULL;
409         local_args[3] = NULL;
410
411         /*
412          * Check the syntax:
413          *
414          * env_ask envname [message1 ...] [size]
415          */
416         if (argc == 1)
417                 return CMD_RET_USAGE;
418
419         /*
420          * We test the last argument if it can be converted
421          * into a decimal number.  If yes, we assume it's
422          * the size.  Otherwise we echo it as part of the
423          * message.
424          */
425         i = simple_strtoul(argv[argc - 1], &endptr, 10);
426         if (*endptr != '\0') {                  /* no size */
427                 size = CONFIG_SYS_CBSIZE - 1;
428         } else {                                /* size given */
429                 size = i;
430                 --argc;
431         }
432
433         if (argc <= 2) {
434                 sprintf(message, "Please enter '%s': ", argv[1]);
435         } else {
436                 /* env_ask envname message1 ... messagen [size] */
437                 for (i = 2, pos = 0; i < argc && pos+1 < sizeof(message); i++) {
438                         if (pos)
439                                 message[pos++] = ' ';
440
441                         strncpy(message + pos, argv[i], sizeof(message) - pos);
442                         pos += strlen(argv[i]);
443                 }
444                 if (pos < sizeof(message) - 1) {
445                         message[pos++] = ' ';
446                         message[pos] = '\0';
447                 } else
448                         message[CONFIG_SYS_CBSIZE - 1] = '\0';
449         }
450
451         if (size >= CONFIG_SYS_CBSIZE)
452                 size = CONFIG_SYS_CBSIZE - 1;
453
454         if (size <= 0)
455                 return 1;
456
457         /* prompt for input */
458         len = cli_readline(message);
459
460         if (size < len)
461                 console_buffer[size] = '\0';
462
463         len = 2;
464         if (console_buffer[0] != '\0') {
465                 local_args[2] = console_buffer;
466                 len = 3;
467         }
468
469         /* Continue calling setenv code */
470         return _do_env_set(flag, len, local_args, H_INTERACTIVE);
471 }
472 #endif
473
474 #if defined(CONFIG_CMD_ENV_CALLBACK)
475 static int print_static_binding(const char *var_name, const char *callback_name,
476                                 void *priv)
477 {
478         printf("\t%-20s %-20s\n", var_name, callback_name);
479
480         return 0;
481 }
482
483 static int print_active_callback(struct env_entry *entry)
484 {
485         struct env_clbk_tbl *clbkp;
486         int i;
487         int num_callbacks;
488
489         if (entry->callback == NULL)
490                 return 0;
491
492         /* look up the callback in the linker-list */
493         num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
494         for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
495              i < num_callbacks;
496              i++, clbkp++) {
497 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
498                 if (entry->callback == clbkp->callback + gd->reloc_off)
499 #else
500                 if (entry->callback == clbkp->callback)
501 #endif
502                         break;
503         }
504
505         if (i == num_callbacks)
506                 /* this should probably never happen, but just in case... */
507                 printf("\t%-20s %p\n", entry->key, entry->callback);
508         else
509                 printf("\t%-20s %-20s\n", entry->key, clbkp->name);
510
511         return 0;
512 }
513
514 /*
515  * Print the callbacks available and what they are bound to
516  */
517 int do_env_callback(struct cmd_tbl *cmdtp, int flag, int argc,
518                     char *const argv[])
519 {
520         struct env_clbk_tbl *clbkp;
521         int i;
522         int num_callbacks;
523
524         /* Print the available callbacks */
525         puts("Available callbacks:\n");
526         puts("\tCallback Name\n");
527         puts("\t-------------\n");
528         num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk);
529         for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk);
530              i < num_callbacks;
531              i++, clbkp++)
532                 printf("\t%s\n", clbkp->name);
533         puts("\n");
534
535         /* Print the static bindings that may exist */
536         puts("Static callback bindings:\n");
537         printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
538         printf("\t%-20s %-20s\n", "-------------", "-------------");
539         env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding, NULL);
540         puts("\n");
541
542         /* walk through each variable and print the callback if it has one */
543         puts("Active callback bindings:\n");
544         printf("\t%-20s %-20s\n", "Variable Name", "Callback Name");
545         printf("\t%-20s %-20s\n", "-------------", "-------------");
546         hwalk_r(&env_htab, print_active_callback);
547         return 0;
548 }
549 #endif
550
551 #if defined(CONFIG_CMD_ENV_FLAGS)
552 static int print_static_flags(const char *var_name, const char *flags,
553                               void *priv)
554 {
555         enum env_flags_vartype type = env_flags_parse_vartype(flags);
556         enum env_flags_varaccess access = env_flags_parse_varaccess(flags);
557
558         printf("\t%-20s %-20s %-20s\n", var_name,
559                 env_flags_get_vartype_name(type),
560                 env_flags_get_varaccess_name(access));
561
562         return 0;
563 }
564
565 static int print_active_flags(struct env_entry *entry)
566 {
567         enum env_flags_vartype type;
568         enum env_flags_varaccess access;
569
570         if (entry->flags == 0)
571                 return 0;
572
573         type = (enum env_flags_vartype)
574                 (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK);
575         access = env_flags_parse_varaccess_from_binflags(entry->flags);
576         printf("\t%-20s %-20s %-20s\n", entry->key,
577                 env_flags_get_vartype_name(type),
578                 env_flags_get_varaccess_name(access));
579
580         return 0;
581 }
582
583 /*
584  * Print the flags available and what variables have flags
585  */
586 int do_env_flags(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
587 {
588         /* Print the available variable types */
589         printf("Available variable type flags (position %d):\n",
590                 ENV_FLAGS_VARTYPE_LOC);
591         puts("\tFlag\tVariable Type Name\n");
592         puts("\t----\t------------------\n");
593         env_flags_print_vartypes();
594         puts("\n");
595
596         /* Print the available variable access types */
597         printf("Available variable access flags (position %d):\n",
598                 ENV_FLAGS_VARACCESS_LOC);
599         puts("\tFlag\tVariable Access Name\n");
600         puts("\t----\t--------------------\n");
601         env_flags_print_varaccess();
602         puts("\n");
603
604         /* Print the static flags that may exist */
605         puts("Static flags:\n");
606         printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
607                 "Variable Access");
608         printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
609                 "---------------");
610         env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags, NULL);
611         puts("\n");
612
613         /* walk through each variable and print the flags if non-default */
614         puts("Active flags:\n");
615         printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type",
616                 "Variable Access");
617         printf("\t%-20s %-20s %-20s\n", "-------------", "-------------",
618                 "---------------");
619         hwalk_r(&env_htab, print_active_flags);
620         return 0;
621 }
622 #endif
623
624 /*
625  * Interactively edit an environment variable
626  */
627 #if defined(CONFIG_CMD_EDITENV)
628 static int do_env_edit(struct cmd_tbl *cmdtp, int flag, int argc,
629                        char *const argv[])
630 {
631         char buffer[CONFIG_SYS_CBSIZE];
632         char *init_val;
633
634         if (argc < 2)
635                 return CMD_RET_USAGE;
636
637         /* before import into hashtable */
638         if (!(gd->flags & GD_FLG_ENV_READY))
639                 return 1;
640
641         /* Set read buffer to initial value or empty sting */
642         init_val = env_get(argv[1]);
643         if (init_val)
644                 snprintf(buffer, CONFIG_SYS_CBSIZE, "%s", init_val);
645         else
646                 buffer[0] = '\0';
647
648         if (cli_readline_into_buffer("edit: ", buffer, 0) < 0)
649                 return 1;
650
651         if (buffer[0] == '\0') {
652                 const char * const _argv[3] = { "setenv", argv[1], NULL };
653
654                 return _do_env_set(0, 2, (char * const *)_argv, H_INTERACTIVE);
655         } else {
656                 const char * const _argv[4] = { "setenv", argv[1], buffer,
657                         NULL };
658
659                 return _do_env_set(0, 3, (char * const *)_argv, H_INTERACTIVE);
660         }
661 }
662 #endif /* CONFIG_CMD_EDITENV */
663 #endif /* CONFIG_SPL_BUILD */
664
665 /*
666  * Look up variable from environment,
667  * return address of storage for that variable,
668  * or NULL if not found
669  */
670 char *env_get(const char *name)
671 {
672         if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
673                 struct env_entry e, *ep;
674
675                 WATCHDOG_RESET();
676
677                 e.key   = name;
678                 e.data  = NULL;
679                 hsearch_r(e, ENV_FIND, &ep, &env_htab, 0);
680
681                 return ep ? ep->data : NULL;
682         }
683
684         /* restricted capabilities before import */
685         if (env_get_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
686                 return (char *)(gd->env_buf);
687
688         return NULL;
689 }
690
691 /*
692  * Like env_get, but prints an error if envvar isn't defined in the
693  * environment.  It always returns what env_get does, so it can be used in
694  * place of env_get without changing error handling otherwise.
695  */
696 char *from_env(const char *envvar)
697 {
698         char *ret;
699
700         ret = env_get(envvar);
701
702         if (!ret)
703                 printf("missing environment variable: %s\n", envvar);
704
705         return ret;
706 }
707
708 /*
709  * Look up variable from environment for restricted C runtime env.
710  */
711 int env_get_f(const char *name, char *buf, unsigned len)
712 {
713         int i, nxt, c;
714
715         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
716                 int val, n;
717
718                 for (nxt = i; (c = env_get_char(nxt)) != '\0'; ++nxt) {
719                         if (c < 0)
720                                 return c;
721                         if (nxt >= CONFIG_ENV_SIZE)
722                                 return -1;
723                 }
724
725                 val = env_match((uchar *)name, i);
726                 if (val < 0)
727                         continue;
728
729                 /* found; copy out */
730                 for (n = 0; n < len; ++n, ++buf) {
731                         c = env_get_char(val++);
732                         if (c < 0)
733                                 return c;
734                         *buf = c;
735                         if (*buf == '\0')
736                                 return n;
737                 }
738
739                 if (n)
740                         *--buf = '\0';
741
742                 printf("env_buf [%u bytes] too small for value of \"%s\"\n",
743                        len, name);
744
745                 return n;
746         }
747
748         return -1;
749 }
750
751 /**
752  * Decode the integer value of an environment variable and return it.
753  *
754  * @param name          Name of environment variable
755  * @param base          Number base to use (normally 10, or 16 for hex)
756  * @param default_val   Default value to return if the variable is not
757  *                      found
758  * @return the decoded value, or default_val if not found
759  */
760 ulong env_get_ulong(const char *name, int base, ulong default_val)
761 {
762         /*
763          * We can use env_get() here, even before relocation, since the
764          * environment variable value is an integer and thus short.
765          */
766         const char *str = env_get(name);
767
768         return str ? simple_strtoul(str, NULL, base) : default_val;
769 }
770
771 #ifndef CONFIG_SPL_BUILD
772 #if defined(CONFIG_CMD_SAVEENV) && defined(ENV_IS_IN_DEVICE)
773 static int do_env_save(struct cmd_tbl *cmdtp, int flag, int argc,
774                        char *const argv[])
775 {
776         return env_save() ? 1 : 0;
777 }
778
779 U_BOOT_CMD(
780         saveenv, 1, 0,  do_env_save,
781         "save environment variables to persistent storage",
782         ""
783 );
784
785 #if defined(CONFIG_CMD_ERASEENV)
786 static int do_env_erase(struct cmd_tbl *cmdtp, int flag, int argc,
787                         char *const argv[])
788 {
789         return env_erase() ? 1 : 0;
790 }
791
792 U_BOOT_CMD(
793         eraseenv, 1, 0, do_env_erase,
794         "erase environment variables from persistent storage",
795         ""
796 );
797 #endif
798 #endif
799
800 #if defined(CONFIG_CMD_NVEDIT_LOAD)
801 static int do_env_load(struct cmd_tbl *cmdtp, int flag, int argc,
802                        char *const argv[])
803 {
804         return env_reload() ? 1 : 0;
805 }
806 #endif
807
808 #if defined(CONFIG_CMD_NVEDIT_SELECT)
809 static int do_env_select(struct cmd_tbl *cmdtp, int flag, int argc,
810                          char *const argv[])
811 {
812         return env_select(argv[1]) ? 1 : 0;
813 }
814 #endif
815
816 #endif /* CONFIG_SPL_BUILD */
817
818 int env_match(uchar *s1, int i2)
819 {
820         if (s1 == NULL)
821                 return -1;
822
823         while (*s1 == env_get_char(i2++))
824                 if (*s1++ == '=')
825                         return i2;
826
827         if (*s1 == '\0' && env_get_char(i2-1) == '=')
828                 return i2;
829
830         return -1;
831 }
832
833 #ifndef CONFIG_SPL_BUILD
834 static int do_env_default(struct cmd_tbl *cmdtp, int flag,
835                           int argc, char *const argv[])
836 {
837         int all = 0, env_flag = H_INTERACTIVE;
838
839         debug("Initial value for argc=%d\n", argc);
840         while (--argc > 0 && **++argv == '-') {
841                 char *arg = *argv;
842
843                 while (*++arg) {
844                         switch (*arg) {
845                         case 'a':               /* default all */
846                                 all = 1;
847                                 break;
848                         case 'f':               /* force */
849                                 env_flag |= H_FORCE;
850                                 break;
851                         default:
852                                 return cmd_usage(cmdtp);
853                         }
854                 }
855         }
856         debug("Final value for argc=%d\n", argc);
857         if (all && (argc == 0)) {
858                 /* Reset the whole environment */
859                 env_set_default("## Resetting to default environment\n",
860                                 env_flag);
861                 return 0;
862         }
863         if (!all && (argc > 0)) {
864                 /* Reset individual variables */
865                 env_set_default_vars(argc, argv, env_flag);
866                 return 0;
867         }
868
869         return cmd_usage(cmdtp);
870 }
871
872 static int do_env_delete(struct cmd_tbl *cmdtp, int flag,
873                          int argc, char *const argv[])
874 {
875         int env_flag = H_INTERACTIVE;
876         int ret = 0;
877
878         debug("Initial value for argc=%d\n", argc);
879         while (argc > 1 && **(argv + 1) == '-') {
880                 char *arg = *++argv;
881
882                 --argc;
883                 while (*++arg) {
884                         switch (*arg) {
885                         case 'f':               /* force */
886                                 env_flag |= H_FORCE;
887                                 break;
888                         default:
889                                 return CMD_RET_USAGE;
890                         }
891                 }
892         }
893         debug("Final value for argc=%d\n", argc);
894
895         env_id++;
896
897         while (--argc > 0) {
898                 char *name = *++argv;
899
900                 if (hdelete_r(name, &env_htab, env_flag))
901                         ret = 1;
902         }
903
904         return ret;
905 }
906
907 #ifdef CONFIG_CMD_EXPORTENV
908 /*
909  * env export [-t | -b | -c] [-s size] addr [var ...]
910  *      -t:     export as text format; if size is given, data will be
911  *              padded with '\0' bytes; if not, one terminating '\0'
912  *              will be added (which is included in the "filesize"
913  *              setting so you can for exmple copy this to flash and
914  *              keep the termination).
915  *      -b:     export as binary format (name=value pairs separated by
916  *              '\0', list end marked by double "\0\0")
917  *      -c:     export as checksum protected environment format as
918  *              used for example by "saveenv" command
919  *      -s size:
920  *              size of output buffer
921  *      addr:   memory address where environment gets stored
922  *      var...  List of variable names that get included into the
923  *              export. Without arguments, the whole environment gets
924  *              exported.
925  *
926  * With "-c" and size is NOT given, then the export command will
927  * format the data as currently used for the persistent storage,
928  * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
929  * prepend a valid CRC32 checksum and, in case of redundant
930  * environment, a "current" redundancy flag. If size is given, this
931  * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
932  * checksum and redundancy flag will be inserted.
933  *
934  * With "-b" and "-t", always only the real data (including a
935  * terminating '\0' byte) will be written; here the optional size
936  * argument will be used to make sure not to overflow the user
937  * provided buffer; the command will abort if the size is not
938  * sufficient. Any remaining space will be '\0' padded.
939  *
940  * On successful return, the variable "filesize" will be set.
941  * Note that filesize includes the trailing/terminating '\0' byte(s).
942  *
943  * Usage scenario:  create a text snapshot/backup of the current settings:
944  *
945  *      => env export -t 100000
946  *      => era ${backup_addr} +${filesize}
947  *      => cp.b 100000 ${backup_addr} ${filesize}
948  *
949  * Re-import this snapshot, deleting all other settings:
950  *
951  *      => env import -d -t ${backup_addr}
952  */
953 static int do_env_export(struct cmd_tbl *cmdtp, int flag,
954                          int argc, char *const argv[])
955 {
956         char    buf[32];
957         ulong   addr;
958         char    *ptr, *cmd, *res;
959         size_t  size = 0;
960         ssize_t len;
961         env_t   *envp;
962         char    sep = '\n';
963         int     chk = 0;
964         int     fmt = 0;
965
966         cmd = *argv;
967
968         while (--argc > 0 && **++argv == '-') {
969                 char *arg = *argv;
970                 while (*++arg) {
971                         switch (*arg) {
972                         case 'b':               /* raw binary format */
973                                 if (fmt++)
974                                         goto sep_err;
975                                 sep = '\0';
976                                 break;
977                         case 'c':               /* external checksum format */
978                                 if (fmt++)
979                                         goto sep_err;
980                                 sep = '\0';
981                                 chk = 1;
982                                 break;
983                         case 's':               /* size given */
984                                 if (--argc <= 0)
985                                         return cmd_usage(cmdtp);
986                                 size = simple_strtoul(*++argv, NULL, 16);
987                                 goto NXTARG;
988                         case 't':               /* text format */
989                                 if (fmt++)
990                                         goto sep_err;
991                                 sep = '\n';
992                                 break;
993                         default:
994                                 return CMD_RET_USAGE;
995                         }
996                 }
997 NXTARG:         ;
998         }
999
1000         if (argc < 1)
1001                 return CMD_RET_USAGE;
1002
1003         addr = simple_strtoul(argv[0], NULL, 16);
1004         ptr = map_sysmem(addr, size);
1005
1006         if (size)
1007                 memset(ptr, '\0', size);
1008
1009         argc--;
1010         argv++;
1011
1012         if (sep) {              /* export as text file */
1013                 len = hexport_r(&env_htab, sep,
1014                                 H_MATCH_KEY | H_MATCH_IDENT,
1015                                 &ptr, size, argc, argv);
1016                 if (len < 0) {
1017                         pr_err("## Error: Cannot export environment: errno = %d\n",
1018                                errno);
1019                         return 1;
1020                 }
1021                 sprintf(buf, "%zX", (size_t)len);
1022                 env_set("filesize", buf);
1023
1024                 return 0;
1025         }
1026
1027         envp = (env_t *)ptr;
1028
1029         if (chk)                /* export as checksum protected block */
1030                 res = (char *)envp->data;
1031         else                    /* export as raw binary data */
1032                 res = ptr;
1033
1034         len = hexport_r(&env_htab, '\0',
1035                         H_MATCH_KEY | H_MATCH_IDENT,
1036                         &res, ENV_SIZE, argc, argv);
1037         if (len < 0) {
1038                 pr_err("## Error: Cannot export environment: errno = %d\n",
1039                        errno);
1040                 return 1;
1041         }
1042
1043         if (chk) {
1044                 envp->crc = crc32(0, envp->data,
1045                                 size ? size - offsetof(env_t, data) : ENV_SIZE);
1046 #ifdef CONFIG_ENV_ADDR_REDUND
1047                 envp->flags = ENV_REDUND_ACTIVE;
1048 #endif
1049         }
1050         env_set_hex("filesize", len + offsetof(env_t, data));
1051
1052         return 0;
1053
1054 sep_err:
1055         printf("## Error: %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
1056                cmd);
1057         return 1;
1058 }
1059 #endif
1060
1061 #ifdef CONFIG_CMD_IMPORTENV
1062 /*
1063  * env import [-d] [-t [-r] | -b | -c] addr [size] [var ...]
1064  *      -d:     delete existing environment before importing if no var is
1065  *              passed; if vars are passed, if one var is in the current
1066  *              environment but not in the environment at addr, delete var from
1067  *              current environment;
1068  *              otherwise overwrite / append to existing definitions
1069  *      -t:     assume text format; either "size" must be given or the
1070  *              text data must be '\0' terminated
1071  *      -r:     handle CRLF like LF, that means exported variables with
1072  *              a content which ends with \r won't get imported. Used
1073  *              to import text files created with editors which are using CRLF
1074  *              for line endings. Only effective in addition to -t.
1075  *      -b:     assume binary format ('\0' separated, "\0\0" terminated)
1076  *      -c:     assume checksum protected environment format
1077  *      addr:   memory address to read from
1078  *      size:   length of input data; if missing, proper '\0'
1079  *              termination is mandatory
1080  *              if var is set and size should be missing (i.e. '\0'
1081  *              termination), set size to '-'
1082  *      var...  List of the names of the only variables that get imported from
1083  *              the environment at address 'addr'. Without arguments, the whole
1084  *              environment gets imported.
1085  */
1086 static int do_env_import(struct cmd_tbl *cmdtp, int flag,
1087                          int argc, char *const argv[])
1088 {
1089         ulong   addr;
1090         char    *cmd, *ptr;
1091         char    sep = '\n';
1092         int     chk = 0;
1093         int     fmt = 0;
1094         int     del = 0;
1095         int     crlf_is_lf = 0;
1096         int     wl = 0;
1097         size_t  size;
1098
1099         cmd = *argv;
1100
1101         while (--argc > 0 && **++argv == '-') {
1102                 char *arg = *argv;
1103                 while (*++arg) {
1104                         switch (*arg) {
1105                         case 'b':               /* raw binary format */
1106                                 if (fmt++)
1107                                         goto sep_err;
1108                                 sep = '\0';
1109                                 break;
1110                         case 'c':               /* external checksum format */
1111                                 if (fmt++)
1112                                         goto sep_err;
1113                                 sep = '\0';
1114                                 chk = 1;
1115                                 break;
1116                         case 't':               /* text format */
1117                                 if (fmt++)
1118                                         goto sep_err;
1119                                 sep = '\n';
1120                                 break;
1121                         case 'r':               /* handle CRLF like LF */
1122                                 crlf_is_lf = 1;
1123                                 break;
1124                         case 'd':
1125                                 del = 1;
1126                                 break;
1127                         default:
1128                                 return CMD_RET_USAGE;
1129                         }
1130                 }
1131         }
1132
1133         if (argc < 1)
1134                 return CMD_RET_USAGE;
1135
1136         if (!fmt)
1137                 printf("## Warning: defaulting to text format\n");
1138
1139         if (sep != '\n' && crlf_is_lf )
1140                 crlf_is_lf = 0;
1141
1142         addr = simple_strtoul(argv[0], NULL, 16);
1143         ptr = map_sysmem(addr, 0);
1144
1145         if (argc >= 2 && strcmp(argv[1], "-")) {
1146                 size = simple_strtoul(argv[1], NULL, 16);
1147         } else if (chk) {
1148                 puts("## Error: external checksum format must pass size\n");
1149                 return CMD_RET_FAILURE;
1150         } else {
1151                 char *s = ptr;
1152
1153                 size = 0;
1154
1155                 while (size < MAX_ENV_SIZE) {
1156                         if ((*s == sep) && (*(s+1) == '\0'))
1157                                 break;
1158                         ++s;
1159                         ++size;
1160                 }
1161                 if (size == MAX_ENV_SIZE) {
1162                         printf("## Warning: Input data exceeds %d bytes"
1163                                 " - truncated\n", MAX_ENV_SIZE);
1164                 }
1165                 size += 2;
1166                 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
1167         }
1168
1169         if (argc > 2)
1170                 wl = 1;
1171
1172         if (chk) {
1173                 uint32_t crc;
1174                 env_t *ep = (env_t *)ptr;
1175
1176                 if (size <= offsetof(env_t, data)) {
1177                         printf("## Error: Invalid size 0x%zX\n", size);
1178                         return 1;
1179                 }
1180
1181                 size -= offsetof(env_t, data);
1182                 memcpy(&crc, &ep->crc, sizeof(crc));
1183
1184                 if (crc32(0, ep->data, size) != crc) {
1185                         puts("## Error: bad CRC, import failed\n");
1186                         return 1;
1187                 }
1188                 ptr = (char *)ep->data;
1189         }
1190
1191         if (!himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR,
1192                        crlf_is_lf, wl ? argc - 2 : 0, wl ? &argv[2] : NULL)) {
1193                 pr_err("## Error: Environment import failed: errno = %d\n",
1194                        errno);
1195                 return 1;
1196         }
1197         gd->flags |= GD_FLG_ENV_READY;
1198
1199         return 0;
1200
1201 sep_err:
1202         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
1203                 cmd);
1204         return 1;
1205 }
1206 #endif
1207
1208 #if defined(CONFIG_CMD_NVEDIT_INFO)
1209 /*
1210  * print_env_info - print environment information
1211  */
1212 static int print_env_info(void)
1213 {
1214         const char *value;
1215
1216         /* print environment validity value */
1217         switch (gd->env_valid) {
1218         case ENV_INVALID:
1219                 value = "invalid";
1220                 break;
1221         case ENV_VALID:
1222                 value = "valid";
1223                 break;
1224         case ENV_REDUND:
1225                 value = "redundant";
1226                 break;
1227         default:
1228                 value = "unknown";
1229                 break;
1230         }
1231         printf("env_valid = %s\n", value);
1232
1233         /* print environment ready flag */
1234         value = gd->flags & GD_FLG_ENV_READY ? "true" : "false";
1235         printf("env_ready = %s\n", value);
1236
1237         /* print environment using default flag */
1238         value = gd->flags & GD_FLG_ENV_DEFAULT ? "true" : "false";
1239         printf("env_use_default = %s\n", value);
1240
1241         return CMD_RET_SUCCESS;
1242 }
1243
1244 #define ENV_INFO_IS_DEFAULT     BIT(0) /* default environment bit mask */
1245 #define ENV_INFO_IS_PERSISTED   BIT(1) /* environment persistence bit mask */
1246
1247 /*
1248  * env info - display environment information
1249  * env info [-d] - evaluate whether default environment is used
1250  * env info [-p] - evaluate whether environment can be persisted
1251  *      Add [-q] - quiet mode, use only for command result, for test by example:
1252  *                 test env info -p -d -q
1253  */
1254 static int do_env_info(struct cmd_tbl *cmdtp, int flag,
1255                        int argc, char *const argv[])
1256 {
1257         int eval_flags = 0;
1258         int eval_results = 0;
1259         bool quiet = false;
1260 #if defined(CONFIG_CMD_SAVEENV) && defined(ENV_IS_IN_DEVICE)
1261         enum env_location loc;
1262 #endif
1263
1264         /* display environment information */
1265         if (argc <= 1)
1266                 return print_env_info();
1267
1268         /* process options */
1269         while (--argc > 0 && **++argv == '-') {
1270                 char *arg = *argv;
1271
1272                 while (*++arg) {
1273                         switch (*arg) {
1274                         case 'd':
1275                                 eval_flags |= ENV_INFO_IS_DEFAULT;
1276                                 break;
1277                         case 'p':
1278                                 eval_flags |= ENV_INFO_IS_PERSISTED;
1279                                 break;
1280                         case 'q':
1281                                 quiet = true;
1282                                 break;
1283                         default:
1284                                 return CMD_RET_USAGE;
1285                         }
1286                 }
1287         }
1288
1289         /* evaluate whether default environment is used */
1290         if (eval_flags & ENV_INFO_IS_DEFAULT) {
1291                 if (gd->flags & GD_FLG_ENV_DEFAULT) {
1292                         if (!quiet)
1293                                 printf("Default environment is used\n");
1294                         eval_results |= ENV_INFO_IS_DEFAULT;
1295                 } else {
1296                         if (!quiet)
1297                                 printf("Environment was loaded from persistent storage\n");
1298                 }
1299         }
1300
1301         /* evaluate whether environment can be persisted */
1302         if (eval_flags & ENV_INFO_IS_PERSISTED) {
1303 #if defined(CONFIG_CMD_SAVEENV) && defined(ENV_IS_IN_DEVICE)
1304                 loc = env_get_location(ENVOP_SAVE, gd->env_load_prio);
1305                 if (ENVL_NOWHERE != loc && ENVL_UNKNOWN != loc) {
1306                         if (!quiet)
1307                                 printf("Environment can be persisted\n");
1308                         eval_results |= ENV_INFO_IS_PERSISTED;
1309                 } else {
1310                         if (!quiet)
1311                                 printf("Environment cannot be persisted\n");
1312                 }
1313 #else
1314                 if (!quiet)
1315                         printf("Environment cannot be persisted\n");
1316 #endif
1317         }
1318
1319         /* The result of evaluations is combined with AND */
1320         if (eval_flags != eval_results)
1321                 return CMD_RET_FAILURE;
1322
1323         return CMD_RET_SUCCESS;
1324 }
1325 #endif
1326
1327 #if defined(CONFIG_CMD_ENV_EXISTS)
1328 static int do_env_exists(struct cmd_tbl *cmdtp, int flag, int argc,
1329                          char *const argv[])
1330 {
1331         struct env_entry e, *ep;
1332
1333         if (argc < 2)
1334                 return CMD_RET_USAGE;
1335
1336         e.key = argv[1];
1337         e.data = NULL;
1338         hsearch_r(e, ENV_FIND, &ep, &env_htab, 0);
1339
1340         return (ep == NULL) ? 1 : 0;
1341 }
1342 #endif
1343
1344 /*
1345  * New command line interface: "env" command with subcommands
1346  */
1347 static struct cmd_tbl cmd_env_sub[] = {
1348 #if defined(CONFIG_CMD_ASKENV)
1349         U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
1350 #endif
1351         U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
1352         U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""),
1353 #if defined(CONFIG_CMD_EDITENV)
1354         U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
1355 #endif
1356 #if defined(CONFIG_CMD_ENV_CALLBACK)
1357         U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""),
1358 #endif
1359 #if defined(CONFIG_CMD_ENV_FLAGS)
1360         U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""),
1361 #endif
1362 #if defined(CONFIG_CMD_EXPORTENV)
1363         U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
1364 #endif
1365 #if defined(CONFIG_CMD_GREPENV)
1366         U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
1367 #endif
1368 #if defined(CONFIG_CMD_IMPORTENV)
1369         U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
1370 #endif
1371 #if defined(CONFIG_CMD_NVEDIT_INFO)
1372         U_BOOT_CMD_MKENT(info, 3, 0, do_env_info, "", ""),
1373 #endif
1374 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1375         U_BOOT_CMD_MKENT(load, 1, 0, do_env_load, "", ""),
1376 #endif
1377         U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
1378 #if defined(CONFIG_CMD_RUN)
1379         U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
1380 #endif
1381 #if defined(CONFIG_CMD_SAVEENV) && defined(ENV_IS_IN_DEVICE)
1382         U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
1383 #if defined(CONFIG_CMD_ERASEENV)
1384         U_BOOT_CMD_MKENT(erase, 1, 0, do_env_erase, "", ""),
1385 #endif
1386 #endif
1387 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1388         U_BOOT_CMD_MKENT(select, 2, 0, do_env_select, "", ""),
1389 #endif
1390         U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
1391 #if defined(CONFIG_CMD_ENV_EXISTS)
1392         U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""),
1393 #endif
1394 };
1395
1396 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1397 void env_reloc(void)
1398 {
1399         fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1400 }
1401 #endif
1402
1403 static int do_env(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
1404 {
1405         struct cmd_tbl *cp;
1406
1407         if (argc < 2)
1408                 return CMD_RET_USAGE;
1409
1410         /* drop initial "env" arg */
1411         argc--;
1412         argv++;
1413
1414         cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1415
1416         if (cp)
1417                 return cp->cmd(cmdtp, flag, argc, argv);
1418
1419         return CMD_RET_USAGE;
1420 }
1421
1422 #ifdef CONFIG_SYS_LONGHELP
1423 static char env_help_text[] =
1424 #if defined(CONFIG_CMD_ASKENV)
1425         "ask name [message] [size] - ask for environment variable\nenv "
1426 #endif
1427 #if defined(CONFIG_CMD_ENV_CALLBACK)
1428         "callbacks - print callbacks and their associated variables\nenv "
1429 #endif
1430         "default [-f] -a - [forcibly] reset default environment\n"
1431         "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1432         "env delete [-f] var [...] - [forcibly] delete variable(s)\n"
1433 #if defined(CONFIG_CMD_EDITENV)
1434         "env edit name - edit environment variable\n"
1435 #endif
1436 #if defined(CONFIG_CMD_ENV_EXISTS)
1437         "env exists name - tests for existence of variable\n"
1438 #endif
1439 #if defined(CONFIG_CMD_EXPORTENV)
1440         "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1441 #endif
1442 #if defined(CONFIG_CMD_ENV_FLAGS)
1443         "env flags - print variables that have non-default flags\n"
1444 #endif
1445 #if defined(CONFIG_CMD_GREPENV)
1446 #ifdef CONFIG_REGEX
1447         "env grep [-e] [-n | -v | -b] string [...] - search environment\n"
1448 #else
1449         "env grep [-n | -v | -b] string [...] - search environment\n"
1450 #endif
1451 #endif
1452 #if defined(CONFIG_CMD_IMPORTENV)
1453         "env import [-d] [-t [-r] | -b | -c] addr [size] [var ...] - import environment\n"
1454 #endif
1455 #if defined(CONFIG_CMD_NVEDIT_INFO)
1456         "env info - display environment information\n"
1457         "env info [-d] [-p] [-q] - evaluate environment information\n"
1458         "      \"-d\": default environment is used\n"
1459         "      \"-p\": environment can be persisted\n"
1460         "      \"-q\": quiet output\n"
1461 #endif
1462         "env print [-a | name ...] - print environment\n"
1463 #if defined(CONFIG_CMD_NVEDIT_EFI)
1464         "env print -e [-guid guid] [-n] [name ...] - print UEFI environment\n"
1465 #endif
1466 #if defined(CONFIG_CMD_RUN)
1467         "env run var [...] - run commands in an environment variable\n"
1468 #endif
1469 #if defined(CONFIG_CMD_SAVEENV) && defined(ENV_IS_IN_DEVICE)
1470         "env save - save environment\n"
1471 #if defined(CONFIG_CMD_ERASEENV)
1472         "env erase - erase environment\n"
1473 #endif
1474 #endif
1475 #if defined(CONFIG_CMD_NVEDIT_LOAD)
1476         "env load - load environment\n"
1477 #endif
1478 #if defined(CONFIG_CMD_NVEDIT_SELECT)
1479         "env select [target] - select environment target\n"
1480 #endif
1481 #if defined(CONFIG_CMD_NVEDIT_EFI)
1482         "env set -e [-nv][-bs][-rt][-at][-a][-i addr:size][-v] name [arg ...]\n"
1483         "    - set UEFI variable; unset if '-i' or 'arg' not specified\n"
1484 #endif
1485         "env set [-f] name [arg ...]\n";
1486 #endif
1487
1488 U_BOOT_CMD(
1489         env, CONFIG_SYS_MAXARGS, 1, do_env,
1490         "environment handling commands", env_help_text
1491 );
1492
1493 /*
1494  * Old command line interface, kept for compatibility
1495  */
1496
1497 #if defined(CONFIG_CMD_EDITENV)
1498 U_BOOT_CMD_COMPLETE(
1499         editenv, 2, 0,  do_env_edit,
1500         "edit environment variable",
1501         "name\n"
1502         "    - edit environment variable 'name'",
1503         var_complete
1504 );
1505 #endif
1506
1507 U_BOOT_CMD_COMPLETE(
1508         printenv, CONFIG_SYS_MAXARGS, 1,        do_env_print,
1509         "print environment variables",
1510         "[-a]\n    - print [all] values of all environment variables\n"
1511 #if defined(CONFIG_CMD_NVEDIT_EFI)
1512         "printenv -e [-guid guid][-n] [name ...]\n"
1513         "    - print UEFI variable 'name' or all the variables\n"
1514         "      \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1515         "      \"-n\": suppress dumping variable's value\n"
1516 #endif
1517         "printenv name ...\n"
1518         "    - print value of environment variable 'name'",
1519         var_complete
1520 );
1521
1522 #ifdef CONFIG_CMD_GREPENV
1523 U_BOOT_CMD_COMPLETE(
1524         grepenv, CONFIG_SYS_MAXARGS, 0,  do_env_grep,
1525         "search environment variables",
1526 #ifdef CONFIG_REGEX
1527         "[-e] [-n | -v | -b] string ...\n"
1528 #else
1529         "[-n | -v | -b] string ...\n"
1530 #endif
1531         "    - list environment name=value pairs matching 'string'\n"
1532 #ifdef CONFIG_REGEX
1533         "      \"-e\": enable regular expressions;\n"
1534 #endif
1535         "      \"-n\": search variable names; \"-v\": search values;\n"
1536         "      \"-b\": search both names and values (default)",
1537         var_complete
1538 );
1539 #endif
1540
1541 U_BOOT_CMD_COMPLETE(
1542         setenv, CONFIG_SYS_MAXARGS, 0,  do_env_set,
1543         "set environment variables",
1544 #if defined(CONFIG_CMD_NVEDIT_EFI)
1545         "-e [-guid guid][-nv][-bs][-rt][-at][-a][-v]\n"
1546         "        [-i addr:size name], or [name [value ...]]\n"
1547         "    - set UEFI variable 'name' to 'value' ...'\n"
1548         "      \"-guid\": GUID xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx\n"
1549         "      \"-nv\": set non-volatile attribute\n"
1550         "      \"-bs\": set boot-service attribute\n"
1551         "      \"-rt\": set runtime attribute\n"
1552         "      \"-at\": set time-based authentication attribute\n"
1553         "      \"-a\": append-write\n"
1554         "      \"-i addr,size\": use <addr,size> as variable's value\n"
1555         "      \"-v\": verbose message\n"
1556         "    - delete UEFI variable 'name' if 'value' not specified\n"
1557 #endif
1558         "setenv [-f] name value ...\n"
1559         "    - [forcibly] set environment variable 'name' to 'value ...'\n"
1560         "setenv [-f] name\n"
1561         "    - [forcibly] delete environment variable 'name'",
1562         var_complete
1563 );
1564
1565 #if defined(CONFIG_CMD_ASKENV)
1566
1567 U_BOOT_CMD(
1568         askenv, CONFIG_SYS_MAXARGS,     1,      do_env_ask,
1569         "get environment variables from stdin",
1570         "name [message] [size]\n"
1571         "    - get environment variable 'name' from stdin (max 'size' chars)"
1572 );
1573 #endif
1574
1575 #if defined(CONFIG_CMD_RUN)
1576 U_BOOT_CMD_COMPLETE(
1577         run,    CONFIG_SYS_MAXARGS,     1,      do_run,
1578         "run commands in an environment variable",
1579         "var [...]\n"
1580         "    - run the commands in the environment variable(s) 'var'",
1581         var_complete
1582 );
1583 #endif
1584 #endif /* CONFIG_SPL_BUILD */