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