1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2010
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 #include <bootstage.h>
13 #include <env_internal.h>
16 #include <asm/global_data.h>
17 #include <linux/printk.h>
18 #include <linux/stddef.h>
22 #include <u-boot/crc.h>
23 #include <dm/ofnode.h>
27 DECLARE_GLOBAL_DATA_PTR;
29 /************************************************************************
30 * Default settings to be used when no valid environment is found
32 #include <env_default.h>
34 struct hsearch_data env_htab = {
35 .change_ok = env_flags_validate,
39 * This variable is incremented each time we set an environment variable so we
40 * can be check via env_get_id() to see if the environment has changed or not.
41 * This makes it possible to reread an environment variable only if the
42 * environment was changed, typically used by networking code.
44 static int env_id = 1;
56 int env_do_env_set(int flag, int argc, char *const argv[], int env_flag)
59 char *name, *value, *s;
60 struct env_entry e, *ep;
62 debug("Initial value for argc=%d\n", argc);
64 #if !IS_ENABLED(CONFIG_SPL_BUILD) && IS_ENABLED(CONFIG_CMD_NVEDIT_EFI)
65 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'e')
66 return do_env_set_efi(NULL, flag, --argc, ++argv);
69 while (argc > 1 && **(argv + 1) == '-') {
83 debug("Final value for argc=%d\n", argc);
86 if (strchr(name, '=')) {
87 printf("## Error: illegal character '=' "
88 "in variable name \"%s\"\n", name);
95 if (argc < 3 || argv[2] == NULL) {
96 int rc = hdelete_r(name, &env_htab, env_flag);
98 /* If the variable didn't exist, don't report an error */
99 return rc && rc != -ENOENT ? 1 : 0;
103 * Insert / replace new value
105 for (i = 2, len = 0; i < argc; ++i)
106 len += strlen(argv[i]) + 1;
110 printf("## Can't malloc %d bytes\n", len);
113 for (i = 2, s = value; i < argc; ++i) {
116 while ((*s++ = *v++) != '\0')
125 hsearch_r(e, ENV_ENTER, &ep, &env_htab, env_flag);
128 printf("## Error inserting \"%s\" variable, errno=%d\n",
136 int env_set(const char *varname, const char *varvalue)
138 const char * const argv[4] = { "setenv", varname, varvalue, NULL };
140 /* before import into hashtable */
141 if (!(gd->flags & GD_FLG_ENV_READY))
144 if (varvalue == NULL || varvalue[0] == '\0')
145 return env_do_env_set(0, 2, (char * const *)argv, H_PROGRAMMATIC);
147 return env_do_env_set(0, 3, (char * const *)argv, H_PROGRAMMATIC);
151 * Set an environment variable to an integer value
153 * @param varname Environment variable to set
154 * @param value Value to set it to
155 * Return: 0 if ok, 1 on error
157 int env_set_ulong(const char *varname, ulong value)
159 /* TODO: this should be unsigned */
160 char *str = simple_itoa(value);
162 return env_set(varname, str);
166 * Set an environment variable to an value in hex
168 * @param varname Environment variable to set
169 * @param value Value to set it to
170 * Return: 0 if ok, 1 on error
172 int env_set_hex(const char *varname, ulong value)
176 sprintf(str, "%lx", value);
177 return env_set(varname, str);
180 ulong env_get_hex(const char *varname, ulong default_val)
186 s = env_get(varname);
188 value = hextoul(s, &endp);
195 int eth_env_get_enetaddr(const char *name, uint8_t *enetaddr)
197 string_to_enetaddr(env_get(name), enetaddr);
198 return is_valid_ethaddr(enetaddr);
201 int eth_env_set_enetaddr(const char *name, const uint8_t *enetaddr)
203 char buf[ARP_HLEN_ASCII + 1];
205 if (eth_env_get_enetaddr(name, (uint8_t *)buf))
208 sprintf(buf, "%pM", enetaddr);
210 return env_set(name, buf);
214 * Look up variable from environment,
215 * return address of storage for that variable,
216 * or NULL if not found
218 char *env_get(const char *name)
220 if (gd->flags & GD_FLG_ENV_READY) { /* after import into hashtable */
221 struct env_entry e, *ep;
227 hsearch_r(e, ENV_FIND, &ep, &env_htab, 0);
229 return ep ? ep->data : NULL;
232 /* restricted capabilities before import */
233 if (env_get_f(name, (char *)(gd->env_buf), sizeof(gd->env_buf)) >= 0)
234 return (char *)(gd->env_buf);
240 * Like env_get, but prints an error if envvar isn't defined in the
241 * environment. It always returns what env_get does, so it can be used in
242 * place of env_get without changing error handling otherwise.
244 char *from_env(const char *envvar)
248 ret = env_get(envvar);
251 printf("missing environment variable: %s\n", envvar);
256 static int env_get_from_linear(const char *env, const char *name, char *buf,
262 if (name == NULL || *name == '\0')
265 name_len = strlen(name);
267 for (p = env; *p != '\0'; p = end + 1) {
271 for (end = p; *end != '\0'; ++end)
272 if (end - env >= CONFIG_ENV_SIZE)
275 if (strncmp(name, p, name_len) || p[name_len] != '=')
277 value = &p[name_len + 1];
280 memcpy(buf, value, min(len, res + 1));
284 printf("env_buf [%u bytes] too small for value of \"%s\"\n",
295 * Look up variable from environment for restricted C runtime env.
297 int env_get_f(const char *name, char *buf, unsigned len)
301 if (gd->env_valid == ENV_INVALID)
302 env = default_environment;
304 env = (const char *)gd->env_addr;
306 return env_get_from_linear(env, name, buf, len);
310 * Decode the integer value of an environment variable and return it.
312 * @param name Name of environment variable
313 * @param base Number base to use (normally 10, or 16 for hex)
314 * @param default_val Default value to return if the variable is not
316 * Return: the decoded value, or default_val if not found
318 ulong env_get_ulong(const char *name, int base, ulong default_val)
321 * We can use env_get() here, even before relocation, since the
322 * environment variable value is an integer and thus short.
324 const char *str = env_get(name);
326 return str ? simple_strtoul(str, NULL, base) : default_val;
330 * Read an environment variable as a boolean
331 * Return -1 if variable does not exist (default to true)
333 int env_get_yesno(const char *var)
335 char *s = env_get(var);
339 return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ?
343 bool env_get_autostart(void)
345 return env_get_yesno("autostart") == 1;
349 * Look up the variable from the default environment
351 char *env_get_default(const char *name)
355 ret = env_get_default_into(name, (char *)(gd->env_buf),
356 sizeof(gd->env_buf));
358 return (char *)(gd->env_buf);
364 * Look up the variable from the default environment and store its value in buf
366 int env_get_default_into(const char *name, char *buf, unsigned int len)
368 return env_get_from_linear(default_environment, name, buf, len);
371 void env_set_default(const char *s, int flags)
374 if ((flags & H_INTERACTIVE) == 0) {
375 printf("*** Warning - %s, "
376 "using default environment\n\n", s);
381 debug("Using default environment\n");
385 if (himport_r(&env_htab, default_environment,
386 sizeof(default_environment), '\0', flags, 0,
388 pr_err("## Error: Environment import failed: errno = %d\n",
393 gd->flags |= GD_FLG_ENV_READY;
394 gd->flags |= GD_FLG_ENV_DEFAULT;
397 /* [re]set individual variables to their value in the default environment */
398 int env_set_default_vars(int nvars, char * const vars[], int flags)
401 * Special use-case: import from default environment
402 * (and use \0 as a separator)
406 * When vars are passed remove variables that are not in
407 * the default environment.
413 return himport_r(&env_htab, default_environment,
414 sizeof(default_environment), '\0',
415 flags, 0, nvars, vars);
419 * Check if CRC is valid and (if yes) import the environment.
420 * Note that "buf" may or may not be aligned.
422 int env_import(const char *buf, int check, int flags)
424 env_t *ep = (env_t *)buf;
429 memcpy(&crc, &ep->crc, sizeof(crc));
431 if (crc32(0, ep->data, ENV_SIZE) != crc) {
432 env_set_default("bad CRC", 0);
433 return -ENOMSG; /* needed for env_load() */
437 if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', flags, 0,
439 gd->flags |= GD_FLG_ENV_READY;
443 pr_err("Cannot import environment: errno = %d\n", errno);
445 env_set_default("import failed", 0);
450 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
451 static unsigned char env_flags;
453 int env_check_redund(const char *buf1, int buf1_read_fail,
454 const char *buf2, int buf2_read_fail)
456 int crc1_ok = 0, crc2_ok = 0;
457 env_t *tmp_env1, *tmp_env2;
459 tmp_env1 = (env_t *)buf1;
460 tmp_env2 = (env_t *)buf2;
462 if (buf1_read_fail && buf2_read_fail) {
463 puts("*** Error - No Valid Environment Area found\n");
465 } else if (buf1_read_fail || buf2_read_fail) {
466 puts("*** Warning - some problems detected ");
467 puts("reading environment; recovered successfully\n");
471 crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) ==
474 crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) ==
477 if (!crc1_ok && !crc2_ok) {
478 gd->env_valid = ENV_INVALID;
479 return -ENOMSG; /* needed for env_load() */
480 } else if (crc1_ok && !crc2_ok) {
481 gd->env_valid = ENV_VALID;
482 } else if (!crc1_ok && crc2_ok) {
483 gd->env_valid = ENV_REDUND;
485 /* both ok - check serial */
486 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
487 gd->env_valid = ENV_REDUND;
488 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
489 gd->env_valid = ENV_VALID;
490 else if (tmp_env1->flags > tmp_env2->flags)
491 gd->env_valid = ENV_VALID;
492 else if (tmp_env2->flags > tmp_env1->flags)
493 gd->env_valid = ENV_REDUND;
494 else /* flags are equal - almost impossible */
495 gd->env_valid = ENV_VALID;
501 int env_import_redund(const char *buf1, int buf1_read_fail,
502 const char *buf2, int buf2_read_fail,
508 ret = env_check_redund(buf1, buf1_read_fail, buf2, buf2_read_fail);
511 env_set_default("bad env area", 0);
513 } else if (ret == -ENOMSG) {
514 env_set_default("bad CRC", 0);
518 if (gd->env_valid == ENV_VALID)
523 env_flags = ep->flags;
525 return env_import((char *)ep, 0, flags);
527 #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
529 /* Export the environment and generate CRC for it. */
530 int env_export(env_t *env_out)
535 res = (char *)env_out->data;
536 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
538 pr_err("Cannot export environment: errno = %d\n", errno);
542 env_out->crc = crc32(0, env_out->data, ENV_SIZE);
544 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
545 env_out->flags = ++env_flags; /* increase the serial */
551 void env_relocate(void)
553 if (gd->env_valid == ENV_INVALID) {
554 #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
555 /* Environment not changable */
556 env_set_default(NULL, 0);
558 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
559 env_set_default("bad CRC", 0);
566 #ifdef CONFIG_AUTO_COMPLETE
567 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
570 struct env_entry *match;
575 * When doing $ completion, the first character should
576 * obviously be a '$'.
584 * The second one, if present, should be a '{', as some
585 * configuration of the u-boot shell expand ${var} but not
590 else if (var[0] != '\0')
598 while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
599 int vallen = strlen(match->key) + 1;
601 if (found >= maxv - 2 ||
602 bufsz < vallen + (dollar_comp ? 3 : 0))
607 /* Add the '${' prefix to each var when doing $ completion. */
614 memcpy(buf, match->key, vallen);
620 * This one is a bit odd: vallen already contains the
621 * '\0' character but we need to add the '}' suffix,
622 * hence the buf - 1 here. strcpy() will add the '\0'
623 * character just after '}'. buf is then incremented
624 * to account for the extra '}' we just added.
626 strcpy(buf - 1, "}");
631 qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
634 cmdv[found++] = dollar_comp ? "${...}" : "...";
641 #ifdef CONFIG_ENV_IMPORT_FDT
642 void env_import_fdt(void)
649 path = env_get("env_fdt_path");
650 if (!path || !path[0])
653 node = ofnode_path(path);
654 if (!ofnode_valid(node)) {
655 printf("Warning: device tree node '%s' not found\n", path);
659 for (res = ofnode_first_property(node, &prop);
661 res = ofnode_next_property(&prop)) {
662 const char *name, *val;
664 val = ofprop_get_property(&prop, &name, NULL);