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