]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - common/cmd_nvedit.c
sh/ap_sh4a_4a: Fix typo of operator in ET0_ETXD4
[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         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(argv[1], "loadaddr") == 0) {
346                 load_addr = simple_strtoul(argv[2], NULL, 16);
347                 return 0;
348         }
349 #if defined(CONFIG_CMD_NET)
350         else if (strcmp(argv[1], "bootfile") == 0) {
351                 copy_filename(BootFile, argv[2], sizeof(BootFile));
352                 return 0;
353         }
354 #endif
355         return 0;
356 }
357
358 int setenv(const char *varname, const char *varvalue)
359 {
360         const char * const argv[4] = { "setenv", varname, varvalue, NULL };
361
362         if (varvalue == NULL || varvalue[0] == '\0')
363                 return _do_env_set(0, 2, (char * const *)argv);
364         else
365                 return _do_env_set(0, 3, (char * const *)argv);
366 }
367
368 /**
369  * Set an environment variable to an integer value
370  *
371  * @param varname       Environmet variable to set
372  * @param value         Value to set it to
373  * @return 0 if ok, 1 on error
374  */
375 int setenv_ulong(const char *varname, ulong value)
376 {
377         /* TODO: this should be unsigned */
378         char *str = simple_itoa(value);
379
380         return setenv(varname, str);
381 }
382
383 /**
384  * Set an environment variable to an address in hex
385  *
386  * @param varname       Environmet variable to set
387  * @param addr          Value to set it to
388  * @return 0 if ok, 1 on error
389  */
390 int setenv_addr(const char *varname, const void *addr)
391 {
392         char str[17];
393
394         sprintf(str, "%lx", (uintptr_t)addr);
395         return setenv(varname, str);
396 }
397
398 int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
399 {
400         if (argc < 2)
401                 return CMD_RET_USAGE;
402
403         return _do_env_set(flag, argc, argv);
404 }
405
406 /*
407  * Prompt for environment variable
408  */
409 #if defined(CONFIG_CMD_ASKENV)
410 int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
411 {
412         char message[CONFIG_SYS_CBSIZE];
413         int size = CONFIG_SYS_CBSIZE - 1;
414         int i, len, pos;
415         char *local_args[4];
416
417         local_args[0] = argv[0];
418         local_args[1] = argv[1];
419         local_args[2] = NULL;
420         local_args[3] = NULL;
421
422         /* Check the syntax */
423         switch (argc) {
424         case 1:
425                 return CMD_RET_USAGE;
426
427         case 2:         /* env_ask envname */
428                 sprintf(message, "Please enter '%s':", argv[1]);
429                 break;
430
431         case 3:         /* env_ask envname size */
432                 sprintf(message, "Please enter '%s':", argv[1]);
433                 size = simple_strtoul(argv[2], NULL, 10);
434                 break;
435
436         default:        /* env_ask envname message1 ... messagen size */
437                 for (i = 2, pos = 0; i < argc - 1; i++) {
438                         if (pos)
439                                 message[pos++] = ' ';
440
441                         strcpy(message + pos, argv[i]);
442                         pos += strlen(argv[i]);
443                 }
444
445                 message[pos] = '\0';
446                 size = simple_strtoul(argv[argc - 1], NULL, 10);
447                 break;
448         }
449
450         if (size >= CONFIG_SYS_CBSIZE)
451                 size = CONFIG_SYS_CBSIZE - 1;
452
453         if (size <= 0)
454                 return 1;
455
456         /* prompt for input */
457         len = readline(message);
458
459         if (size < len)
460                 console_buffer[size] = '\0';
461
462         len = 2;
463         if (console_buffer[0] != '\0') {
464                 local_args[2] = console_buffer;
465                 len = 3;
466         }
467
468         /* Continue calling setenv code */
469         return _do_env_set(flag, len, local_args);
470 }
471 #endif
472
473 /*
474  * Interactively edit an environment variable
475  */
476 #if defined(CONFIG_CMD_EDITENV)
477 int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
478 {
479         char buffer[CONFIG_SYS_CBSIZE];
480         char *init_val;
481
482         if (argc < 2)
483                 return CMD_RET_USAGE;
484
485         /* Set read buffer to initial value or empty sting */
486         init_val = getenv(argv[1]);
487         if (init_val)
488                 sprintf(buffer, "%s", init_val);
489         else
490                 buffer[0] = '\0';
491
492         readline_into_buffer("edit: ", buffer, 0);
493
494         return setenv(argv[1], buffer);
495 }
496 #endif /* CONFIG_CMD_EDITENV */
497
498 /*
499  * Look up variable from environment,
500  * return address of storage for that variable,
501  * or NULL if not found
502  */
503 char *getenv(const char *name)
504 {
505         if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
506                 ENTRY e, *ep;
507
508                 WATCHDOG_RESET();
509
510                 e.key   = name;
511                 e.data  = NULL;
512                 hsearch_r(e, FIND, &ep, &env_htab);
513
514                 return ep ? ep->data : NULL;
515         }
516
517         /* restricted capabilities before import */
518         if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
519                 return (char *)(gd->env_buf);
520
521         return NULL;
522 }
523
524 /*
525  * Look up variable from environment for restricted C runtime env.
526  */
527 int getenv_f(const char *name, char *buf, unsigned len)
528 {
529         int i, nxt;
530
531         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
532                 int val, n;
533
534                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
535                         if (nxt >= CONFIG_ENV_SIZE)
536                                 return -1;
537                 }
538
539                 val = envmatch((uchar *)name, i);
540                 if (val < 0)
541                         continue;
542
543                 /* found; copy out */
544                 for (n = 0; n < len; ++n, ++buf) {
545                         *buf = env_get_char(val++);
546                         if (*buf == '\0')
547                                 return n;
548                 }
549
550                 if (n)
551                         *--buf = '\0';
552
553                 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
554                         len, name);
555
556                 return n;
557         }
558
559         return -1;
560 }
561
562 /**
563  * Decode the integer value of an environment variable and return it.
564  *
565  * @param name          Name of environemnt variable
566  * @param base          Number base to use (normally 10, or 16 for hex)
567  * @param default_val   Default value to return if the variable is not
568  *                      found
569  * @return the decoded value, or default_val if not found
570  */
571 ulong getenv_ulong(const char *name, int base, ulong default_val)
572 {
573         /*
574          * We can use getenv() here, even before relocation, since the
575          * environment variable value is an integer and thus short.
576          */
577         const char *str = getenv(name);
578
579         return str ? simple_strtoul(str, NULL, base) : default_val;
580 }
581
582 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
583 int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
584 {
585         printf("Saving Environment to %s...\n", env_name_spec);
586
587         return saveenv() ? 1 : 0;
588 }
589
590 U_BOOT_CMD(
591         saveenv, 1, 0,  do_env_save,
592         "save environment variables to persistent storage",
593         ""
594 );
595 #endif
596
597
598 /*
599  * Match a name / name=value pair
600  *
601  * s1 is either a simple 'name', or a 'name=value' pair.
602  * i2 is the environment index for a 'name2=value2' pair.
603  * If the names match, return the index for the value2, else -1.
604  */
605 int envmatch(uchar *s1, int i2)
606 {
607         while (*s1 == env_get_char(i2++))
608                 if (*s1++ == '=')
609                         return i2;
610
611         if (*s1 == '\0' && env_get_char(i2-1) == '=')
612                 return i2;
613
614         return -1;
615 }
616
617 static int do_env_default(cmd_tbl_t *cmdtp, int flag,
618                           int argc, char * const argv[])
619 {
620         if (argc != 2 || strcmp(argv[1], "-f") != 0)
621                 return CMD_RET_USAGE;
622
623         set_default_env("## Resetting to default environment\n");
624         return 0;
625 }
626
627 static int do_env_delete(cmd_tbl_t *cmdtp, int flag,
628                          int argc, char * const argv[])
629 {
630         printf("Not implemented yet\n");
631         return 0;
632 }
633
634 #ifdef CONFIG_CMD_EXPORTENV
635 /*
636  * env export [-t | -b | -c] [-s size] addr [var ...]
637  *      -t:     export as text format; if size is given, data will be
638  *              padded with '\0' bytes; if not, one terminating '\0'
639  *              will be added (which is included in the "filesize"
640  *              setting so you can for exmple copy this to flash and
641  *              keep the termination).
642  *      -b:     export as binary format (name=value pairs separated by
643  *              '\0', list end marked by double "\0\0")
644  *      -c:     export as checksum protected environment format as
645  *              used for example by "saveenv" command
646  *      -s size:
647  *              size of output buffer
648  *      addr:   memory address where environment gets stored
649  *      var...  List of variable names that get included into the
650  *              export. Without arguments, the whole environment gets
651  *              exported.
652  *
653  * With "-c" and size is NOT given, then the export command will
654  * format the data as currently used for the persistent storage,
655  * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
656  * prepend a valid CRC32 checksum and, in case of resundant
657  * environment, a "current" redundancy flag. If size is given, this
658  * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
659  * checksum and redundancy flag will be inserted.
660  *
661  * With "-b" and "-t", always only the real data (including a
662  * terminating '\0' byte) will be written; here the optional size
663  * argument will be used to make sure not to overflow the user
664  * provided buffer; the command will abort if the size is not
665  * sufficient. Any remainign space will be '\0' padded.
666  *
667  * On successful return, the variable "filesize" will be set.
668  * Note that filesize includes the trailing/terminating '\0' byte(s).
669  *
670  * Usage szenario:  create a text snapshot/backup of the current settings:
671  *
672  *      => env export -t 100000
673  *      => era ${backup_addr} +${filesize}
674  *      => cp.b 100000 ${backup_addr} ${filesize}
675  *
676  * Re-import this snapshot, deleting all other settings:
677  *
678  *      => env import -d -t ${backup_addr}
679  */
680 static int do_env_export(cmd_tbl_t *cmdtp, int flag,
681                          int argc, char * const argv[])
682 {
683         char    buf[32];
684         char    *addr, *cmd, *res;
685         size_t  size = 0;
686         ssize_t len;
687         env_t   *envp;
688         char    sep = '\n';
689         int     chk = 0;
690         int     fmt = 0;
691
692         cmd = *argv;
693
694         while (--argc > 0 && **++argv == '-') {
695                 char *arg = *argv;
696                 while (*++arg) {
697                         switch (*arg) {
698                         case 'b':               /* raw binary format */
699                                 if (fmt++)
700                                         goto sep_err;
701                                 sep = '\0';
702                                 break;
703                         case 'c':               /* external checksum format */
704                                 if (fmt++)
705                                         goto sep_err;
706                                 sep = '\0';
707                                 chk = 1;
708                                 break;
709                         case 's':               /* size given */
710                                 if (--argc <= 0)
711                                         return cmd_usage(cmdtp);
712                                 size = simple_strtoul(*++argv, NULL, 16);
713                                 goto NXTARG;
714                         case 't':               /* text format */
715                                 if (fmt++)
716                                         goto sep_err;
717                                 sep = '\n';
718                                 break;
719                         default:
720                                 return CMD_RET_USAGE;
721                         }
722                 }
723 NXTARG:         ;
724         }
725
726         if (argc < 1)
727                 return CMD_RET_USAGE;
728
729         addr = (char *)simple_strtoul(argv[0], NULL, 16);
730
731         if (size)
732                 memset(addr, '\0', size);
733
734         argc--;
735         argv++;
736
737         if (sep) {              /* export as text file */
738                 len = hexport_r(&env_htab, sep, &addr, size, argc, argv);
739                 if (len < 0) {
740                         error("Cannot export environment: errno = %d\n", errno);
741                         return 1;
742                 }
743                 sprintf(buf, "%zX", (size_t)len);
744                 setenv("filesize", buf);
745
746                 return 0;
747         }
748
749         envp = (env_t *)addr;
750
751         if (chk)                /* export as checksum protected block */
752                 res = (char *)envp->data;
753         else                    /* export as raw binary data */
754                 res = addr;
755
756         len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
757         if (len < 0) {
758                 error("Cannot export environment: errno = %d\n", errno);
759                 return 1;
760         }
761
762         if (chk) {
763                 envp->crc = crc32(0, envp->data, ENV_SIZE);
764 #ifdef CONFIG_ENV_ADDR_REDUND
765                 envp->flags = ACTIVE_FLAG;
766 #endif
767         }
768         sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
769         setenv("filesize", buf);
770
771         return 0;
772
773 sep_err:
774         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd);
775         return 1;
776 }
777 #endif
778
779 #ifdef CONFIG_CMD_IMPORTENV
780 /*
781  * env import [-d] [-t | -b | -c] addr [size]
782  *      -d:     delete existing environment before importing;
783  *              otherwise overwrite / append to existion definitions
784  *      -t:     assume text format; either "size" must be given or the
785  *              text data must be '\0' terminated
786  *      -b:     assume binary format ('\0' separated, "\0\0" terminated)
787  *      -c:     assume checksum protected environment format
788  *      addr:   memory address to read from
789  *      size:   length of input data; if missing, proper '\0'
790  *              termination is mandatory
791  */
792 static int do_env_import(cmd_tbl_t *cmdtp, int flag,
793                          int argc, char * const argv[])
794 {
795         char    *cmd, *addr;
796         char    sep = '\n';
797         int     chk = 0;
798         int     fmt = 0;
799         int     del = 0;
800         size_t  size;
801
802         cmd = *argv;
803
804         while (--argc > 0 && **++argv == '-') {
805                 char *arg = *argv;
806                 while (*++arg) {
807                         switch (*arg) {
808                         case 'b':               /* raw binary format */
809                                 if (fmt++)
810                                         goto sep_err;
811                                 sep = '\0';
812                                 break;
813                         case 'c':               /* external checksum format */
814                                 if (fmt++)
815                                         goto sep_err;
816                                 sep = '\0';
817                                 chk = 1;
818                                 break;
819                         case 't':               /* text format */
820                                 if (fmt++)
821                                         goto sep_err;
822                                 sep = '\n';
823                                 break;
824                         case 'd':
825                                 del = 1;
826                                 break;
827                         default:
828                                 return CMD_RET_USAGE;
829                         }
830                 }
831         }
832
833         if (argc < 1)
834                 return CMD_RET_USAGE;
835
836         if (!fmt)
837                 printf("## Warning: defaulting to text format\n");
838
839         addr = (char *)simple_strtoul(argv[0], NULL, 16);
840
841         if (argc == 2) {
842                 size = simple_strtoul(argv[1], NULL, 16);
843         } else {
844                 char *s = addr;
845
846                 size = 0;
847
848                 while (size < MAX_ENV_SIZE) {
849                         if ((*s == sep) && (*(s+1) == '\0'))
850                                 break;
851                         ++s;
852                         ++size;
853                 }
854                 if (size == MAX_ENV_SIZE) {
855                         printf("## Warning: Input data exceeds %d bytes"
856                                 " - truncated\n", MAX_ENV_SIZE);
857                 }
858                 size += 2;
859                 printf("## Info: input data size = %zu = 0x%zX\n", size, size);
860         }
861
862         if (chk) {
863                 uint32_t crc;
864                 env_t *ep = (env_t *)addr;
865
866                 size -= offsetof(env_t, data);
867                 memcpy(&crc, &ep->crc, sizeof(crc));
868
869                 if (crc32(0, ep->data, size) != crc) {
870                         puts("## Error: bad CRC, import failed\n");
871                         return 1;
872                 }
873                 addr = (char *)ep->data;
874         }
875
876         if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
877                 error("Environment import failed: errno = %d\n", errno);
878                 return 1;
879         }
880         gd->flags |= GD_FLG_ENV_READY;
881
882         return 0;
883
884 sep_err:
885         printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
886                 cmd);
887         return 1;
888 }
889 #endif
890
891 /*
892  * New command line interface: "env" command with subcommands
893  */
894 static cmd_tbl_t cmd_env_sub[] = {
895 #if defined(CONFIG_CMD_ASKENV)
896         U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
897 #endif
898         U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
899         U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
900 #if defined(CONFIG_CMD_EDITENV)
901         U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
902 #endif
903 #if defined(CONFIG_CMD_EXPORTENV)
904         U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
905 #endif
906 #if defined(CONFIG_CMD_GREPENV)
907         U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
908 #endif
909 #if defined(CONFIG_CMD_IMPORTENV)
910         U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
911 #endif
912         U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
913 #if defined(CONFIG_CMD_RUN)
914         U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
915 #endif
916 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
917         U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
918 #endif
919         U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
920 };
921
922 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
923 void env_reloc(void)
924 {
925         fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
926 }
927 #endif
928
929 static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
930 {
931         cmd_tbl_t *cp;
932
933         if (argc < 2)
934                 return CMD_RET_USAGE;
935
936         /* drop initial "env" arg */
937         argc--;
938         argv++;
939
940         cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
941
942         if (cp)
943                 return cp->cmd(cmdtp, flag, argc, argv);
944
945         return CMD_RET_USAGE;
946 }
947
948 U_BOOT_CMD(
949         env, CONFIG_SYS_MAXARGS, 1, do_env,
950         "environment handling commands",
951 #if defined(CONFIG_CMD_ASKENV)
952         "ask name [message] [size] - ask for environment variable\nenv "
953 #endif
954         "default -f - reset default environment\n"
955 #if defined(CONFIG_CMD_EDITENV)
956         "env edit name - edit environment variable\n"
957 #endif
958         "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
959 #if defined(CONFIG_CMD_GREPENV)
960         "env grep string [...] - search environment\n"
961 #endif
962         "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
963         "env print [name ...] - print environment\n"
964 #if defined(CONFIG_CMD_RUN)
965         "env run var [...] - run commands in an environment variable\n"
966 #endif
967 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
968         "env save - save environment\n"
969 #endif
970         "env set [-f] name [arg ...]\n"
971 );
972
973 /*
974  * Old command line interface, kept for compatibility
975  */
976
977 #if defined(CONFIG_CMD_EDITENV)
978 U_BOOT_CMD_COMPLETE(
979         editenv, 2, 0,  do_env_edit,
980         "edit environment variable",
981         "name\n"
982         "    - edit environment variable 'name'",
983         var_complete
984 );
985 #endif
986
987 U_BOOT_CMD_COMPLETE(
988         printenv, CONFIG_SYS_MAXARGS, 1,        do_env_print,
989         "print environment variables",
990         "\n    - print values of all environment variables\n"
991         "printenv name ...\n"
992         "    - print value of environment variable 'name'",
993         var_complete
994 );
995
996 #ifdef CONFIG_CMD_GREPENV
997 U_BOOT_CMD_COMPLETE(
998         grepenv, CONFIG_SYS_MAXARGS, 0,  do_env_grep,
999         "search environment variables",
1000         "string ...\n"
1001         "    - list environment name=value pairs matching 'string'",
1002         var_complete
1003 );
1004 #endif
1005
1006 U_BOOT_CMD_COMPLETE(
1007         setenv, CONFIG_SYS_MAXARGS, 0,  do_env_set,
1008         "set environment variables",
1009         "name value ...\n"
1010         "    - set environment variable 'name' to 'value ...'\n"
1011         "setenv name\n"
1012         "    - delete environment variable 'name'",
1013         var_complete
1014 );
1015
1016 #if defined(CONFIG_CMD_ASKENV)
1017
1018 U_BOOT_CMD(
1019         askenv, CONFIG_SYS_MAXARGS,     1,      do_env_ask,
1020         "get environment variables from stdin",
1021         "name [message] [size]\n"
1022         "    - get environment variable 'name' from stdin (max 'size' chars)\n"
1023         "askenv name\n"
1024         "    - get environment variable 'name' from stdin\n"
1025         "askenv name size\n"
1026         "    - get environment variable 'name' from stdin (max 'size' chars)\n"
1027         "askenv name [message] size\n"
1028         "    - display 'message' string and get environment variable 'name'"
1029         "from stdin (max 'size' chars)"
1030 );
1031 #endif
1032
1033 #if defined(CONFIG_CMD_RUN)
1034 U_BOOT_CMD_COMPLETE(
1035         run,    CONFIG_SYS_MAXARGS,     1,      do_run,
1036         "run commands in an environment variable",
1037         "var [...]\n"
1038         "    - run the commands in the environment variable(s) 'var'",
1039         var_complete
1040 );
1041 #endif