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