]>
Commit | Line | Data |
---|---|---|
a68d3ed0 | 1 | /* |
ea009d47 | 2 | * (C) Copyright 2000-2013 |
a68d3ed0 WD |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
4 | * | |
5 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
6 | * Andreas Heppel <[email protected]> | |
a000b795 KP |
7 | * |
8 | * Copyright 2011 Freescale Semiconductor, Inc. | |
9 | * | |
3765b3e7 | 10 | * SPDX-License-Identifier: GPL-2.0+ |
a68d3ed0 WD |
11 | */ |
12 | ||
ea882baf | 13 | /* |
a68d3ed0 WD |
14 | * Support for persistent environment data |
15 | * | |
ea882baf WD |
16 | * The "environment" is stored on external storage as a list of '\0' |
17 | * terminated "name=value" strings. The end of the list is marked by | |
18 | * a double '\0'. The environment is preceeded by a 32 bit CRC over | |
19 | * the data part and, in case of redundant environment, a byte of | |
20 | * flags. | |
a68d3ed0 | 21 | * |
ea882baf WD |
22 | * This linearized representation will also be used before |
23 | * relocation, i. e. as long as we don't have a full C runtime | |
24 | * environment. After that, we use a hash table. | |
a68d3ed0 WD |
25 | */ |
26 | ||
27 | #include <common.h> | |
18d66533 | 28 | #include <cli.h> |
a68d3ed0 | 29 | #include <command.h> |
24b852a7 | 30 | #include <console.h> |
a68d3ed0 | 31 | #include <environment.h> |
ea882baf WD |
32 | #include <search.h> |
33 | #include <errno.h> | |
246c6922 | 34 | #include <malloc.h> |
0eb25b61 | 35 | #include <mapmem.h> |
2a3cb020 | 36 | #include <watchdog.h> |
a68d3ed0 WD |
37 | #include <linux/stddef.h> |
38 | #include <asm/byteorder.h> | |
fd37dac9 | 39 | #include <asm/io.h> |
a68d3ed0 | 40 | |
d87080b7 WD |
41 | DECLARE_GLOBAL_DATA_PTR; |
42 | ||
f3c615b8 ML |
43 | #if !defined(CONFIG_ENV_IS_IN_EEPROM) && \ |
44 | !defined(CONFIG_ENV_IS_IN_FLASH) && \ | |
45 | !defined(CONFIG_ENV_IS_IN_DATAFLASH) && \ | |
f3c615b8 | 46 | !defined(CONFIG_ENV_IS_IN_MMC) && \ |
57210c7c | 47 | !defined(CONFIG_ENV_IS_IN_FAT) && \ |
fd1000b9 | 48 | !defined(CONFIG_ENV_IS_IN_EXT4) && \ |
f3c615b8 ML |
49 | !defined(CONFIG_ENV_IS_IN_NAND) && \ |
50 | !defined(CONFIG_ENV_IS_IN_NVRAM) && \ | |
51 | !defined(CONFIG_ENV_IS_IN_ONENAND) && \ | |
125d193c | 52 | !defined(CONFIG_ENV_IS_IN_SATA) && \ |
f3c615b8 | 53 | !defined(CONFIG_ENV_IS_IN_SPI_FLASH) && \ |
0a85a9e7 | 54 | !defined(CONFIG_ENV_IS_IN_REMOTE) && \ |
2b74433f | 55 | !defined(CONFIG_ENV_IS_IN_UBI) && \ |
f3c615b8 | 56 | !defined(CONFIG_ENV_IS_NOWHERE) |
75eb82ec | 57 | # error Define one of CONFIG_ENV_IS_IN_{EEPROM|FLASH|DATAFLASH|ONENAND|\ |
125d193c | 58 | SATA|SPI_FLASH|NVRAM|MMC|FAT|EXT4|REMOTE|UBI} or CONFIG_ENV_IS_NOWHERE |
a68d3ed0 WD |
59 | #endif |
60 | ||
ea882baf WD |
61 | /* |
62 | * Maximum expected input data size for import command | |
63 | */ | |
64 | #define MAX_ENV_SIZE (1 << 20) /* 1 MiB */ | |
a68d3ed0 | 65 | |
da95427c | 66 | /* |
ea882baf | 67 | * This variable is incremented on each do_env_set(), so it can |
da95427c HS |
68 | * be used via get_env_id() as an indication, if the environment |
69 | * has changed or not. So it is possible to reread an environment | |
70 | * variable only if the environment was changed ... done so for | |
71 | * example in NetInitLoop() | |
72 | */ | |
2f70c49e | 73 | static int env_id = 1; |
a68d3ed0 | 74 | |
f3c615b8 | 75 | int get_env_id(void) |
2f70c49e HS |
76 | { |
77 | return env_id; | |
78 | } | |
a68d3ed0 | 79 | |
7ac2fe2d | 80 | #ifndef CONFIG_SPL_BUILD |
4c94f6c5 | 81 | /* |
ea882baf WD |
82 | * Command interface: print one or all environment variables |
83 | * | |
84 | * Returns 0 in case of error, or length of printed string | |
4c94f6c5 | 85 | */ |
be11235a | 86 | static int env_print(char *name, int flag) |
a68d3ed0 | 87 | { |
ea882baf | 88 | char *res = NULL; |
22a4a6c5 | 89 | ssize_t len; |
ea882baf WD |
90 | |
91 | if (name) { /* print a single name */ | |
92 | ENTRY e, *ep; | |
93 | ||
94 | e.key = name; | |
95 | e.data = NULL; | |
be11235a | 96 | hsearch_r(e, FIND, &ep, &env_htab, flag); |
ea882baf WD |
97 | if (ep == NULL) |
98 | return 0; | |
f3c615b8 | 99 | len = printf("%s=%s\n", ep->key, ep->data); |
ea882baf WD |
100 | return len; |
101 | } | |
a68d3ed0 | 102 | |
ea882baf | 103 | /* print whole list */ |
be11235a | 104 | len = hexport_r(&env_htab, '\n', flag, &res, 0, 0, NULL); |
a68d3ed0 | 105 | |
ea882baf WD |
106 | if (len > 0) { |
107 | puts(res); | |
108 | free(res); | |
109 | return len; | |
a68d3ed0 WD |
110 | } |
111 | ||
ea882baf | 112 | /* should never happen */ |
22a4a6c5 | 113 | printf("## Error: cannot export environment\n"); |
ea882baf | 114 | return 0; |
4c94f6c5 | 115 | } |
a68d3ed0 | 116 | |
088f1b19 KP |
117 | static int do_env_print(cmd_tbl_t *cmdtp, int flag, int argc, |
118 | char * const argv[]) | |
4c94f6c5 MF |
119 | { |
120 | int i; | |
121 | int rcode = 0; | |
be11235a JH |
122 | int env_flag = H_HIDE_DOT; |
123 | ||
124 | if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'a') { | |
125 | argc--; | |
126 | argv++; | |
127 | env_flag &= ~H_HIDE_DOT; | |
128 | } | |
a68d3ed0 | 129 | |
4c94f6c5 MF |
130 | if (argc == 1) { |
131 | /* print all env vars */ | |
be11235a | 132 | rcode = env_print(NULL, env_flag); |
ea882baf | 133 | if (!rcode) |
4c94f6c5 MF |
134 | return 1; |
135 | printf("\nEnvironment size: %d/%ld bytes\n", | |
136 | rcode, (ulong)ENV_SIZE); | |
137 | return 0; | |
138 | } | |
a68d3ed0 | 139 | |
4c94f6c5 | 140 | /* print selected env vars */ |
be11235a | 141 | env_flag &= ~H_HIDE_DOT; |
4c94f6c5 | 142 | for (i = 1; i < argc; ++i) { |
be11235a | 143 | int rc = env_print(argv[i], env_flag); |
ea882baf WD |
144 | if (!rc) { |
145 | printf("## Error: \"%s\" not defined\n", argv[i]); | |
4c94f6c5 | 146 | ++rcode; |
a68d3ed0 WD |
147 | } |
148 | } | |
4c94f6c5 | 149 | |
a68d3ed0 WD |
150 | return rcode; |
151 | } | |
152 | ||
a000b795 | 153 | #ifdef CONFIG_CMD_GREPENV |
d09b1787 IG |
154 | static int do_env_grep(cmd_tbl_t *cmdtp, int flag, |
155 | int argc, char * const argv[]) | |
a000b795 | 156 | { |
5a31ea04 | 157 | char *res = NULL; |
be29df6a | 158 | int len, grep_how, grep_what; |
a000b795 KP |
159 | |
160 | if (argc < 2) | |
4c12eeb8 | 161 | return CMD_RET_USAGE; |
a000b795 | 162 | |
be29df6a WD |
163 | grep_how = H_MATCH_SUBSTR; /* default: substring search */ |
164 | grep_what = H_MATCH_BOTH; /* default: grep names and values */ | |
d87244d5 | 165 | |
9a832331 PA |
166 | while (--argc > 0 && **++argv == '-') { |
167 | char *arg = *argv; | |
d87244d5 WD |
168 | while (*++arg) { |
169 | switch (*arg) { | |
be29df6a WD |
170 | #ifdef CONFIG_REGEX |
171 | case 'e': /* use regex matching */ | |
172 | grep_how = H_MATCH_REGEX; | |
173 | break; | |
174 | #endif | |
d87244d5 | 175 | case 'n': /* grep for name */ |
be29df6a | 176 | grep_what = H_MATCH_KEY; |
d87244d5 WD |
177 | break; |
178 | case 'v': /* grep for value */ | |
be29df6a | 179 | grep_what = H_MATCH_DATA; |
d87244d5 WD |
180 | break; |
181 | case 'b': /* grep for both */ | |
be29df6a | 182 | grep_what = H_MATCH_BOTH; |
d87244d5 WD |
183 | break; |
184 | case '-': | |
185 | goto DONE; | |
186 | default: | |
187 | return CMD_RET_USAGE; | |
188 | } | |
189 | } | |
190 | } | |
191 | ||
192 | DONE: | |
5a31ea04 | 193 | len = hexport_r(&env_htab, '\n', |
be29df6a | 194 | flag | grep_what | grep_how, |
5a31ea04 | 195 | &res, 0, argc, argv); |
a000b795 | 196 | |
5a31ea04 WD |
197 | if (len > 0) { |
198 | puts(res); | |
199 | free(res); | |
a000b795 KP |
200 | } |
201 | ||
5a31ea04 WD |
202 | if (len < 2) |
203 | return 1; | |
204 | ||
205 | return 0; | |
a000b795 KP |
206 | } |
207 | #endif | |
7ac2fe2d | 208 | #endif /* CONFIG_SPL_BUILD */ |
a000b795 | 209 | |
c3f65258 GF |
210 | /* |
211 | * Set a new environment variable, | |
212 | * or replace or delete an existing one. | |
2598090b | 213 | */ |
94b467b1 | 214 | static int _do_env_set(int flag, int argc, char * const argv[], int env_flag) |
c3f65258 GF |
215 | { |
216 | int i, len; | |
217 | char *name, *value, *s; | |
218 | ENTRY e, *ep; | |
219 | ||
24ab5a19 JH |
220 | debug("Initial value for argc=%d\n", argc); |
221 | while (argc > 1 && **(argv + 1) == '-') { | |
222 | char *arg = *++argv; | |
223 | ||
224 | --argc; | |
225 | while (*++arg) { | |
226 | switch (*arg) { | |
227 | case 'f': /* force */ | |
228 | env_flag |= H_FORCE; | |
229 | break; | |
230 | default: | |
231 | return CMD_RET_USAGE; | |
232 | } | |
233 | } | |
234 | } | |
235 | debug("Final value for argc=%d\n", argc); | |
c3f65258 GF |
236 | name = argv[1]; |
237 | value = argv[2]; | |
238 | ||
239 | if (strchr(name, '=')) { | |
240 | printf("## Error: illegal character '='" | |
241 | "in variable name \"%s\"\n", name); | |
242 | return 1; | |
243 | } | |
244 | ||
245 | env_id++; | |
c3f65258 | 246 | |
a68d3ed0 | 247 | /* Delete only ? */ |
d09b1787 | 248 | if (argc < 3 || argv[2] == NULL) { |
24ab5a19 | 249 | int rc = hdelete_r(name, &env_htab, env_flag); |
ea882baf | 250 | return !rc; |
a68d3ed0 WD |
251 | } |
252 | ||
253 | /* | |
ea882baf | 254 | * Insert / replace new value |
a68d3ed0 | 255 | */ |
f3c615b8 | 256 | for (i = 2, len = 0; i < argc; ++i) |
a68d3ed0 | 257 | len += strlen(argv[i]) + 1; |
f3c615b8 ML |
258 | |
259 | value = malloc(len); | |
260 | if (value == NULL) { | |
ea882baf | 261 | printf("## Can't malloc %d bytes\n", len); |
a68d3ed0 WD |
262 | return 1; |
263 | } | |
f3c615b8 | 264 | for (i = 2, s = value; i < argc; ++i) { |
ea882baf | 265 | char *v = argv[i]; |
a68d3ed0 | 266 | |
ea882baf | 267 | while ((*s++ = *v++) != '\0') |
a68d3ed0 | 268 | ; |
d09b1787 | 269 | *(s - 1) = ' '; |
ea882baf WD |
270 | } |
271 | if (s != value) | |
272 | *--s = '\0'; | |
273 | ||
d09b1787 IG |
274 | e.key = name; |
275 | e.data = value; | |
24ab5a19 | 276 | hsearch_r(e, ENTER, &ep, &env_htab, env_flag); |
ea882baf WD |
277 | free(value); |
278 | if (!ep) { | |
279 | printf("## Error inserting \"%s\" variable, errno=%d\n", | |
280 | name, errno); | |
281 | return 1; | |
a68d3ed0 | 282 | } |
a68d3ed0 | 283 | |
a68d3ed0 WD |
284 | return 0; |
285 | } | |
286 | ||
84b5e802 | 287 | int setenv(const char *varname, const char *varvalue) |
a68d3ed0 | 288 | { |
84b5e802 WD |
289 | const char * const argv[4] = { "setenv", varname, varvalue, NULL }; |
290 | ||
a7eb1d66 JH |
291 | /* before import into hashtable */ |
292 | if (!(gd->flags & GD_FLG_ENV_READY)) | |
293 | return 1; | |
294 | ||
d09b1787 | 295 | if (varvalue == NULL || varvalue[0] == '\0') |
94b467b1 | 296 | return _do_env_set(0, 2, (char * const *)argv, H_PROGRAMMATIC); |
9ffd451a | 297 | else |
94b467b1 | 298 | return _do_env_set(0, 3, (char * const *)argv, H_PROGRAMMATIC); |
a68d3ed0 WD |
299 | } |
300 | ||
d67f10ce SG |
301 | /** |
302 | * Set an environment variable to an integer value | |
303 | * | |
9602286d | 304 | * @param varname Environment variable to set |
d67f10ce SG |
305 | * @param value Value to set it to |
306 | * @return 0 if ok, 1 on error | |
307 | */ | |
308 | int setenv_ulong(const char *varname, ulong value) | |
309 | { | |
310 | /* TODO: this should be unsigned */ | |
311 | char *str = simple_itoa(value); | |
312 | ||
313 | return setenv(varname, str); | |
314 | } | |
315 | ||
316 | /** | |
bfc59966 | 317 | * Set an environment variable to an value in hex |
d67f10ce | 318 | * |
9602286d | 319 | * @param varname Environment variable to set |
bfc59966 | 320 | * @param value Value to set it to |
d67f10ce SG |
321 | * @return 0 if ok, 1 on error |
322 | */ | |
bfc59966 | 323 | int setenv_hex(const char *varname, ulong value) |
d67f10ce SG |
324 | { |
325 | char str[17]; | |
326 | ||
bfc59966 | 327 | sprintf(str, "%lx", value); |
d67f10ce SG |
328 | return setenv(varname, str); |
329 | } | |
330 | ||
76b8f79c SG |
331 | ulong getenv_hex(const char *varname, ulong default_val) |
332 | { | |
333 | const char *s; | |
334 | ulong value; | |
335 | char *endp; | |
336 | ||
337 | s = getenv(varname); | |
338 | if (s) | |
339 | value = simple_strtoul(s, &endp, 16); | |
340 | if (!s || endp == s) | |
341 | return default_val; | |
342 | ||
343 | return value; | |
344 | } | |
345 | ||
7ac2fe2d | 346 | #ifndef CONFIG_SPL_BUILD |
088f1b19 | 347 | static int do_env_set(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
a68d3ed0 | 348 | { |
47e26b1b | 349 | if (argc < 2) |
4c12eeb8 | 350 | return CMD_RET_USAGE; |
a68d3ed0 | 351 | |
94b467b1 | 352 | return _do_env_set(flag, argc, argv, H_INTERACTIVE); |
a68d3ed0 WD |
353 | } |
354 | ||
ea882baf | 355 | /* |
a68d3ed0 WD |
356 | * Prompt for environment variable |
357 | */ | |
c76fe474 | 358 | #if defined(CONFIG_CMD_ASKENV) |
f3c615b8 | 359 | int do_env_ask(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
a68d3ed0 | 360 | { |
6d0f6bcf | 361 | char message[CONFIG_SYS_CBSIZE]; |
7d85591d | 362 | int i, len, pos, size; |
a68d3ed0 | 363 | char *local_args[4]; |
7d85591d | 364 | char *endptr; |
a68d3ed0 WD |
365 | |
366 | local_args[0] = argv[0]; | |
367 | local_args[1] = argv[1]; | |
368 | local_args[2] = NULL; | |
369 | local_args[3] = NULL; | |
370 | ||
7d85591d WD |
371 | /* |
372 | * Check the syntax: | |
373 | * | |
374 | * env_ask envname [message1 ...] [size] | |
375 | */ | |
376 | if (argc == 1) | |
4c12eeb8 | 377 | return CMD_RET_USAGE; |
a68d3ed0 | 378 | |
7d85591d WD |
379 | /* |
380 | * We test the last argument if it can be converted | |
381 | * into a decimal number. If yes, we assume it's | |
382 | * the size. Otherwise we echo it as part of the | |
383 | * message. | |
384 | */ | |
385 | i = simple_strtoul(argv[argc - 1], &endptr, 10); | |
386 | if (*endptr != '\0') { /* no size */ | |
387 | size = CONFIG_SYS_CBSIZE - 1; | |
388 | } else { /* size given */ | |
389 | size = i; | |
390 | --argc; | |
391 | } | |
a68d3ed0 | 392 | |
7d85591d WD |
393 | if (argc <= 2) { |
394 | sprintf(message, "Please enter '%s': ", argv[1]); | |
395 | } else { | |
396 | /* env_ask envname message1 ... messagen [size] */ | |
397 | for (i = 2, pos = 0; i < argc; i++) { | |
f3c615b8 | 398 | if (pos) |
a68d3ed0 | 399 | message[pos++] = ' '; |
f3c615b8 | 400 | |
d09b1787 | 401 | strcpy(message + pos, argv[i]); |
a68d3ed0 WD |
402 | pos += strlen(argv[i]); |
403 | } | |
7d85591d | 404 | message[pos++] = ' '; |
a68d3ed0 | 405 | message[pos] = '\0'; |
a68d3ed0 WD |
406 | } |
407 | ||
6d0f6bcf JCPV |
408 | if (size >= CONFIG_SYS_CBSIZE) |
409 | size = CONFIG_SYS_CBSIZE - 1; | |
a68d3ed0 WD |
410 | |
411 | if (size <= 0) | |
412 | return 1; | |
413 | ||
414 | /* prompt for input */ | |
e1bf824d | 415 | len = cli_readline(message); |
a68d3ed0 WD |
416 | |
417 | if (size < len) | |
418 | console_buffer[size] = '\0'; | |
419 | ||
420 | len = 2; | |
421 | if (console_buffer[0] != '\0') { | |
422 | local_args[2] = console_buffer; | |
423 | len = 3; | |
424 | } | |
425 | ||
426 | /* Continue calling setenv code */ | |
94b467b1 | 427 | return _do_env_set(flag, len, local_args, H_INTERACTIVE); |
a68d3ed0 | 428 | } |
90253178 | 429 | #endif |
a68d3ed0 | 430 | |
5e2b3e0c | 431 | #if defined(CONFIG_CMD_ENV_CALLBACK) |
cca98fd6 JH |
432 | static int print_static_binding(const char *var_name, const char *callback_name, |
433 | void *priv) | |
5e2b3e0c JH |
434 | { |
435 | printf("\t%-20s %-20s\n", var_name, callback_name); | |
436 | ||
437 | return 0; | |
438 | } | |
439 | ||
440 | static int print_active_callback(ENTRY *entry) | |
441 | { | |
442 | struct env_clbk_tbl *clbkp; | |
443 | int i; | |
444 | int num_callbacks; | |
445 | ||
446 | if (entry->callback == NULL) | |
447 | return 0; | |
448 | ||
449 | /* look up the callback in the linker-list */ | |
450 | num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk); | |
451 | for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk); | |
452 | i < num_callbacks; | |
453 | i++, clbkp++) { | |
454 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) | |
455 | if (entry->callback == clbkp->callback + gd->reloc_off) | |
456 | #else | |
457 | if (entry->callback == clbkp->callback) | |
458 | #endif | |
459 | break; | |
460 | } | |
461 | ||
462 | if (i == num_callbacks) | |
463 | /* this should probably never happen, but just in case... */ | |
464 | printf("\t%-20s %p\n", entry->key, entry->callback); | |
465 | else | |
466 | printf("\t%-20s %-20s\n", entry->key, clbkp->name); | |
467 | ||
468 | return 0; | |
469 | } | |
470 | ||
471 | /* | |
472 | * Print the callbacks available and what they are bound to | |
473 | */ | |
474 | int do_env_callback(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) | |
475 | { | |
476 | struct env_clbk_tbl *clbkp; | |
477 | int i; | |
478 | int num_callbacks; | |
479 | ||
480 | /* Print the available callbacks */ | |
481 | puts("Available callbacks:\n"); | |
482 | puts("\tCallback Name\n"); | |
483 | puts("\t-------------\n"); | |
484 | num_callbacks = ll_entry_count(struct env_clbk_tbl, env_clbk); | |
485 | for (i = 0, clbkp = ll_entry_start(struct env_clbk_tbl, env_clbk); | |
486 | i < num_callbacks; | |
487 | i++, clbkp++) | |
488 | printf("\t%s\n", clbkp->name); | |
489 | puts("\n"); | |
490 | ||
491 | /* Print the static bindings that may exist */ | |
492 | puts("Static callback bindings:\n"); | |
493 | printf("\t%-20s %-20s\n", "Variable Name", "Callback Name"); | |
494 | printf("\t%-20s %-20s\n", "-------------", "-------------"); | |
cca98fd6 | 495 | env_attr_walk(ENV_CALLBACK_LIST_STATIC, print_static_binding, NULL); |
5e2b3e0c JH |
496 | puts("\n"); |
497 | ||
498 | /* walk through each variable and print the callback if it has one */ | |
499 | puts("Active callback bindings:\n"); | |
500 | printf("\t%-20s %-20s\n", "Variable Name", "Callback Name"); | |
501 | printf("\t%-20s %-20s\n", "-------------", "-------------"); | |
502 | hwalk_r(&env_htab, print_active_callback); | |
503 | return 0; | |
504 | } | |
505 | #endif | |
506 | ||
fffad71b | 507 | #if defined(CONFIG_CMD_ENV_FLAGS) |
cca98fd6 JH |
508 | static int print_static_flags(const char *var_name, const char *flags, |
509 | void *priv) | |
fffad71b JH |
510 | { |
511 | enum env_flags_vartype type = env_flags_parse_vartype(flags); | |
267541f7 | 512 | enum env_flags_varaccess access = env_flags_parse_varaccess(flags); |
fffad71b | 513 | |
267541f7 JH |
514 | printf("\t%-20s %-20s %-20s\n", var_name, |
515 | env_flags_get_vartype_name(type), | |
516 | env_flags_get_varaccess_name(access)); | |
fffad71b JH |
517 | |
518 | return 0; | |
519 | } | |
520 | ||
521 | static int print_active_flags(ENTRY *entry) | |
522 | { | |
523 | enum env_flags_vartype type; | |
267541f7 | 524 | enum env_flags_varaccess access; |
fffad71b JH |
525 | |
526 | if (entry->flags == 0) | |
527 | return 0; | |
528 | ||
529 | type = (enum env_flags_vartype) | |
530 | (entry->flags & ENV_FLAGS_VARTYPE_BIN_MASK); | |
267541f7 JH |
531 | access = env_flags_parse_varaccess_from_binflags(entry->flags); |
532 | printf("\t%-20s %-20s %-20s\n", entry->key, | |
533 | env_flags_get_vartype_name(type), | |
534 | env_flags_get_varaccess_name(access)); | |
fffad71b JH |
535 | |
536 | return 0; | |
537 | } | |
538 | ||
539 | /* | |
540 | * Print the flags available and what variables have flags | |
541 | */ | |
542 | int do_env_flags(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) | |
543 | { | |
544 | /* Print the available variable types */ | |
545 | printf("Available variable type flags (position %d):\n", | |
546 | ENV_FLAGS_VARTYPE_LOC); | |
547 | puts("\tFlag\tVariable Type Name\n"); | |
548 | puts("\t----\t------------------\n"); | |
549 | env_flags_print_vartypes(); | |
550 | puts("\n"); | |
551 | ||
267541f7 JH |
552 | /* Print the available variable access types */ |
553 | printf("Available variable access flags (position %d):\n", | |
554 | ENV_FLAGS_VARACCESS_LOC); | |
555 | puts("\tFlag\tVariable Access Name\n"); | |
556 | puts("\t----\t--------------------\n"); | |
557 | env_flags_print_varaccess(); | |
558 | puts("\n"); | |
559 | ||
fffad71b JH |
560 | /* Print the static flags that may exist */ |
561 | puts("Static flags:\n"); | |
267541f7 JH |
562 | printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type", |
563 | "Variable Access"); | |
564 | printf("\t%-20s %-20s %-20s\n", "-------------", "-------------", | |
565 | "---------------"); | |
cca98fd6 | 566 | env_attr_walk(ENV_FLAGS_LIST_STATIC, print_static_flags, NULL); |
fffad71b JH |
567 | puts("\n"); |
568 | ||
569 | /* walk through each variable and print the flags if non-default */ | |
570 | puts("Active flags:\n"); | |
267541f7 JH |
571 | printf("\t%-20s %-20s %-20s\n", "Variable Name", "Variable Type", |
572 | "Variable Access"); | |
573 | printf("\t%-20s %-20s %-20s\n", "-------------", "-------------", | |
574 | "---------------"); | |
fffad71b JH |
575 | hwalk_r(&env_htab, print_active_flags); |
576 | return 0; | |
577 | } | |
578 | #endif | |
579 | ||
ea882baf | 580 | /* |
246c6922 PT |
581 | * Interactively edit an environment variable |
582 | */ | |
583 | #if defined(CONFIG_CMD_EDITENV) | |
088f1b19 KP |
584 | static int do_env_edit(cmd_tbl_t *cmdtp, int flag, int argc, |
585 | char * const argv[]) | |
246c6922 PT |
586 | { |
587 | char buffer[CONFIG_SYS_CBSIZE]; | |
588 | char *init_val; | |
246c6922 | 589 | |
47e26b1b | 590 | if (argc < 2) |
4c12eeb8 | 591 | return CMD_RET_USAGE; |
246c6922 | 592 | |
94b467b1 JH |
593 | /* before import into hashtable */ |
594 | if (!(gd->flags & GD_FLG_ENV_READY)) | |
595 | return 1; | |
596 | ||
246c6922 PT |
597 | /* Set read buffer to initial value or empty sting */ |
598 | init_val = getenv(argv[1]); | |
599 | if (init_val) | |
5d49b4cd | 600 | snprintf(buffer, CONFIG_SYS_CBSIZE, "%s", init_val); |
246c6922 PT |
601 | else |
602 | buffer[0] = '\0'; | |
603 | ||
e1bf824d | 604 | if (cli_readline_into_buffer("edit: ", buffer, 0) < 0) |
18a3cce9 | 605 | return 1; |
246c6922 | 606 | |
94b467b1 JH |
607 | if (buffer[0] == '\0') { |
608 | const char * const _argv[3] = { "setenv", argv[1], NULL }; | |
609 | ||
610 | return _do_env_set(0, 2, (char * const *)_argv, H_INTERACTIVE); | |
611 | } else { | |
612 | const char * const _argv[4] = { "setenv", argv[1], buffer, | |
613 | NULL }; | |
614 | ||
615 | return _do_env_set(0, 3, (char * const *)_argv, H_INTERACTIVE); | |
616 | } | |
246c6922 PT |
617 | } |
618 | #endif /* CONFIG_CMD_EDITENV */ | |
7ac2fe2d | 619 | #endif /* CONFIG_SPL_BUILD */ |
246c6922 | 620 | |
ea882baf | 621 | /* |
a68d3ed0 WD |
622 | * Look up variable from environment, |
623 | * return address of storage for that variable, | |
624 | * or NULL if not found | |
625 | */ | |
84b5e802 | 626 | char *getenv(const char *name) |
a68d3ed0 | 627 | { |
d09b1787 | 628 | if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */ |
ea882baf | 629 | ENTRY e, *ep; |
a68d3ed0 | 630 | |
91a76751 | 631 | WATCHDOG_RESET(); |
2a3cb020 | 632 | |
d09b1787 IG |
633 | e.key = name; |
634 | e.data = NULL; | |
c4e0057f | 635 | hsearch_r(e, FIND, &ep, &env_htab, 0); |
91a76751 | 636 | |
f3c615b8 | 637 | return ep ? ep->data : NULL; |
a68d3ed0 WD |
638 | } |
639 | ||
ea882baf | 640 | /* restricted capabilities before import */ |
ea882baf WD |
641 | if (getenv_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) > 0) |
642 | return (char *)(gd->env_buf); | |
91a76751 | 643 | |
ea882baf | 644 | return NULL; |
a68d3ed0 WD |
645 | } |
646 | ||
ea882baf WD |
647 | /* |
648 | * Look up variable from environment for restricted C runtime env. | |
649 | */ | |
84b5e802 | 650 | int getenv_f(const char *name, char *buf, unsigned len) |
a68d3ed0 WD |
651 | { |
652 | int i, nxt; | |
653 | ||
d09b1787 | 654 | for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) { |
a68d3ed0 WD |
655 | int val, n; |
656 | ||
f3c615b8 ML |
657 | for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) { |
658 | if (nxt >= CONFIG_ENV_SIZE) | |
659 | return -1; | |
a68d3ed0 | 660 | } |
f3c615b8 ML |
661 | |
662 | val = envmatch((uchar *)name, i); | |
663 | if (val < 0) | |
a68d3ed0 | 664 | continue; |
9ed4a958 | 665 | |
a68d3ed0 | 666 | /* found; copy out */ |
f3c615b8 | 667 | for (n = 0; n < len; ++n, ++buf) { |
d09b1787 IG |
668 | *buf = env_get_char(val++); |
669 | if (*buf == '\0') | |
9ed4a958 WD |
670 | return n; |
671 | } | |
672 | ||
673 | if (n) | |
674 | *--buf = '\0'; | |
675 | ||
a02a884b WD |
676 | printf("env_buf [%d bytes] too small for value of \"%s\"\n", |
677 | len, name); | |
9ed4a958 WD |
678 | |
679 | return n; | |
a68d3ed0 | 680 | } |
d09b1787 | 681 | |
f3c615b8 | 682 | return -1; |
a68d3ed0 WD |
683 | } |
684 | ||
4a9b4131 SG |
685 | /** |
686 | * Decode the integer value of an environment variable and return it. | |
687 | * | |
688 | * @param name Name of environemnt variable | |
689 | * @param base Number base to use (normally 10, or 16 for hex) | |
690 | * @param default_val Default value to return if the variable is not | |
691 | * found | |
692 | * @return the decoded value, or default_val if not found | |
693 | */ | |
694 | ulong getenv_ulong(const char *name, int base, ulong default_val) | |
695 | { | |
696 | /* | |
697 | * We can use getenv() here, even before relocation, since the | |
698 | * environment variable value is an integer and thus short. | |
699 | */ | |
700 | const char *str = getenv(name); | |
701 | ||
702 | return str ? simple_strtoul(str, NULL, base) : default_val; | |
703 | } | |
704 | ||
7ac2fe2d | 705 | #ifndef CONFIG_SPL_BUILD |
bdab39d3 | 706 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE) |
088f1b19 KP |
707 | static int do_env_save(cmd_tbl_t *cmdtp, int flag, int argc, |
708 | char * const argv[]) | |
a68d3ed0 | 709 | { |
f3c615b8 | 710 | printf("Saving Environment to %s...\n", env_name_spec); |
a68d3ed0 | 711 | |
f3c615b8 | 712 | return saveenv() ? 1 : 0; |
a68d3ed0 | 713 | } |
8bde7f77 | 714 | |
ba69dc26 | 715 | U_BOOT_CMD( |
ea882baf | 716 | saveenv, 1, 0, do_env_save, |
2fb2604d | 717 | "save environment variables to persistent storage", |
a89c33db | 718 | "" |
ba69dc26 | 719 | ); |
a68d3ed0 | 720 | #endif |
7ac2fe2d | 721 | #endif /* CONFIG_SPL_BUILD */ |
a68d3ed0 WD |
722 | |
723 | ||
ea882baf | 724 | /* |
a68d3ed0 WD |
725 | * Match a name / name=value pair |
726 | * | |
727 | * s1 is either a simple 'name', or a 'name=value' pair. | |
728 | * i2 is the environment index for a 'name2=value2' pair. | |
d09b1787 | 729 | * If the names match, return the index for the value2, else -1. |
a68d3ed0 | 730 | */ |
f3c615b8 | 731 | int envmatch(uchar *s1, int i2) |
a68d3ed0 | 732 | { |
586197df JH |
733 | if (s1 == NULL) |
734 | return -1; | |
735 | ||
a68d3ed0 WD |
736 | while (*s1 == env_get_char(i2++)) |
737 | if (*s1++ == '=') | |
f3c615b8 | 738 | return i2; |
d09b1787 | 739 | |
a68d3ed0 | 740 | if (*s1 == '\0' && env_get_char(i2-1) == '=') |
f3c615b8 | 741 | return i2; |
d09b1787 | 742 | |
f3c615b8 | 743 | return -1; |
a68d3ed0 | 744 | } |
8bde7f77 | 745 | |
7ac2fe2d | 746 | #ifndef CONFIG_SPL_BUILD |
b64b7c3d | 747 | static int do_env_default(cmd_tbl_t *cmdtp, int __flag, |
d09b1787 | 748 | int argc, char * const argv[]) |
ea882baf | 749 | { |
b64b7c3d | 750 | int all = 0, flag = 0; |
f3c615b8 | 751 | |
b64b7c3d GF |
752 | debug("Initial value for argc=%d\n", argc); |
753 | while (--argc > 0 && **++argv == '-') { | |
754 | char *arg = *argv; | |
755 | ||
756 | while (*++arg) { | |
757 | switch (*arg) { | |
758 | case 'a': /* default all */ | |
759 | all = 1; | |
760 | break; | |
761 | case 'f': /* force */ | |
762 | flag |= H_FORCE; | |
763 | break; | |
764 | default: | |
765 | return cmd_usage(cmdtp); | |
766 | } | |
767 | } | |
768 | } | |
769 | debug("Final value for argc=%d\n", argc); | |
770 | if (all && (argc == 0)) { | |
771 | /* Reset the whole environment */ | |
772 | set_default_env("## Resetting to default environment\n"); | |
773 | return 0; | |
774 | } | |
775 | if (!all && (argc > 0)) { | |
776 | /* Reset individual variables */ | |
777 | set_default_vars(argc, argv); | |
778 | return 0; | |
779 | } | |
780 | ||
781 | return cmd_usage(cmdtp); | |
ea882baf WD |
782 | } |
783 | ||
d09b1787 IG |
784 | static int do_env_delete(cmd_tbl_t *cmdtp, int flag, |
785 | int argc, char * const argv[]) | |
ea882baf | 786 | { |
9d8d661d JH |
787 | int env_flag = H_INTERACTIVE; |
788 | int ret = 0; | |
789 | ||
790 | debug("Initial value for argc=%d\n", argc); | |
791 | while (argc > 1 && **(argv + 1) == '-') { | |
792 | char *arg = *++argv; | |
793 | ||
794 | --argc; | |
795 | while (*++arg) { | |
796 | switch (*arg) { | |
797 | case 'f': /* force */ | |
798 | env_flag |= H_FORCE; | |
799 | break; | |
800 | default: | |
801 | return CMD_RET_USAGE; | |
802 | } | |
803 | } | |
804 | } | |
805 | debug("Final value for argc=%d\n", argc); | |
806 | ||
807 | env_id++; | |
808 | ||
809 | while (--argc > 0) { | |
810 | char *name = *++argv; | |
811 | ||
812 | if (!hdelete_r(name, &env_htab, env_flag)) | |
813 | ret = 1; | |
814 | } | |
815 | ||
816 | return ret; | |
ea882baf WD |
817 | } |
818 | ||
0c79cda0 | 819 | #ifdef CONFIG_CMD_EXPORTENV |
ea882baf | 820 | /* |
37f2fe74 | 821 | * env export [-t | -b | -c] [-s size] addr [var ...] |
ea882baf WD |
822 | * -t: export as text format; if size is given, data will be |
823 | * padded with '\0' bytes; if not, one terminating '\0' | |
824 | * will be added (which is included in the "filesize" | |
825 | * setting so you can for exmple copy this to flash and | |
826 | * keep the termination). | |
827 | * -b: export as binary format (name=value pairs separated by | |
828 | * '\0', list end marked by double "\0\0") | |
829 | * -c: export as checksum protected environment format as | |
830 | * used for example by "saveenv" command | |
37f2fe74 WD |
831 | * -s size: |
832 | * size of output buffer | |
ea882baf | 833 | * addr: memory address where environment gets stored |
37f2fe74 WD |
834 | * var... List of variable names that get included into the |
835 | * export. Without arguments, the whole environment gets | |
836 | * exported. | |
ea882baf WD |
837 | * |
838 | * With "-c" and size is NOT given, then the export command will | |
839 | * format the data as currently used for the persistent storage, | |
840 | * i. e. it will use CONFIG_ENV_SECT_SIZE as output block size and | |
841 | * prepend a valid CRC32 checksum and, in case of resundant | |
842 | * environment, a "current" redundancy flag. If size is given, this | |
843 | * value will be used instead of CONFIG_ENV_SECT_SIZE; again, CRC32 | |
844 | * checksum and redundancy flag will be inserted. | |
845 | * | |
846 | * With "-b" and "-t", always only the real data (including a | |
847 | * terminating '\0' byte) will be written; here the optional size | |
848 | * argument will be used to make sure not to overflow the user | |
849 | * provided buffer; the command will abort if the size is not | |
850 | * sufficient. Any remainign space will be '\0' padded. | |
851 | * | |
852 | * On successful return, the variable "filesize" will be set. | |
853 | * Note that filesize includes the trailing/terminating '\0' byte(s). | |
854 | * | |
855 | * Usage szenario: create a text snapshot/backup of the current settings: | |
856 | * | |
857 | * => env export -t 100000 | |
858 | * => era ${backup_addr} +${filesize} | |
859 | * => cp.b 100000 ${backup_addr} ${filesize} | |
860 | * | |
861 | * Re-import this snapshot, deleting all other settings: | |
862 | * | |
863 | * => env import -d -t ${backup_addr} | |
864 | */ | |
d09b1787 IG |
865 | static int do_env_export(cmd_tbl_t *cmdtp, int flag, |
866 | int argc, char * const argv[]) | |
ea882baf WD |
867 | { |
868 | char buf[32]; | |
fd37dac9 SG |
869 | ulong addr; |
870 | char *ptr, *cmd, *res; | |
37f2fe74 | 871 | size_t size = 0; |
ea882baf WD |
872 | ssize_t len; |
873 | env_t *envp; | |
874 | char sep = '\n'; | |
875 | int chk = 0; | |
876 | int fmt = 0; | |
877 | ||
878 | cmd = *argv; | |
879 | ||
880 | while (--argc > 0 && **++argv == '-') { | |
881 | char *arg = *argv; | |
882 | while (*++arg) { | |
883 | switch (*arg) { | |
884 | case 'b': /* raw binary format */ | |
885 | if (fmt++) | |
886 | goto sep_err; | |
887 | sep = '\0'; | |
888 | break; | |
889 | case 'c': /* external checksum format */ | |
890 | if (fmt++) | |
891 | goto sep_err; | |
892 | sep = '\0'; | |
893 | chk = 1; | |
894 | break; | |
37f2fe74 WD |
895 | case 's': /* size given */ |
896 | if (--argc <= 0) | |
897 | return cmd_usage(cmdtp); | |
898 | size = simple_strtoul(*++argv, NULL, 16); | |
899 | goto NXTARG; | |
ea882baf WD |
900 | case 't': /* text format */ |
901 | if (fmt++) | |
902 | goto sep_err; | |
903 | sep = '\n'; | |
904 | break; | |
905 | default: | |
4c12eeb8 | 906 | return CMD_RET_USAGE; |
ea882baf WD |
907 | } |
908 | } | |
37f2fe74 | 909 | NXTARG: ; |
ea882baf WD |
910 | } |
911 | ||
f3c615b8 | 912 | if (argc < 1) |
4c12eeb8 | 913 | return CMD_RET_USAGE; |
8bde7f77 | 914 | |
fd37dac9 SG |
915 | addr = simple_strtoul(argv[0], NULL, 16); |
916 | ptr = map_sysmem(addr, size); | |
ea882baf | 917 | |
37f2fe74 | 918 | if (size) |
fd37dac9 | 919 | memset(ptr, '\0', size); |
37f2fe74 WD |
920 | |
921 | argc--; | |
922 | argv++; | |
ea882baf WD |
923 | |
924 | if (sep) { /* export as text file */ | |
ea009d47 WD |
925 | len = hexport_r(&env_htab, sep, |
926 | H_MATCH_KEY | H_MATCH_IDENT, | |
fd37dac9 | 927 | &ptr, size, argc, argv); |
ea882baf | 928 | if (len < 0) { |
d09b1787 | 929 | error("Cannot export environment: errno = %d\n", errno); |
ea882baf WD |
930 | return 1; |
931 | } | |
8c3aff52 | 932 | sprintf(buf, "%zX", (size_t)len); |
ea882baf WD |
933 | setenv("filesize", buf); |
934 | ||
935 | return 0; | |
936 | } | |
937 | ||
fd37dac9 | 938 | envp = (env_t *)ptr; |
ea882baf WD |
939 | |
940 | if (chk) /* export as checksum protected block */ | |
941 | res = (char *)envp->data; | |
942 | else /* export as raw binary data */ | |
fd37dac9 | 943 | res = ptr; |
ea882baf | 944 | |
ea009d47 WD |
945 | len = hexport_r(&env_htab, '\0', |
946 | H_MATCH_KEY | H_MATCH_IDENT, | |
947 | &res, ENV_SIZE, argc, argv); | |
ea882baf | 948 | if (len < 0) { |
d09b1787 | 949 | error("Cannot export environment: errno = %d\n", errno); |
ea882baf WD |
950 | return 1; |
951 | } | |
952 | ||
953 | if (chk) { | |
d09b1787 | 954 | envp->crc = crc32(0, envp->data, ENV_SIZE); |
ea882baf WD |
955 | #ifdef CONFIG_ENV_ADDR_REDUND |
956 | envp->flags = ACTIVE_FLAG; | |
957 | #endif | |
958 | } | |
41ef372c | 959 | setenv_hex("filesize", len + offsetof(env_t, data)); |
ea882baf WD |
960 | |
961 | return 0; | |
962 | ||
963 | sep_err: | |
d09b1787 | 964 | printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", cmd); |
ea882baf WD |
965 | return 1; |
966 | } | |
0c79cda0 | 967 | #endif |
ea882baf | 968 | |
0c79cda0 | 969 | #ifdef CONFIG_CMD_IMPORTENV |
ea882baf | 970 | /* |
ecd1446f | 971 | * env import [-d] [-t [-r] | -b | -c] addr [size] |
ea882baf WD |
972 | * -d: delete existing environment before importing; |
973 | * otherwise overwrite / append to existion definitions | |
974 | * -t: assume text format; either "size" must be given or the | |
975 | * text data must be '\0' terminated | |
ecd1446f AH |
976 | * -r: handle CRLF like LF, that means exported variables with |
977 | * a content which ends with \r won't get imported. Used | |
978 | * to import text files created with editors which are using CRLF | |
979 | * for line endings. Only effective in addition to -t. | |
ea882baf WD |
980 | * -b: assume binary format ('\0' separated, "\0\0" terminated) |
981 | * -c: assume checksum protected environment format | |
982 | * addr: memory address to read from | |
983 | * size: length of input data; if missing, proper '\0' | |
984 | * termination is mandatory | |
985 | */ | |
d09b1787 IG |
986 | static int do_env_import(cmd_tbl_t *cmdtp, int flag, |
987 | int argc, char * const argv[]) | |
ea882baf | 988 | { |
fd37dac9 SG |
989 | ulong addr; |
990 | char *cmd, *ptr; | |
ea882baf WD |
991 | char sep = '\n'; |
992 | int chk = 0; | |
993 | int fmt = 0; | |
994 | int del = 0; | |
ecd1446f | 995 | int crlf_is_lf = 0; |
ea882baf WD |
996 | size_t size; |
997 | ||
998 | cmd = *argv; | |
999 | ||
1000 | while (--argc > 0 && **++argv == '-') { | |
1001 | char *arg = *argv; | |
1002 | while (*++arg) { | |
1003 | switch (*arg) { | |
1004 | case 'b': /* raw binary format */ | |
1005 | if (fmt++) | |
1006 | goto sep_err; | |
1007 | sep = '\0'; | |
1008 | break; | |
1009 | case 'c': /* external checksum format */ | |
1010 | if (fmt++) | |
1011 | goto sep_err; | |
1012 | sep = '\0'; | |
1013 | chk = 1; | |
1014 | break; | |
1015 | case 't': /* text format */ | |
1016 | if (fmt++) | |
1017 | goto sep_err; | |
1018 | sep = '\n'; | |
1019 | break; | |
ecd1446f AH |
1020 | case 'r': /* handle CRLF like LF */ |
1021 | crlf_is_lf = 1; | |
1022 | break; | |
ea882baf WD |
1023 | case 'd': |
1024 | del = 1; | |
1025 | break; | |
1026 | default: | |
4c12eeb8 | 1027 | return CMD_RET_USAGE; |
ea882baf WD |
1028 | } |
1029 | } | |
1030 | } | |
1031 | ||
f3c615b8 | 1032 | if (argc < 1) |
4c12eeb8 | 1033 | return CMD_RET_USAGE; |
ea882baf WD |
1034 | |
1035 | if (!fmt) | |
1036 | printf("## Warning: defaulting to text format\n"); | |
1037 | ||
ecd1446f AH |
1038 | if (sep != '\n' && crlf_is_lf ) |
1039 | crlf_is_lf = 0; | |
1040 | ||
fd37dac9 SG |
1041 | addr = simple_strtoul(argv[0], NULL, 16); |
1042 | ptr = map_sysmem(addr, 0); | |
ea882baf WD |
1043 | |
1044 | if (argc == 2) { | |
1045 | size = simple_strtoul(argv[1], NULL, 16); | |
3775dcd9 TR |
1046 | } else if (argc == 1 && chk) { |
1047 | puts("## Error: external checksum format must pass size\n"); | |
1048 | return CMD_RET_FAILURE; | |
ea882baf | 1049 | } else { |
fd37dac9 | 1050 | char *s = ptr; |
ea882baf WD |
1051 | |
1052 | size = 0; | |
1053 | ||
1054 | while (size < MAX_ENV_SIZE) { | |
1055 | if ((*s == sep) && (*(s+1) == '\0')) | |
1056 | break; | |
1057 | ++s; | |
1058 | ++size; | |
1059 | } | |
1060 | if (size == MAX_ENV_SIZE) { | |
1061 | printf("## Warning: Input data exceeds %d bytes" | |
1062 | " - truncated\n", MAX_ENV_SIZE); | |
1063 | } | |
d3f80c77 | 1064 | size += 2; |
79afc88d | 1065 | printf("## Info: input data size = %zu = 0x%zX\n", size, size); |
ea882baf WD |
1066 | } |
1067 | ||
1068 | if (chk) { | |
1069 | uint32_t crc; | |
fd37dac9 | 1070 | env_t *ep = (env_t *)ptr; |
ea882baf WD |
1071 | |
1072 | size -= offsetof(env_t, data); | |
1073 | memcpy(&crc, &ep->crc, sizeof(crc)); | |
1074 | ||
1075 | if (crc32(0, ep->data, size) != crc) { | |
1076 | puts("## Error: bad CRC, import failed\n"); | |
1077 | return 1; | |
1078 | } | |
fd37dac9 | 1079 | ptr = (char *)ep->data; |
ea882baf WD |
1080 | } |
1081 | ||
ecd1446f AH |
1082 | if (himport_r(&env_htab, ptr, size, sep, del ? 0 : H_NOCLEAR, |
1083 | crlf_is_lf, 0, NULL) == 0) { | |
ea882baf WD |
1084 | error("Environment import failed: errno = %d\n", errno); |
1085 | return 1; | |
1086 | } | |
1087 | gd->flags |= GD_FLG_ENV_READY; | |
1088 | ||
1089 | return 0; | |
1090 | ||
1091 | sep_err: | |
1092 | printf("## %s: only one of \"-b\", \"-c\" or \"-t\" allowed\n", | |
1093 | cmd); | |
1094 | return 1; | |
1095 | } | |
0c79cda0 | 1096 | #endif |
ea882baf | 1097 | |
88733e2c AR |
1098 | #if defined(CONFIG_CMD_ENV_EXISTS) |
1099 | static int do_env_exists(cmd_tbl_t *cmdtp, int flag, int argc, | |
1100 | char * const argv[]) | |
1101 | { | |
1102 | ENTRY e, *ep; | |
1103 | ||
1104 | if (argc < 2) | |
1105 | return CMD_RET_USAGE; | |
1106 | ||
1107 | e.key = argv[1]; | |
1108 | e.data = NULL; | |
1109 | hsearch_r(e, FIND, &ep, &env_htab, 0); | |
1110 | ||
1111 | return (ep == NULL) ? 1 : 0; | |
1112 | } | |
1113 | #endif | |
1114 | ||
ea882baf WD |
1115 | /* |
1116 | * New command line interface: "env" command with subcommands | |
1117 | */ | |
1118 | static cmd_tbl_t cmd_env_sub[] = { | |
1119 | #if defined(CONFIG_CMD_ASKENV) | |
1120 | U_BOOT_CMD_MKENT(ask, CONFIG_SYS_MAXARGS, 1, do_env_ask, "", ""), | |
1121 | #endif | |
1122 | U_BOOT_CMD_MKENT(default, 1, 0, do_env_default, "", ""), | |
9d8d661d | 1123 | U_BOOT_CMD_MKENT(delete, CONFIG_SYS_MAXARGS, 0, do_env_delete, "", ""), |
ea882baf WD |
1124 | #if defined(CONFIG_CMD_EDITENV) |
1125 | U_BOOT_CMD_MKENT(edit, 2, 0, do_env_edit, "", ""), | |
1126 | #endif | |
5e2b3e0c JH |
1127 | #if defined(CONFIG_CMD_ENV_CALLBACK) |
1128 | U_BOOT_CMD_MKENT(callbacks, 1, 0, do_env_callback, "", ""), | |
1129 | #endif | |
fffad71b JH |
1130 | #if defined(CONFIG_CMD_ENV_FLAGS) |
1131 | U_BOOT_CMD_MKENT(flags, 1, 0, do_env_flags, "", ""), | |
1132 | #endif | |
0c79cda0 | 1133 | #if defined(CONFIG_CMD_EXPORTENV) |
ea882baf | 1134 | U_BOOT_CMD_MKENT(export, 4, 0, do_env_export, "", ""), |
0c79cda0 | 1135 | #endif |
a000b795 KP |
1136 | #if defined(CONFIG_CMD_GREPENV) |
1137 | U_BOOT_CMD_MKENT(grep, CONFIG_SYS_MAXARGS, 1, do_env_grep, "", ""), | |
1138 | #endif | |
0c79cda0 | 1139 | #if defined(CONFIG_CMD_IMPORTENV) |
ea882baf | 1140 | U_BOOT_CMD_MKENT(import, 5, 0, do_env_import, "", ""), |
0c79cda0 | 1141 | #endif |
ea882baf WD |
1142 | U_BOOT_CMD_MKENT(print, CONFIG_SYS_MAXARGS, 1, do_env_print, "", ""), |
1143 | #if defined(CONFIG_CMD_RUN) | |
1144 | U_BOOT_CMD_MKENT(run, CONFIG_SYS_MAXARGS, 1, do_run, "", ""), | |
1145 | #endif | |
1146 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE) | |
1147 | U_BOOT_CMD_MKENT(save, 1, 0, do_env_save, "", ""), | |
1148 | #endif | |
1149 | U_BOOT_CMD_MKENT(set, CONFIG_SYS_MAXARGS, 0, do_env_set, "", ""), | |
88733e2c AR |
1150 | #if defined(CONFIG_CMD_ENV_EXISTS) |
1151 | U_BOOT_CMD_MKENT(exists, 2, 0, do_env_exists, "", ""), | |
1152 | #endif | |
ea882baf WD |
1153 | }; |
1154 | ||
2e5167cc | 1155 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
60f7da1f HS |
1156 | void env_reloc(void) |
1157 | { | |
1158 | fixup_cmdtable(cmd_env_sub, ARRAY_SIZE(cmd_env_sub)); | |
1159 | } | |
1160 | #endif | |
1161 | ||
f3c615b8 | 1162 | static int do_env(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
ea882baf WD |
1163 | { |
1164 | cmd_tbl_t *cp; | |
1165 | ||
5904da02 | 1166 | if (argc < 2) |
4c12eeb8 | 1167 | return CMD_RET_USAGE; |
5904da02 | 1168 | |
ea882baf WD |
1169 | /* drop initial "env" arg */ |
1170 | argc--; | |
1171 | argv++; | |
1172 | ||
1173 | cp = find_cmd_tbl(argv[0], cmd_env_sub, ARRAY_SIZE(cmd_env_sub)); | |
1174 | ||
1175 | if (cp) | |
1176 | return cp->cmd(cmdtp, flag, argc, argv); | |
1177 | ||
4c12eeb8 | 1178 | return CMD_RET_USAGE; |
ea882baf WD |
1179 | } |
1180 | ||
088f1b19 KP |
1181 | #ifdef CONFIG_SYS_LONGHELP |
1182 | static char env_help_text[] = | |
ea882baf WD |
1183 | #if defined(CONFIG_CMD_ASKENV) |
1184 | "ask name [message] [size] - ask for environment variable\nenv " | |
5e2b3e0c JH |
1185 | #endif |
1186 | #if defined(CONFIG_CMD_ENV_CALLBACK) | |
1187 | "callbacks - print callbacks and their associated variables\nenv " | |
ea882baf | 1188 | #endif |
b64b7c3d GF |
1189 | "default [-f] -a - [forcibly] reset default environment\n" |
1190 | "env default [-f] var [...] - [forcibly] reset variable(s) to their default values\n" | |
9d8d661d | 1191 | "env delete [-f] var [...] - [forcibly] delete variable(s)\n" |
ea882baf WD |
1192 | #if defined(CONFIG_CMD_EDITENV) |
1193 | "env edit name - edit environment variable\n" | |
1194 | #endif | |
88733e2c AR |
1195 | #if defined(CONFIG_CMD_ENV_EXISTS) |
1196 | "env exists name - tests for existence of variable\n" | |
1197 | #endif | |
4796bc4b | 1198 | #if defined(CONFIG_CMD_EXPORTENV) |
37f2fe74 | 1199 | "env export [-t | -b | -c] [-s size] addr [var ...] - export environment\n" |
4796bc4b | 1200 | #endif |
fffad71b JH |
1201 | #if defined(CONFIG_CMD_ENV_FLAGS) |
1202 | "env flags - print variables that have non-default flags\n" | |
1203 | #endif | |
a000b795 | 1204 | #if defined(CONFIG_CMD_GREPENV) |
be29df6a WD |
1205 | #ifdef CONFIG_REGEX |
1206 | "env grep [-e] [-n | -v | -b] string [...] - search environment\n" | |
1207 | #else | |
d87244d5 | 1208 | "env grep [-n | -v | -b] string [...] - search environment\n" |
a000b795 | 1209 | #endif |
be29df6a | 1210 | #endif |
4796bc4b | 1211 | #if defined(CONFIG_CMD_IMPORTENV) |
ecd1446f | 1212 | "env import [-d] [-t [-r] | -b | -c] addr [size] - import environment\n" |
4796bc4b | 1213 | #endif |
be11235a | 1214 | "env print [-a | name ...] - print environment\n" |
ea882baf WD |
1215 | #if defined(CONFIG_CMD_RUN) |
1216 | "env run var [...] - run commands in an environment variable\n" | |
1217 | #endif | |
d798a9b5 | 1218 | #if defined(CONFIG_CMD_SAVEENV) && !defined(CONFIG_ENV_IS_NOWHERE) |
ea882baf | 1219 | "env save - save environment\n" |
d798a9b5 | 1220 | #endif |
088f1b19 KP |
1221 | "env set [-f] name [arg ...]\n"; |
1222 | #endif | |
1223 | ||
1224 | U_BOOT_CMD( | |
1225 | env, CONFIG_SYS_MAXARGS, 1, do_env, | |
1226 | "environment handling commands", env_help_text | |
ea882baf WD |
1227 | ); |
1228 | ||
1229 | /* | |
1230 | * Old command line interface, kept for compatibility | |
1231 | */ | |
8bde7f77 | 1232 | |
246c6922 | 1233 | #if defined(CONFIG_CMD_EDITENV) |
722b061b | 1234 | U_BOOT_CMD_COMPLETE( |
ea882baf | 1235 | editenv, 2, 0, do_env_edit, |
246c6922 PT |
1236 | "edit environment variable", |
1237 | "name\n" | |
722b061b MF |
1238 | " - edit environment variable 'name'", |
1239 | var_complete | |
246c6922 PT |
1240 | ); |
1241 | #endif | |
1242 | ||
722b061b | 1243 | U_BOOT_CMD_COMPLETE( |
ea882baf | 1244 | printenv, CONFIG_SYS_MAXARGS, 1, do_env_print, |
2fb2604d | 1245 | "print environment variables", |
be11235a | 1246 | "[-a]\n - print [all] values of all environment variables\n" |
8bde7f77 | 1247 | "printenv name ...\n" |
722b061b MF |
1248 | " - print value of environment variable 'name'", |
1249 | var_complete | |
8bde7f77 WD |
1250 | ); |
1251 | ||
a000b795 KP |
1252 | #ifdef CONFIG_CMD_GREPENV |
1253 | U_BOOT_CMD_COMPLETE( | |
1254 | grepenv, CONFIG_SYS_MAXARGS, 0, do_env_grep, | |
1255 | "search environment variables", | |
be29df6a WD |
1256 | #ifdef CONFIG_REGEX |
1257 | "[-e] [-n | -v | -b] string ...\n" | |
1258 | #else | |
d87244d5 | 1259 | "[-n | -v | -b] string ...\n" |
be29df6a | 1260 | #endif |
d87244d5 | 1261 | " - list environment name=value pairs matching 'string'\n" |
be29df6a WD |
1262 | #ifdef CONFIG_REGEX |
1263 | " \"-e\": enable regular expressions;\n" | |
1264 | #endif | |
d87244d5 WD |
1265 | " \"-n\": search variable names; \"-v\": search values;\n" |
1266 | " \"-b\": search both names and values (default)", | |
a000b795 KP |
1267 | var_complete |
1268 | ); | |
1269 | #endif | |
1270 | ||
722b061b | 1271 | U_BOOT_CMD_COMPLETE( |
ea882baf | 1272 | setenv, CONFIG_SYS_MAXARGS, 0, do_env_set, |
2fb2604d | 1273 | "set environment variables", |
24ab5a19 JH |
1274 | "[-f] name value ...\n" |
1275 | " - [forcibly] set environment variable 'name' to 'value ...'\n" | |
1276 | "setenv [-f] name\n" | |
1277 | " - [forcibly] delete environment variable 'name'", | |
722b061b | 1278 | var_complete |
8bde7f77 WD |
1279 | ); |
1280 | ||
c76fe474 | 1281 | #if defined(CONFIG_CMD_ASKENV) |
8bde7f77 | 1282 | |
0d498393 | 1283 | U_BOOT_CMD( |
ea882baf | 1284 | askenv, CONFIG_SYS_MAXARGS, 1, do_env_ask, |
2fb2604d | 1285 | "get environment variables from stdin", |
8bde7f77 | 1286 | "name [message] [size]\n" |
7d85591d | 1287 | " - get environment variable 'name' from stdin (max 'size' chars)" |
8bde7f77 | 1288 | ); |
90253178 | 1289 | #endif |
8bde7f77 | 1290 | |
c76fe474 | 1291 | #if defined(CONFIG_CMD_RUN) |
722b061b | 1292 | U_BOOT_CMD_COMPLETE( |
6d0f6bcf | 1293 | run, CONFIG_SYS_MAXARGS, 1, do_run, |
2fb2604d | 1294 | "run commands in an environment variable", |
8bde7f77 | 1295 | "var [...]\n" |
722b061b MF |
1296 | " - run the commands in the environment variable(s) 'var'", |
1297 | var_complete | |
8bde7f77 | 1298 | ); |
90253178 | 1299 | #endif |
7ac2fe2d | 1300 | #endif /* CONFIG_SPL_BUILD */ |