]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_nvedit.c
x86: Add CBMEM console driver for coreboot
[karo-tx-uboot.git] / common / cmd_nvedit.c
1 /*
2  * (C) Copyright 2000-2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6  * Andreas Heppel <aheppel@sysgo.de>
7  *
8  * Copyright 2011 Freescale Semiconductor, Inc.
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License as
15  * published by the Free Software Foundation; either version 2 of
16  * the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26  * MA 02111-1307 USA
27  */
28
29 /*
30  * Support for persistent environment data
31  *
32  * The "environment" is stored on external storage as a list of '\0'
33  * terminated "name=value" strings. The end of the list is marked by
34  * a double '\0'. The environment is preceeded by a 32 bit CRC over
35  * the data part and, in case of redundant environment, a byte of
36  * flags.
37  *
38  * This linearized representation will also be used before
39  * relocation, i. e. as long as we don't have a full C runtime
40  * environment. After that, we use a hash table.
41  */
42
43 #include <common.h>
44 #include <command.h>
45 #include <environment.h>
46 #include <search.h>
47 #include <errno.h>
48 #include <malloc.h>
49 #include <watchdog.h>
50 #include <serial.h>
51 #include <linux/stddef.h>
52 #include <asm/byteorder.h>
53 #if defined(CONFIG_CMD_NET)
54 #include <net.h>
55 #endif
56
57 DECLARE_GLOBAL_DATA_PTR;
58
59 #if     !defined(CONFIG_ENV_IS_IN_EEPROM)       && \
60         !defined(CONFIG_ENV_IS_IN_FLASH)        && \
61         !defined(CONFIG_ENV_IS_IN_DATAFLASH)    && \
62         !defined(CONFIG_ENV_IS_IN_MMC)          && \
63         !defined(CONFIG_ENV_IS_IN_FAT)          && \
64         !defined(CONFIG_ENV_IS_IN_NAND)         && \
65         !defined(CONFIG_ENV_IS_IN_NVRAM)        && \
66         !defined(CONFIG_ENV_IS_IN_ONENAND)      && \
67         !defined(CONFIG_ENV_IS_IN_SPI_FLASH)    && \
68         !defined(CONFIG_ENV_IS_IN_REMOTE)       && \
69         !defined(CONFIG_ENV_IS_NOWHERE)
70 # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\
71 SPI_FLASH|NVRAM|MMC|FAT|REMOTE} or CONFIG_ENV_IS_NOWHERE
72 #endif
73
74 /*
75  * Maximum expected input data size for import command
76  */
77 #define MAX_ENV_SIZE    (1 << 20)       /* 1 MiB */
78
79 ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
80 ulong save_addr;                        /* Default Save Address */
81 ulong save_size;                        /* Default Save Size (in bytes) */
82
83 /*
84  * Table with supported baudrates (defined in config_xyz.h)
85  */
86 static const unsigned long baudrate_table[] = CONFIG_SYS_BAUDRATE_TABLE;
87 #define N_BAUDRATES (sizeof(baudrate_table) / sizeof(baudrate_table[0]))
88
89 /*
90  * This variable is incremented on each do_env_set(), so it can
91  * be used via get_env_id() as an indication, if the environment
92  * has changed or not. So it is possible to reread an environment
93  * variable only if the environment was changed ... done so for
94  * example in NetInitLoop()
95  */
96 static int env_id = 1;
97
98 int get_env_id(void)
99 {
100         return env_id;
101 }
102
103 #ifndef CONFIG_SPL_BUILD
104 /*
105  * Command interface: print one or all environment variables
106  *
107  * Returns 0 in case of error, or length of printed string
108  */
109 static int env_print(char *name)
110 {
111         char *res = NULL;
112         size_t len;
113
114         if (name) {             /* print a single name */
115                 ENTRY e, *ep;
116
117                 e.key = name;
118                 e.data = NULL;
119                 hsearch_r(e, FIND, &ep, &env_htab);
120                 if (ep == NULL)
121                         return 0;
122                 len = printf("%s=%s\n", ep->key, ep->data);
123                 return len;
124         }
125
126         /* print whole list */
127         len = hexport_r(&env_htab, '\n', &res, 0, 0, NULL);
128
129         if (len > 0) {
130                 puts(res);
131                 free(res);
132                 return len;
133         }
134
135         /* should never happen */
136         return 0;
137 }
138
139 static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc,
140                         char * const argv[])
141 {
142         int i;
143         int rcode = 0;
144
145         if (argc == 1) {
146                 /* print all env vars */
147                 rcode = env_print(NULL);
148                 if (!rcode)
149                         return 1;
150                 printf("\nEnvironment size: %d/%ld bytes\n",
151                         rcode, (ulong)ENV_SIZE);
152                 return 0;
153         }
154
155         /* print selected env vars */
156         for (i = 1; i < argc; ++i) {
157                 int rc = env_print(argv[i]);
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(cmd_tbl_t *cmdtp, int flag,
169                        int argc, char * const argv[])
170 {
171         ENTRY *match;
172         unsigned char matched[env_htab.size / 8];
173         int rcode = 1, arg = 1, idx;
174
175         if (argc < 2)
176                 return CMD_RET_USAGE;
177
178         memset(matched, 0, env_htab.size / 8);
179
180         while (arg <= argc) {
181                 idx = 0;
182                 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
183                         if (!(matched[idx / 8] & (1 << (idx & 7)))) {
184                                 puts(match->key);
185                                 puts("=");
186                                 puts(match->data);
187                                 puts("\n");
188                         }
189                         matched[idx / 8] |= 1 << (idx & 7);
190                         rcode = 0;
191                 }
192                 arg++;
193         }
194
195         return rcode;
196 }
197 #endif
198 #endif /* CONFIG_SPL_BUILD */
199
200 /*
201  * Perform consistency checking before setting, replacing, or deleting an
202  * environment variable, then (if successful) apply the changes to internals so
203  * to make them effective.  Code for this function was taken out of
204  * _do_env_set(), which now calls it instead.
205  * Also called as a callback function by himport_r().
206  * Returns 0 in case of success, 1 in case of failure.
207  * When (flag & H_FORCE) is set, do not print out any error message and force
208  * overwriting of write-once variables.
209  */
210
211 int env_check_apply(const char *name, const char *oldval,
212                         const char *newval, int flag)
213 {
214         int   console = -1;
215
216         /* Default value for NULL to protect string-manipulating functions */
217         newval = newval ? : "";
218
219         /* Check for console redirection */
220         if (strcmp(name, "stdin") == 0)
221                 console = stdin;
222         else if (strcmp(name, "stdout") == 0)
223                 console = stdout;
224         else if (strcmp(name, "stderr") == 0)
225                 console = stderr;
226
227         if (console != -1) {
228                 if ((newval == NULL) || (*newval == '\0')) {
229                         /* We cannot delete stdin/stdout/stderr */
230                         if ((flag & H_FORCE) == 0)
231                                 printf("Can't delete \"%s\"\n", name);
232                         return 1;
233                 }
234
235 #ifdef CONFIG_CONSOLE_MUX
236                 if (iomux_doenv(console, newval))
237                         return 1;
238 #else
239                 /* Try assigning specified device */
240                 if (console_assign(console, newval) < 0)
241                         return 1;
242 #endif /* CONFIG_CONSOLE_MUX */
243         }
244
245         /*
246          * Some variables like "ethaddr" and "serial#" can be set only once and
247          * cannot be deleted, unless CONFIG_ENV_OVERWRITE is defined.
248          */
249 #ifndef CONFIG_ENV_OVERWRITE
250         if (oldval != NULL &&                   /* variable exists */
251                 (flag & H_FORCE) == 0) {        /* and we are not forced */
252                 if (strcmp(name, "serial#") == 0 ||
253                     (strcmp(name, "ethaddr") == 0
254 #if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
255                      && strcmp(oldval, __stringify(CONFIG_ETHADDR)) != 0
256 #endif  /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
257                         )) {
258                         printf("Can't overwrite \"%s\"\n", name);
259                         return 1;
260                 }
261         }
262 #endif
263         /*
264          * When we change baudrate, or we are doing an env default -a
265          * (which will erase all variables prior to calling this),
266          * we want the baudrate to actually change - for real.
267          */
268         if (oldval != NULL ||                   /* variable exists */
269                 (flag & H_NOCLEAR) == 0) {      /* or env is clear */
270                 /*
271                  * Switch to new baudrate if new baudrate is supported
272                  */
273                 if (strcmp(name, "baudrate") == 0) {
274                         int baudrate = simple_strtoul(newval, NULL, 10);
275                         int i;
276                         for (i = 0; i < N_BAUDRATES; ++i) {
277                                 if (baudrate == baudrate_table[i])
278                                         break;
279                         }
280                         if (i == N_BAUDRATES) {
281                                 if ((flag & H_FORCE) == 0)
282                                         printf("## Baudrate %d bps not "
283                                                 "supported\n", baudrate);
284                                 return 1;
285                         }
286                         if (gd->baudrate == baudrate) {
287                                 /* If unchanged, we just say it's OK */
288                                 return 0;
289                         }
290                         printf("## Switch baudrate to %d bps and"
291                                 "press ENTER ...\n", baudrate);
292                         udelay(50000);
293                         gd->baudrate = baudrate;
294 #if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
295                         gd->bd->bi_baudrate = baudrate;
296 #endif
297
298                         serial_setbrg();
299                         udelay(50000);
300                         while (getc() != '\r')
301                                 ;
302                 }
303         }
304
305         /*
306          * Some variables should be updated when the corresponding
307          * entry in the environment is changed
308          */
309         if (strcmp(name, "loadaddr") == 0) {
310                 load_addr = simple_strtoul(newval, NULL, 16);
311                 return 0;
312         }
313 #if defined(CONFIG_CMD_NET)
314         else if (strcmp(name, "bootfile") == 0) {
315                 copy_filename(BootFile, newval, sizeof(BootFile));
316                 return 0;
317         }
318 #endif
319         return 0;
320 }
321
322 /*
323  * Set a new environment variable,
324  * or replace or delete an existing one.
325 */
326 static int _do_env_set(int flag, int argc, char * const argv[])
327 {
328         int   i, len;
329         char  *name, *value, *s;
330         ENTRY e, *ep;
331
332         name = argv[1];
333         value = argv[2];
334
335         if (strchr(name, '=')) {
336                 printf("## Error: illegal character '='"
337                        "in variable name \"%s\"\n", name);
338                 return 1;
339         }
340
341         env_id++;
342         /*
343          * search if variable with this name already exists
344          */
345         e.key = name;
346         e.data = NULL;
347         hsearch_r(e, FIND, &ep, &env_htab);
348
349         /*
350          * Perform requested checks. Notice how since we are overwriting
351          * a single variable, we need to set H_NOCLEAR
352          */
353         if (env_check_apply(name, ep ? ep->data : NULL, value, H_NOCLEAR)) {
354                 debug("check function did not approve, refusing\n");
355                 return 1;
356         }
357
358         /* Delete only ? */
359         if (argc < 3 || argv[2] == NULL) {
360                 int rc = hdelete_r(name, &env_htab, 0);
361                 return !rc;
362         }
363
364         /*
365          * Insert / replace new value
366          */
367         for (i = 2, len = 0; i < argc; ++i)
368                 len += strlen(argv[i]) + 1;
369
370         value = malloc(len);
371         if (value == NULL) {
372                 printf("## Can't malloc %d bytes\n", len);
373                 return 1;
374         }
375         for (i = 2, s = value; i < argc; ++i) {
376                 char *v = argv[i];
377
378                 while ((*s++ = *v++) != '\0')
379                         ;
380                 *(s - 1) = ' ';
381         }
382         if (s != value)
383                 *--s = '\0';
384
385         e.key   = name;
386         e.data  = value;
387         hsearch_r(e, ENTER, &ep, &env_htab);
388         free(value);
389         if (!ep) {
390                 printf("## Error inserting \"%s\" variable, errno=%d\n",
391                         name, errno);
392                 return 1;
393         }
394
395         return 0;
396 }
397
398 int setenv(const char *varname, const char *varvalue)
399 {
400         const char * const argv[4] = { "setenv", varname, varvalue, NULL };
401
402         if (varvalue == NULL || varvalue[0] == '\0')
403                 return _do_env_set(0, 2, (char * const *)argv);
404         else
405                 return _do_env_set(0, 3, (char * const *)argv);
406 }
407
408 /**
409  * Set an environment variable to an integer value
410  *
411  * @param varname       Environmet variable to set
412  * @param value         Value to set it to
413  * @return 0 if ok, 1 on error
414  */
415 int setenv_ulong(const char *varname, ulong value)
416 {
417         /* TODO: this should be unsigned */
418         char *str = simple_itoa(value);
419
420         return setenv(varname, str);
421 }
422
423 /**
424  * Set an environment variable to an address in hex
425  *
426  * @param varname       Environmet variable to set
427  * @param addr          Value to set it to
428  * @return 0 if ok, 1 on error
429  */
430 int setenv_addr(const char *varname, const void *addr)
431 {
432         char str[17];
433
434         sprintf(str, "%lx", (uintptr_t)addr);
435         return setenv(varname, str);
436 }
437
438 #ifndef CONFIG_SPL_BUILD
439 static int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
440 {
441         if (argc < 2)
442                 return CMD_RET_USAGE;
443
444         return _do_env_set(flag, argc, argv);
445 }
446
447 /*
448  * Prompt for environment variable
449  */
450 #if defined(CONFIG_CMD_ASKENV)
451 int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
452 {
453         char message[CONFIG_SYS_CBSIZE];
454         int size = CONFIG_SYS_CBSIZE - 1;
455         int i, len, pos;
456         char *local_args[4];
457
458         local_args[0] = argv[0];
459         local_args[1] = argv[1];
460         local_args[2] = NULL;
461         local_args[3] = NULL;
462
463         /* Check the syntax */
464         switch (argc) {
465         case 1:
466                 return CMD_RET_USAGE;
467
468         case 2:         /* env_ask envname */
469                 sprintf(message, "Please enter '%s':", argv[1]);
470                 break;
471
472         case 3:         /* env_ask envname size */
473                 sprintf(message, "Please enter '%s':", argv[1]);
474                 size = simple_strtoul(argv[2], NULL, 10);
475                 break;
476
477         default:        /* env_ask envname message1 ... messagen size */
478                 for (i = 2, pos = 0; i < argc - 1; i++) {
479                         if (pos)
480                                 message[pos++] = ' ';
481
482                         strcpy(message + pos, argv[i]);
483                         pos += strlen(argv[i]);
484                 }
485
486                 message[pos] = '\0';
487                 size = simple_strtoul(argv[argc - 1], NULL, 10);
488                 break;
489         }
490
491         if (size >= CONFIG_SYS_CBSIZE)
492                 size = CONFIG_SYS_CBSIZE - 1;
493
494         if (size <= 0)
495                 return 1;
496
497         /* prompt for input */
498         len = readline(message);
499
500         if (size < len)
501                 console_buffer[size] = '\0';
502
503         len = 2;
504         if (console_buffer[0] != '\0') {
505                 local_args[2] = console_buffer;
506                 len = 3;
507         }
508
509         /* Continue calling setenv code */
510         return _do_env_set(flag, len, local_args);
511 }
512 #endif
513
514 /*
515  * Interactively edit an environment variable
516  */
517 #if defined(CONFIG_CMD_EDITENV)
518 static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc,
519                        char * const argv[])
520 {
521         char buffer[CONFIG_SYS_CBSIZE];
522         char *init_val;
523
524         if (argc < 2)
525                 return CMD_RET_USAGE;
526
527         /* Set read buffer to initial value or empty sting */
528         init_val = getenv(argv[1]);
529         if (init_val)
530                 sprintf(buffer, "%s", init_val);
531         else
532                 buffer[0] = '\0';
533
534         readline_into_buffer("edit: ", buffer, 0);
535
536         return setenv(argv[1], buffer);
537 }
538 #endif /* CONFIG_CMD_EDITENV */
539 #endif /* CONFIG_SPL_BUILD */
540
541 /*
542  * Look up variable from environment,
543  * return address of storage for that variable,
544  * or NULL if not found
545  */
546 char *getenv(const char *name)
547 {
548         if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
549                 ENTRY e, *ep;
550
551                 WATCHDOG_RESET();
552
553                 e.key   = name;
554                 e.data  = NULL;
555                 hsearch_r(e, FIND, &ep, &env_htab);
556
557                 return ep ? ep->data : NULL;
558         }
559
560         /* restricted capabilities before import */
561         if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
562                 return (char *)(gd->env_buf);
563
564         return NULL;
565 }
566
567 /*
568  * Look up variable from environment for restricted C runtime env.
569  */
570 int getenv_f(const char *name, char *buf, unsigned len)
571 {
572         int i, nxt;
573
574         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
575                 int val, n;
576
577                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
578                         if (nxt >= CONFIG_ENV_SIZE)
579                                 return -1;
580                 }
581
582                 val = envmatch((uchar *)name, i);
583                 if (val < 0)
584                         continue;
585
586                 /* found; copy out */
587                 for (n = 0; n < len; ++n, ++buf) {
588                         *buf = env_get_char(val++);
589                         if (*buf == '\0')
590                                 return n;
591                 }
592
593                 if (n)
594                         *--buf = '\0';
595
596                 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
597                         len, name);
598
599                 return n;
600         }
601
602         return -1;
603 }
604
605 /**
606  * Decode the integer value of an environment variable and return it.
607  *
608  * @param name          Name of environemnt variable
609  * @param base          Number base to use (normally 10, or 16 for hex)
610  * @param default_val   Default value to return if the variable is not
611  *                      found
612  * @return the decoded value, or default_val if not found
613  */
614 ulong getenv_ulong(const char *name, int base, ulong default_val)
615 {
616         /*
617          * We can use getenv() here, even before relocation, since the
618          * environment variable value is an integer and thus short.
619          */
620         const char *str = getenv(name);
621
622         return str ? simple_strtoul(str, NULL, base) : default_val;
623 }
624
625 #ifndef CONFIG_SPL_BUILD
626 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
627 static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc,
628                        char * const argv[])
629 {
630         printf("Saving Environment to %s...\n", env_name_spec);
631
632         return saveenv() ? 1 : 0;
633 }
634
635 U_BOOT_CMD(
636         saveenv, 1, 0,  do_env_save,
637         "save environment variables to persistent storage",
638         ""
639 );
640 #endif
641 #endif /* CONFIG_SPL_BUILD */
642
643
644 /*
645  * Match a name / name=value pair
646  *
647  * s1 is either a simple 'name', or a 'name=value' pair.
648  * i2 is the environment index for a 'name2=value2' pair.
649  * If the names match, return the index for the value2, else -1.
650  */
651 int envmatch(uchar *s1, int i2)
652 {
653         if (s1 == NULL)
654                 return -1;
655
656         while (*s1 == env_get_char(i2++))
657                 if (*s1++ == '=')
658                         return i2;
659
660         if (*s1 == '\0' && env_get_char(i2-1) == '=')
661                 return i2;
662
663         return -1;
664 }
665
666 #ifndef CONFIG_SPL_BUILD
667 static int do_env_default(cmd_tbl_t *cmdtp, int __flag,
668                           int argc, char * const argv[])
669 {
670         int all = 0, flag = 0;
671
672         debug("Initial value for argc=%d\n", argc);
673         while (--argc > 0 && **++argv == '-') {
674                 char *arg = *argv;
675
676                 while (*++arg) {
677                         switch (*arg) {
678                         case 'a':               /* default all */
679                                 all = 1;
680                                 break;
681                         case 'f':               /* force */
682                                 flag |= H_FORCE;
683                                 break;
684                         default:
685                                 return cmd_usage(cmdtp);
686                         }
687                 }
688         }
689         debug("Final value for argc=%d\n", argc);
690         if (all && (argc == 0)) {
691                 /* Reset the whole environment */
692                 set_default_env("## Resetting to default environment\n");
693                 return 0;
694         }
695         if (!all && (argc > 0)) {
696                 /* Reset individual variables */
697                 set_default_vars(argc, argv);
698                 return 0;
699         }
700
701         return cmd_usage(cmdtp);
702 }
703
704 static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
705                          int argc, char * const argv[])
706 {
707         printf("Not implemented yet\n");
708         return 0;
709 }
710
711 #ifdef CONFIG_CMD_EXPORTENV
712 /*
713  * env export [-t | -b | -c] [-s size] addr [var ...]
714  *      -t:     export as text format; if size is given, data will be
715  *              padded with '\0' bytes; if not, one terminating '\0'
716  *              will be added (which is included in the "filesize"
717  *              setting so you can for exmple copy this to flash and
718  *              keep the termination).
719  *      -b:     export as binary format (name=value pairs separated by
720  *              '\0', list end marked by double "\0\0")
721  *      -c:     export as checksum protected environment format as
722  *              used for example by "saveenv" command
723  *      -s size:
724  *              size of output buffer
725  *      addr:   memory address where environment gets stored
726  *      var...  List of variable names that get included into the
727  *              export. Without arguments, the whole environment gets
728  *              exported.
729  *
730  * With "-c" and size is NOT given, then the export command will
731  * format the data as currently used for the persistent storage,
732  * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
733  * prepend a valid CRC32 checksum and, in case of resundant
734  * environment, a "current" redundancy flag. If size is given, this
735  * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
736  * checksum and redundancy flag will be inserted.
737  *
738  * With "-b" and "-t", always only the real data (including a
739  * terminating '\0' byte) will be written; here the optional size
740  * argument will be used to make sure not to overflow the user
741  * provided buffer; the command will abort if the size is not
742  * sufficient. Any remainign space will be '\0' padded.
743  *
744  * On successful return, the variable "filesize" will be set.
745  * Note that filesize includes the trailing/terminating '\0' byte(s).
746  *
747  * Usage szenario:  create a text snapshot/backup of the current settings:
748  *
749  *      => env export -t 100000
750  *      => era ${backup_addr} +${filesize}
751  *      => cp.b 100000 ${backup_addr} ${filesize}
752  *
753  * Re-import this snapshot, deleting all other settings:
754  *
755  *      => env import -d -t ${backup_addr}
756  */
757 static int do_env_export(cmd_tbl_t *cmdtp, int flag,
758                          int argc, char * const argv[])
759 {
760         char    buf[32];
761         char    *addr, *cmd, *res;
762         size_t  size = 0;
763         ssize_t len;
764         env_t   *envp;
765         char    sep = '\n';
766         int     chk = 0;
767         int     fmt = 0;
768
769         cmd = *argv;
770
771         while (--argc > 0 && **++argv == '-') {
772                 char *arg = *argv;
773                 while (*++arg) {
774                         switch (*arg) {
775                         case 'b':               /* raw binary format */
776                                 if (fmt++)
777                                         goto sep_err;
778                                 sep = '\0';
779                                 break;
780                         case 'c':               /* external checksum format */
781                                 if (fmt++)
782                                         goto sep_err;
783                                 sep = '\0';
784                                 chk = 1;
785                                 break;
786                         case 's':               /* size given */
787                                 if (--argc <= 0)
788                                         return cmd_usage(cmdtp);
789                                 size = simple_strtoul(*++argv, NULL, 16);
790                                 goto NXTARG;
791                         case 't':               /* text format */
792                                 if (fmt++)
793                                         goto sep_err;
794                                 sep = '\n';
795                                 break;
796                         default:
797                                 return CMD_RET_USAGE;
798                         }
799                 }
800 NXTARG:         ;
801         }
802
803         if (argc < 1)
804                 return CMD_RET_USAGE;
805
806         addr = (char *)simple_strtoul(argv[0], NULL, 16);
807
808         if (size)
809                 memset(addr, '\0', size);
810
811         argc--;
812         argv++;
813
814         if (sep) {              /* export as text file */
815                 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
816                 if (len < 0) {
817                         error("Cannot export environment: errno = %d\n", errno);
818                         return 1;
819                 }
820                 sprintf(buf, "%zX", (size_t)len);
821                 setenv("filesize", buf);
822
823                 return 0;
824         }
825
826         envp = (env_t *)addr;
827
828         if (chk)                /* export as checksum protected block */
829                 res = (char *)envp->data;
830         else                    /* export as raw binary data */
831                 res = addr;
832
833         len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
834         if (len < 0) {
835                 error("Cannot export environment: errno = %d\n", errno);
836                 return 1;
837         }
838
839         if (chk) {
840                 envp->crc = crc32(0, envp->data, ENV_SIZE);
841 #ifdef CONFIG_ENV_ADDR_REDUND
842                 envp->flags = ACTIVE_FLAG;
843 #endif
844         }
845         sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
846         setenv("filesize", buf);
847
848         return 0;
849
850 sep_err:
851         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
852         return 1;
853 }
854 #endif
855
856 #ifdef CONFIG_CMD_IMPORTENV
857 /*
858  * env import [-d] [-t | -b | -c] addr [size]
859  *      -d:     delete existing environment before importing;
860  *              otherwise overwrite / append to existion definitions
861  *      -t:     assume text format; either "size" must be given or the
862  *              text data must be '\0' terminated
863  *      -b:     assume binary format ('\0' separated, "\0\0" terminated)
864  *      -c:     assume checksum protected environment format
865  *      addr:   memory address to read from
866  *      size:   length of input data; if missing, proper '\0'
867  *              termination is mandatory
868  */
869 static int do_env_import(cmd_tbl_t *cmdtp, int flag,
870                          int argc, char * const argv[])
871 {
872         char    *cmd, *addr;
873         char    sep = '\n';
874         int     chk = 0;
875         int     fmt = 0;
876         int     del = 0;
877         size_t  size;
878
879         cmd = *argv;
880
881         while (--argc > 0 && **++argv == '-') {
882                 char *arg = *argv;
883                 while (*++arg) {
884                         switch (*arg) {
885                         case 'b':               /* raw binary format */
886                                 if (fmt++)
887                                         goto sep_err;
888                                 sep = '\0';
889                                 break;
890                         case 'c':               /* external checksum format */
891                                 if (fmt++)
892                                         goto sep_err;
893                                 sep = '\0';
894                                 chk = 1;
895                                 break;
896                         case 't':               /* text format */
897                                 if (fmt++)
898                                         goto sep_err;
899                                 sep = '\n';
900                                 break;
901                         case 'd':
902                                 del = 1;
903                                 break;
904                         default:
905                                 return CMD_RET_USAGE;
906                         }
907                 }
908         }
909
910         if (argc < 1)
911                 return CMD_RET_USAGE;
912
913         if (!fmt)
914                 printf("## Warning: defaulting to text format\n");
915
916         addr = (char *)simple_strtoul(argv[0], NULL, 16);
917
918         if (argc == 2) {
919                 size = simple_strtoul(argv[1], NULL, 16);
920         } else {
921                 char *s = addr;
922
923                 size = 0;
924
925                 while (size < MAX_ENV_SIZE) {
926                         if ((*s == sep) && (*(s+1) == '\0'))
927                                 break;
928                         ++s;
929                         ++size;
930                 }
931                 if (size == MAX_ENV_SIZE) {
932                         printf("## Warning: Input data exceeds %d bytes"
933                                 " - truncated\n", MAX_ENV_SIZE);
934                 }
935                 size += 2;
936                 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
937         }
938
939         if (chk) {
940                 uint32_t crc;
941                 env_t *ep = (env_t *)addr;
942
943                 size -= offsetof(env_t, data);
944                 memcpy(&crc, &ep->crc, sizeof(crc));
945
946                 if (crc32(0, ep->data, size) != crc) {
947                         puts("## Error: bad CRC, import failed\n");
948                         return 1;
949                 }
950                 addr = (char *)ep->data;
951         }
952
953         if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR,
954                         0, NULL, 0 /* do_apply */) == 0) {
955                 error("Environment import failed: errno = %d\n", errno);
956                 return 1;
957         }
958         gd->flags |= GD_FLG_ENV_READY;
959
960         return 0;
961
962 sep_err:
963         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
964                 cmd);
965         return 1;
966 }
967 #endif
968
969 /*
970  * New command line interface: "env" command with subcommands
971  */
972 static cmd_tbl_t cmd_env_sub[] = {
973 #if defined(CONFIG_CMD_ASKENV)
974         U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
975 #endif
976         U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
977         U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
978 #if defined(CONFIG_CMD_EDITENV)
979         U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
980 #endif
981 #if defined(CONFIG_CMD_EXPORTENV)
982         U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
983 #endif
984 #if defined(CONFIG_CMD_GREPENV)
985         U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
986 #endif
987 #if defined(CONFIG_CMD_IMPORTENV)
988         U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
989 #endif
990         U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
991 #if defined(CONFIG_CMD_RUN)
992         U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
993 #endif
994 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
995         U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
996 #endif
997         U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
998 };
999
1000 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
1001 void env_reloc(void)
1002 {
1003         fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1004 }
1005 #endif
1006
1007 static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1008 {
1009         cmd_tbl_t *cp;
1010
1011         if (argc < 2)
1012                 return CMD_RET_USAGE;
1013
1014         /* drop initial "env" arg */
1015         argc--;
1016         argv++;
1017
1018         cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
1019
1020         if (cp)
1021                 return cp->cmd(cmdtp, flag, argc, argv);
1022
1023         return CMD_RET_USAGE;
1024 }
1025
1026 #ifdef CONFIG_SYS_LONGHELP
1027 static char env_help_text[] =
1028 #if defined(CONFIG_CMD_ASKENV)
1029         "ask name [message] [size] - ask for environment variable\nenv "
1030 #endif
1031         "default [-f] -a - [forcibly] reset default environment\n"
1032         "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n"
1033 #if defined(CONFIG_CMD_EDITENV)
1034         "env edit name - edit environment variable\n"
1035 #endif
1036 #if defined(CONFIG_CMD_EXPORTENV)
1037         "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
1038 #endif
1039 #if defined(CONFIG_CMD_GREPENV)
1040         "env grep string [...] - search environment\n"
1041 #endif
1042 #if defined(CONFIG_CMD_IMPORTENV)
1043         "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
1044 #endif
1045         "env print [name ...] - print environment\n"
1046 #if defined(CONFIG_CMD_RUN)
1047         "env run var [...] - run commands in an environment variable\n"
1048 #endif
1049 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
1050         "env save - save environment\n"
1051 #endif
1052         "env set [-f] name [arg ...]\n";
1053 #endif
1054
1055 U_BOOT_CMD(
1056         env, CONFIG_SYS_MAXARGS, 1, do_env,
1057         "environment handling commands", env_help_text
1058 );
1059
1060 /*
1061  * Old command line interface, kept for compatibility
1062  */
1063
1064 #if defined(CONFIG_CMD_EDITENV)
1065 U_BOOT_CMD_COMPLETE(
1066         editenv, 2, 0,  do_env_edit,
1067         "edit environment variable",
1068         "name\n"
1069         "    - edit environment variable 'name'",
1070         var_complete
1071 );
1072 #endif
1073
1074 U_BOOT_CMD_COMPLETE(
1075         printenv, CONFIG_SYS_MAXARGS, 1,        do_env_print,
1076         "print environment variables",
1077         "\n    - print values of all environment variables\n"
1078         "printenv name ...\n"
1079         "    - print value of environment variable 'name'",
1080         var_complete
1081 );
1082
1083 #ifdef CONFIG_CMD_GREPENV
1084 U_BOOT_CMD_COMPLETE(
1085         grepenv, CONFIG_SYS_MAXARGS, 0,  do_env_grep,
1086         "search environment variables",
1087         "string ...\n"
1088         "    - list environment name=value pairs matching 'string'",
1089         var_complete
1090 );
1091 #endif
1092
1093 U_BOOT_CMD_COMPLETE(
1094         setenv, CONFIG_SYS_MAXARGS, 0,  do_env_set,
1095         "set environment variables",
1096         "name value ...\n"
1097         "    - set environment variable 'name' to 'value ...'\n"
1098         "setenv name\n"
1099         "    - delete environment variable 'name'",
1100         var_complete
1101 );
1102
1103 #if defined(CONFIG_CMD_ASKENV)
1104
1105 U_BOOT_CMD(
1106         askenv, CONFIG_SYS_MAXARGS,     1,      do_env_ask,
1107         "get environment variables from stdin",
1108         "name [message] [size]\n"
1109         "    - get environment variable 'name' from stdin (max 'size' chars)\n"
1110         "askenv name\n"
1111         "    - get environment variable 'name' from stdin\n"
1112         "askenv name size\n"
1113         "    - get environment variable 'name' from stdin (max 'size' chars)\n"
1114         "askenv name [message] size\n"
1115         "    - display 'message' string and get environment variable 'name'"
1116         "from stdin (max 'size' chars)"
1117 );
1118 #endif
1119
1120 #if defined(CONFIG_CMD_RUN)
1121 U_BOOT_CMD_COMPLETE(
1122         run,    CONFIG_SYS_MAXARGS,     1,      do_run,
1123         "run commands in an environment variable",
1124         "var [...]\n"
1125         "    - run the commands in the environment variable(s) 'var'",
1126         var_complete
1127 );
1128 #endif
1129 #endif /* CONFIG_SPL_BUILD */