]> git.ipfire.org Git - people/ms/u-boot.git/blob - common/cmd_nvedit.c
Merge branch 'master' of /home/wd/git/u-boot/custodians
[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, int argc, char * const argv[])
169 {
170 ENTRY *match;
171 unsigned char matched[env_htab.size / 8];
172 int rcode = 1, arg = 1, idx;
173
174 if (argc < 2)
175 return cmd_usage(cmdtp);
176
177 memset(matched, 0, env_htab.size / 8);
178
179 while (arg <= argc) {
180 idx = 0;
181 while ((idx = hstrstr_r(argv[arg], idx, &match, &env_htab))) {
182 if (!(matched[idx / 8] & (1 << (idx & 7)))) {
183 puts(match->key);
184 puts("=");
185 puts(match->data);
186 puts("\n");
187 }
188 matched[idx / 8] |= 1 << (idx & 7);
189 rcode = 0;
190 }
191 arg++;
192 }
193
194 return rcode;
195 }
196 #endif
197
198 /*
199 * Set a new environment variable,
200 * or replace or delete an existing one.
201 */
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 \"%s\"\n", name);
215 return 1;
216 }
217
218 env_id++;
219 /*
220 * search if variable with this name already exists
221 */
222 e.key = name;
223 e.data = NULL;
224 hsearch_r(e, FIND, &ep, &env_htab);
225
226 /* Check for console redirection */
227 if (strcmp(name, "stdin") == 0)
228 console = stdin;
229 else if (strcmp(name, "stdout") == 0)
230 console = stdout;
231 else if (strcmp(name, "stderr") == 0)
232 console = stderr;
233
234 if (console != -1) {
235 if (argc < 3) { /* Cannot delete it! */
236 printf("Can't delete \"%s\"\n", name);
237 return 1;
238 }
239
240 #ifdef CONFIG_CONSOLE_MUX
241 i = iomux_doenv(console, argv[2]);
242 if (i)
243 return i;
244 #else
245 /* Try assigning specified device */
246 if (console_assign(console, argv[2]) < 0)
247 return 1;
248
249 #ifdef CONFIG_SERIAL_MULTI
250 if (serial_assign(argv[2]) < 0)
251 return 1;
252 #endif
253 #endif /* CONFIG_CONSOLE_MUX */
254 }
255
256 /*
257 * Some variables like "ethaddr" and "serial#" can be set only
258 * once and cannot be deleted; also, "ver" is readonly.
259 */
260 if (ep) { /* variable exists */
261 #ifndef CONFIG_ENV_OVERWRITE
262 if ((strcmp(name, "serial#") == 0) ||
263 ((strcmp(name, "ethaddr") == 0)
264 #if defined(CONFIG_OVERWRITE_ETHADDR_ONCE) && defined(CONFIG_ETHADDR)
265 && (strcmp(ep->data, MK_STR(CONFIG_ETHADDR)) != 0)
266 #endif /* CONFIG_OVERWRITE_ETHADDR_ONCE && CONFIG_ETHADDR */
267 ) ) {
268 printf("Can't overwrite \"%s\"\n", name);
269 return 1;
270 }
271 #endif
272 /*
273 * Switch to new baudrate if new baudrate is supported
274 */
275 if (strcmp(name, "baudrate") == 0) {
276 int baudrate = simple_strtoul(argv[2], NULL, 10);
277 int i;
278 for (i = 0; i < N_BAUDRATES; ++i) {
279 if (baudrate == baudrate_table[i])
280 break;
281 }
282 if (i == N_BAUDRATES) {
283 printf("## Baudrate %d bps not supported\n",
284 baudrate);
285 return 1;
286 }
287 printf ("## Switch baudrate to %d bps and press ENTER ...\n",
288 baudrate);
289 udelay(50000);
290 gd->baudrate = baudrate;
291 #if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)
292 gd->bd->bi_baudrate = baudrate;
293 #endif
294
295 serial_setbrg();
296 udelay(50000);
297 for (;;) {
298 if (getc() == '\r')
299 break;
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
346 if (strcmp(name, "ipaddr") == 0) {
347 char *s = argv[2]; /* always use only one arg */
348 char *e;
349 unsigned long addr;
350 bd->bi_ip_addr = 0;
351 for (addr = 0, i = 0; i < 4; ++i) {
352 ulong val = s ? simple_strtoul(s, &e, 10) : 0;
353 addr <<= 8;
354 addr |= (val & 0xFF);
355 if (s) s = (*e) ? e+1 : e;
356 }
357 bd->bi_ip_addr = htonl(addr);
358 return 0;
359 } else if (strcmp(argv[1], "loadaddr") == 0) {
360 load_addr = simple_strtoul(argv[2], NULL, 16);
361 return 0;
362 }
363 #if defined(CONFIG_CMD_NET)
364 else if (strcmp(argv[1], "bootfile") == 0) {
365 copy_filename(BootFile, argv[2], sizeof(BootFile));
366 return 0;
367 }
368 #endif
369 return 0;
370 }
371
372 int setenv(const char *varname, const char *varvalue)
373 {
374 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
375
376 if ((varvalue == NULL) || (varvalue[0] == '\0'))
377 return _do_env_set(0, 2, (char * const *)argv);
378 else
379 return _do_env_set(0, 3, (char * const *)argv);
380 }
381
382 /**
383 * Set an environment variable to an integer value
384 *
385 * @param varname Environmet variable to set
386 * @param value Value to set it to
387 * @return 0 if ok, 1 on error
388 */
389 int setenv_ulong(const char *varname, ulong value)
390 {
391 /* TODO: this should be unsigned */
392 char *str = simple_itoa(value);
393
394 return setenv(varname, str);
395 }
396
397 /**
398 * Set an environment variable to an address in hex
399 *
400 * @param varname Environmet variable to set
401 * @param addr Value to set it to
402 * @return 0 if ok, 1 on error
403 */
404 int setenv_addr(const char *varname, const void *addr)
405 {
406 char str[17];
407
408 sprintf(str, "%x", (uintptr_t)addr);
409 return setenv(varname, str);
410 }
411
412 int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
413 {
414 if (argc < 2)
415 return cmd_usage(cmdtp);
416
417 return _do_env_set(flag, argc, argv);
418 }
419
420 /*
421 * Prompt for environment variable
422 */
423 #if defined(CONFIG_CMD_ASKENV)
424 int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
425 {
426 extern char console_buffer[CONFIG_SYS_CBSIZE];
427 char message[CONFIG_SYS_CBSIZE];
428 int size = CONFIG_SYS_CBSIZE - 1;
429 int i, len, pos;
430 char *local_args[4];
431
432 local_args[0] = argv[0];
433 local_args[1] = argv[1];
434 local_args[2] = NULL;
435 local_args[3] = NULL;
436
437 /* Check the syntax */
438 switch (argc) {
439 case 1:
440 return cmd_usage(cmdtp);
441
442 case 2: /* env_ask envname */
443 sprintf(message, "Please enter '%s':", argv[1]);
444 break;
445
446 case 3: /* env_ask envname size */
447 sprintf(message, "Please enter '%s':", argv[1]);
448 size = simple_strtoul(argv[2], NULL, 10);
449 break;
450
451 default: /* env_ask envname message1 ... messagen size */
452 for (i = 2, pos = 0; i < argc - 1; i++) {
453 if (pos)
454 message[pos++] = ' ';
455
456 strcpy(message+pos, argv[i]);
457 pos += strlen(argv[i]);
458 }
459 message[pos] = '\0';
460 size = simple_strtoul(argv[argc - 1], NULL, 10);
461 break;
462 }
463
464 if (size >= CONFIG_SYS_CBSIZE)
465 size = CONFIG_SYS_CBSIZE - 1;
466
467 if (size <= 0)
468 return 1;
469
470 /* prompt for input */
471 len = readline(message);
472
473 if (size < len)
474 console_buffer[size] = '\0';
475
476 len = 2;
477 if (console_buffer[0] != '\0') {
478 local_args[2] = console_buffer;
479 len = 3;
480 }
481
482 /* Continue calling setenv code */
483 return _do_env_set(flag, len, local_args);
484 }
485 #endif
486
487 /*
488 * Interactively edit an environment variable
489 */
490 #if defined(CONFIG_CMD_EDITENV)
491 int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
492 {
493 char buffer[CONFIG_SYS_CBSIZE];
494 char *init_val;
495
496 if (argc < 2)
497 return cmd_usage(cmdtp);
498
499 /* Set read buffer to initial value or empty sting */
500 init_val = getenv(argv[1]);
501 if (init_val)
502 sprintf(buffer, "%s", init_val);
503 else
504 buffer[0] = '\0';
505
506 readline_into_buffer("edit: ", buffer);
507
508 return setenv(argv[1], buffer);
509 }
510 #endif /* CONFIG_CMD_EDITENV */
511
512 /*
513 * Look up variable from environment,
514 * return address of storage for that variable,
515 * or NULL if not found
516 */
517 char *getenv(const char *name)
518 {
519 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
520 ENTRY e, *ep;
521
522 WATCHDOG_RESET();
523
524 e.key = name;
525 e.data = NULL;
526 hsearch_r(e, FIND, &ep, &env_htab);
527
528 return ep ? ep->data : NULL;
529 }
530
531 /* restricted capabilities before import */
532
533 if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0)
534 return (char *)(gd->env_buf);
535
536 return NULL;
537 }
538
539 /*
540 * Look up variable from environment for restricted C runtime env.
541 */
542 int getenv_f(const char *name, char *buf, unsigned len)
543 {
544 int i, nxt;
545
546 for (i = 0; env_get_char(i) != '\0'; i = nxt+1) {
547 int val, n;
548
549 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) {
550 if (nxt >= CONFIG_ENV_SIZE)
551 return -1;
552 }
553
554 val = envmatch((uchar *)name, i);
555 if (val < 0)
556 continue;
557
558 /* found; copy out */
559 for (n = 0; n < len; ++n, ++buf) {
560 if ((*buf = env_get_char(val++)) == '\0')
561 return n;
562 }
563
564 if (n)
565 *--buf = '\0';
566
567 printf("env_buf [%d bytes] too small for value of \"%s\"\n",
568 len, name);
569
570 return n;
571 }
572 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
597 int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
598 {
599 extern char *env_name_spec;
600
601 printf("Saving Environment to %s...\n", env_name_spec);
602
603 return saveenv() ? 1 : 0;
604 }
605
606 U_BOOT_CMD(
607 saveenv, 1, 0, do_env_save,
608 "save environment variables to persistent storage",
609 ""
610 );
611
612 #endif
613
614
615 /*
616 * Match a name / name=value pair
617 *
618 * s1 is either a simple 'name', or a 'name=value' pair.
619 * i2 is the environment index for a 'name2=value2' pair.
620 * If the names match, return the index for the value2, else NULL.
621 */
622
623 int envmatch(uchar *s1, int i2)
624 {
625 while (*s1 == env_get_char(i2++))
626 if (*s1++ == '=')
627 return i2;
628 if (*s1 == '\0' && env_get_char(i2-1) == '=')
629 return i2;
630 return -1;
631 }
632
633 static int do_env_default(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
634 {
635 if ((argc != 2) || (strcmp(argv[1], "-f") != 0))
636 return cmd_usage(cmdtp);
637
638 set_default_env("## Resetting to default environment\n");
639 return 0;
640 }
641
642 static int do_env_delete(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
643 {
644 printf("Not implemented yet\n");
645 return 0;
646 }
647
648 #ifdef CONFIG_CMD_EXPORTENV
649 /*
650 * env export [-t | -b | -c] [-s size] addr [var ...]
651 * -t: export as text format; if size is given, data will be
652 * padded with '\0' bytes; if not, one terminating '\0'
653 * will be added (which is included in the "filesize"
654 * setting so you can for exmple copy this to flash and
655 * keep the termination).
656 * -b: export as binary format (name=value pairs separated by
657 * '\0', list end marked by double "\0\0")
658 * -c: export as checksum protected environment format as
659 * used for example by "saveenv" command
660 * -s size:
661 * size of output buffer
662 * addr: memory address where environment gets stored
663 * var... List of variable names that get included into the
664 * export. Without arguments, the whole environment gets
665 * exported.
666 *
667 * With "-c" and size is NOT given, then the export command will
668 * format the data as currently used for the persistent storage,
669 * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and
670 * prepend a valid CRC32 checksum and, in case of resundant
671 * environment, a "current" redundancy flag. If size is given, this
672 * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32
673 * checksum and redundancy flag will be inserted.
674 *
675 * With "-b" and "-t", always only the real data (including a
676 * terminating '\0' byte) will be written; here the optional size
677 * argument will be used to make sure not to overflow the user
678 * provided buffer; the command will abort if the size is not
679 * sufficient. Any remainign space will be '\0' padded.
680 *
681 * On successful return, the variable "filesize" will be set.
682 * Note that filesize includes the trailing/terminating '\0' byte(s).
683 *
684 * Usage szenario: create a text snapshot/backup of the current settings:
685 *
686 * => env export -t 100000
687 * => era ${backup_addr} +${filesize}
688 * => cp.b 100000 ${backup_addr} ${filesize}
689 *
690 * Re-import this snapshot, deleting all other settings:
691 *
692 * => env import -d -t ${backup_addr}
693 */
694 static int do_env_export(cmd_tbl_t *cmdtp, int flag, 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",
754 errno);
755 return 1;
756 }
757 sprintf(buf, "%zX", (size_t)len);
758 setenv("filesize", buf);
759
760 return 0;
761 }
762
763 envp = (env_t *)addr;
764
765 if (chk) /* export as checksum protected block */
766 res = (char *)envp->data;
767 else /* export as raw binary data */
768 res = addr;
769
770 len = hexport_r(&env_htab, '\0', &res, ENV_SIZE, argc, argv);
771 if (len < 0) {
772 error("Cannot export environment: errno = %d\n",
773 errno);
774 return 1;
775 }
776
777 if (chk) {
778 envp->crc = crc32(0, envp->data, ENV_SIZE);
779 #ifdef CONFIG_ENV_ADDR_REDUND
780 envp->flags = ACTIVE_FLAG;
781 #endif
782 }
783 sprintf(buf, "%zX", (size_t)(len + offsetof(env_t, data)));
784 setenv("filesize", buf);
785
786 return 0;
787
788 sep_err:
789 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
790 cmd);
791 return 1;
792 }
793 #endif
794
795 #ifdef CONFIG_CMD_IMPORTENV
796 /*
797 * env import [-d] [-t | -b | -c] addr [size]
798 * -d: delete existing environment before importing;
799 * otherwise overwrite / append to existion definitions
800 * -t: assume text format; either "size" must be given or the
801 * text data must be '\0' terminated
802 * -b: assume binary format ('\0' separated, "\0\0" terminated)
803 * -c: assume checksum protected environment format
804 * addr: memory address to read from
805 * size: length of input data; if missing, proper '\0'
806 * termination is mandatory
807 */
808 static int do_env_import(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
809 {
810 char *cmd, *addr;
811 char sep = '\n';
812 int chk = 0;
813 int fmt = 0;
814 int del = 0;
815 size_t size;
816
817 cmd = *argv;
818
819 while (--argc > 0 && **++argv == '-') {
820 char *arg = *argv;
821 while (*++arg) {
822 switch (*arg) {
823 case 'b': /* raw binary format */
824 if (fmt++)
825 goto sep_err;
826 sep = '\0';
827 break;
828 case 'c': /* external checksum format */
829 if (fmt++)
830 goto sep_err;
831 sep = '\0';
832 chk = 1;
833 break;
834 case 't': /* text format */
835 if (fmt++)
836 goto sep_err;
837 sep = '\n';
838 break;
839 case 'd':
840 del = 1;
841 break;
842 default:
843 return cmd_usage(cmdtp);
844 }
845 }
846 }
847
848 if (argc < 1)
849 return cmd_usage(cmdtp);
850
851 if (!fmt)
852 printf("## Warning: defaulting to text format\n");
853
854 addr = (char *)simple_strtoul(argv[0], NULL, 16);
855
856 if (argc == 2) {
857 size = simple_strtoul(argv[1], NULL, 16);
858 } else {
859 char *s = addr;
860
861 size = 0;
862
863 while (size < MAX_ENV_SIZE) {
864 if ((*s == sep) && (*(s+1) == '\0'))
865 break;
866 ++s;
867 ++size;
868 }
869 if (size == MAX_ENV_SIZE) {
870 printf("## Warning: Input data exceeds %d bytes"
871 " - truncated\n", MAX_ENV_SIZE);
872 }
873 ++size;
874 printf("## Info: input data size = %zd = 0x%zX\n", size, size);
875 }
876
877 if (chk) {
878 uint32_t crc;
879 env_t *ep = (env_t *)addr;
880
881 size -= offsetof(env_t, data);
882 memcpy(&crc, &ep->crc, sizeof(crc));
883
884 if (crc32(0, ep->data, size) != crc) {
885 puts("## Error: bad CRC, import failed\n");
886 return 1;
887 }
888 addr = (char *)ep->data;
889 }
890
891 if (himport_r(&env_htab, addr, size, sep, del ? 0 : H_NOCLEAR) == 0) {
892 error("Environment import failed: errno = %d\n", errno);
893 return 1;
894 }
895 gd->flags |= GD_FLG_ENV_READY;
896
897 return 0;
898
899 sep_err:
900 printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n",
901 cmd);
902 return 1;
903 }
904 #endif
905
906 #if defined(CONFIG_CMD_RUN)
907 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
908 #endif
909
910 /*
911 * New command line interface: "env" command with subcommands
912 */
913 static cmd_tbl_t cmd_env_sub[] = {
914 #if defined(CONFIG_CMD_ASKENV)
915 U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""),
916 #endif
917 U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""),
918 U_BOOT_CMD_MKENT(delete, 2, 0, do_env_delete, "", ""),
919 #if defined(CONFIG_CMD_EDITENV)
920 U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""),
921 #endif
922 #if defined(CONFIG_CMD_EXPORTENV)
923 U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""),
924 #endif
925 #if defined(CONFIG_CMD_GREPENV)
926 U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""),
927 #endif
928 #if defined(CONFIG_CMD_IMPORTENV)
929 U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""),
930 #endif
931 U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""),
932 #if defined(CONFIG_CMD_RUN)
933 U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""),
934 #endif
935 #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE)
936 U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""),
937 #endif
938 U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""),
939 };
940
941 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
942 void env_reloc(void)
943 {
944 fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
945 }
946 #endif
947
948 static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
949 {
950 cmd_tbl_t *cp;
951
952 if (argc < 2)
953 return cmd_usage(cmdtp);
954
955 /* drop initial "env" arg */
956 argc--;
957 argv++;
958
959 cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub));
960
961 if (cp)
962 return cp->cmd(cmdtp, flag, argc, argv);
963
964 return cmd_usage(cmdtp);
965 }
966
967 U_BOOT_CMD(
968 env, CONFIG_SYS_MAXARGS, 1, do_env,
969 "environment handling commands",
970 #if defined(CONFIG_CMD_ASKENV)
971 "ask name [message] [size] - ask for environment variable\nenv "
972 #endif
973 "default -f - reset default environment\n"
974 #if defined(CONFIG_CMD_EDITENV)
975 "env edit name - edit environment variable\n"
976 #endif
977 "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n"
978 #if defined(CONFIG_CMD_GREPENV)
979 "env grep string [...] - search environment\n"
980 #endif
981 "env import [-d] [-t | -b | -c] addr [size] - import environment\n"
982 "env print [name ...] - print environment\n"
983 #if defined(CONFIG_CMD_RUN)
984 "env run var [...] - run commands in an environment variable\n"
985 #endif
986 "env save - save environment\n"
987 "env set [-f] name [arg ...]\n"
988 );
989
990 /*
991 * Old command line interface, kept for compatibility
992 */
993
994 #if defined(CONFIG_CMD_EDITENV)
995 U_BOOT_CMD_COMPLETE(
996 editenv, 2, 0, do_env_edit,
997 "edit environment variable",
998 "name\n"
999 " - edit environment variable 'name'",
1000 var_complete
1001 );
1002 #endif
1003
1004 U_BOOT_CMD_COMPLETE(
1005 printenv, CONFIG_SYS_MAXARGS, 1, do_env_print,
1006 "print environment variables",
1007 "\n - print values of all environment variables\n"
1008 "printenv name ...\n"
1009 " - print value of environment variable 'name'",
1010 var_complete
1011 );
1012
1013 #ifdef CONFIG_CMD_GREPENV
1014 U_BOOT_CMD_COMPLETE(
1015 grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep,
1016 "search environment variables",
1017 "string ...\n"
1018 " - list environment name=value pairs matching 'string'",
1019 var_complete
1020 );
1021 #endif
1022
1023 U_BOOT_CMD_COMPLETE(
1024 setenv, CONFIG_SYS_MAXARGS, 0, do_env_set,
1025 "set environment variables",
1026 "name value ...\n"
1027 " - set environment variable 'name' to 'value ...'\n"
1028 "setenv name\n"
1029 " - delete environment variable 'name'",
1030 var_complete
1031 );
1032
1033 #if defined(CONFIG_CMD_ASKENV)
1034
1035 U_BOOT_CMD(
1036 askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask,
1037 "get environment variables from stdin",
1038 "name [message] [size]\n"
1039 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1040 "askenv name\n"
1041 " - get environment variable 'name' from stdin\n"
1042 "askenv name size\n"
1043 " - get environment variable 'name' from stdin (max 'size' chars)\n"
1044 "askenv name [message] size\n"
1045 " - display 'message' string and get environment variable 'name'"
1046 "from stdin (max 'size' chars)"
1047 );
1048 #endif
1049
1050 #if defined(CONFIG_CMD_RUN)
1051 U_BOOT_CMD_COMPLETE(
1052 run, CONFIG_SYS_MAXARGS, 1, do_run,
1053 "run commands in an environment variable",
1054 "var [...]\n"
1055 " - run the commands in the environment variable(s) 'var'",
1056 var_complete
1057 );
1058 #endif