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