1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2010
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7 * Andreas Heppel <aheppel@sysgo.de>
12 #include <environment.h>
13 #include <linux/stddef.h>
18 DECLARE_GLOBAL_DATA_PTR;
20 /************************************************************************
21 * Default settings to be used when no valid environment is found
23 #include <env_default.h>
25 struct hsearch_data env_htab = {
26 #if CONFIG_IS_ENABLED(ENV_SUPPORT)
27 /* defined in flags.c, only compile with ENV_SUPPORT */
28 .change_ok = env_flags_validate,
33 * Read an environment variable as a boolean
34 * Return -1 if variable does not exist (default to true)
36 int env_get_yesno(const char *var)
38 char *s = env_get(var);
42 return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ?
47 * Look up the variable from the default environment
49 char *env_get_default(const char *name)
52 unsigned long really_valid = gd->env_valid;
53 unsigned long real_gd_flags = gd->flags;
55 /* Pretend that the image is bad. */
56 gd->flags &= ~GD_FLG_ENV_READY;
57 gd->env_valid = ENV_INVALID;
58 ret_val = env_get(name);
59 gd->env_valid = really_valid;
60 gd->flags = real_gd_flags;
64 void set_default_env(const char *s, int flags)
66 if (sizeof(default_environment) > ENV_SIZE) {
67 puts("*** Error - default environment is too large\n\n");
72 if ((flags & H_INTERACTIVE) == 0) {
73 printf("*** Warning - %s, "
74 "using default environment\n\n", s);
79 debug("Using default environment\n");
82 if (himport_r(&env_htab, (char *)default_environment,
83 sizeof(default_environment), '\0', flags, 0,
85 pr_err("## Error: Environment import failed: errno = %d\n",
88 gd->flags |= GD_FLG_ENV_READY;
89 gd->flags |= GD_FLG_ENV_DEFAULT;
93 /* [re]set individual variables to their value in the default environment */
94 int set_default_vars(int nvars, char * const vars[], int flags)
97 * Special use-case: import from default environment
98 * (and use \0 as a separator)
101 return himport_r(&env_htab, (const char *)default_environment,
102 sizeof(default_environment), '\0',
103 flags, 0, nvars, vars);
107 * Check if CRC is valid and (if yes) import the environment.
108 * Note that "buf" may or may not be aligned.
110 int env_import(const char *buf, int check)
112 env_t *ep = (env_t *)buf;
117 memcpy(&crc, &ep->crc, sizeof(crc));
119 if (crc32(0, ep->data, ENV_SIZE) != crc) {
120 set_default_env("bad CRC", 0);
121 return -ENOMSG; /* needed for env_load() */
125 if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, 0,
127 gd->flags |= GD_FLG_ENV_READY;
131 pr_err("Cannot import environment: errno = %d\n", errno);
133 set_default_env("import failed", 0);
138 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
139 static unsigned char env_flags;
141 int env_import_redund(const char *buf1, int buf1_read_fail,
142 const char *buf2, int buf2_read_fail)
144 int crc1_ok, crc2_ok;
145 env_t *ep, *tmp_env1, *tmp_env2;
147 tmp_env1 = (env_t *)buf1;
148 tmp_env2 = (env_t *)buf2;
150 if (buf1_read_fail && buf2_read_fail) {
151 puts("*** Error - No Valid Environment Area found\n");
152 } else if (buf1_read_fail || buf2_read_fail) {
153 puts("*** Warning - some problems detected ");
154 puts("reading environment; recovered successfully\n");
157 if (buf1_read_fail && buf2_read_fail) {
158 set_default_env("bad env area", 0);
160 } else if (!buf1_read_fail && buf2_read_fail) {
161 gd->env_valid = ENV_VALID;
162 return env_import((char *)tmp_env1, 1);
163 } else if (buf1_read_fail && !buf2_read_fail) {
164 gd->env_valid = ENV_REDUND;
165 return env_import((char *)tmp_env2, 1);
168 crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) ==
170 crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) ==
173 if (!crc1_ok && !crc2_ok) {
174 set_default_env("bad CRC", 0);
175 return -ENOMSG; /* needed for env_load() */
176 } else if (crc1_ok && !crc2_ok) {
177 gd->env_valid = ENV_VALID;
178 } else if (!crc1_ok && crc2_ok) {
179 gd->env_valid = ENV_REDUND;
181 /* both ok - check serial */
182 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
183 gd->env_valid = ENV_REDUND;
184 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
185 gd->env_valid = ENV_VALID;
186 else if (tmp_env1->flags > tmp_env2->flags)
187 gd->env_valid = ENV_VALID;
188 else if (tmp_env2->flags > tmp_env1->flags)
189 gd->env_valid = ENV_REDUND;
190 else /* flags are equal - almost impossible */
191 gd->env_valid = ENV_VALID;
194 if (gd->env_valid == ENV_VALID)
199 env_flags = ep->flags;
200 return env_import((char *)ep, 0);
202 #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
204 /* Export the environment and generate CRC for it. */
205 int env_export(env_t *env_out)
210 res = (char *)env_out->data;
211 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
213 pr_err("Cannot export environment: errno = %d\n", errno);
217 env_out->crc = crc32(0, env_out->data, ENV_SIZE);
219 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
220 env_out->flags = ++env_flags; /* increase the serial */
226 void env_relocate(void)
228 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
232 if (env_htab.change_ok)
233 env_htab.change_ok += gd->reloc_off;
235 if (gd->env_valid == ENV_INVALID) {
236 #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
237 /* Environment not changable */
238 set_default_env(NULL, 0);
240 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
241 set_default_env("bad CRC", 0);
248 #ifdef CONFIG_AUTO_COMPLETE
249 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
257 * When doing $ completion, the first character should
258 * obviously be a '$'.
266 * The second one, if present, should be a '{', as some
267 * configuration of the u-boot shell expand ${var} but not
272 else if (var[0] != '\0')
281 while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
282 int vallen = strlen(match->key) + 1;
284 if (found >= maxv - 2 ||
285 bufsz < vallen + (dollar_comp ? 3 : 0))
290 /* Add the '${' prefix to each var when doing $ completion. */
297 memcpy(buf, match->key, vallen);
303 * This one is a bit odd: vallen already contains the
304 * '\0' character but we need to add the '}' suffix,
305 * hence the buf - 1 here. strcpy() will add the '\0'
306 * character just after '}'. buf is then incremented
307 * to account for the extra '}' we just added.
309 strcpy(buf - 1, "}");
314 qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
317 cmdv[found++] = dollar_comp ? "${...}" : "...";