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