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