1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2010
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
11 #include <bootstage.h>
14 #include <env_internal.h>
17 #include <linux/stddef.h>
21 #include <u-boot/crc.h>
23 DECLARE_GLOBAL_DATA_PTR;
25 /************************************************************************
26 * Default settings to be used when no valid environment is found
28 #include <env_default.h>
30 struct hsearch_data env_htab = {
31 .change_ok = env_flags_validate,
35 * Read an environment variable as a boolean
36 * Return -1 if variable does not exist (default to true)
38 int env_get_yesno(const char *var)
40 char *s = env_get(var);
44 return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ?
49 * Look up the variable from the default environment
51 char *env_get_default(const char *name)
54 unsigned long really_valid = gd->env_valid;
55 unsigned long real_gd_flags = gd->flags;
57 /* Pretend that the image is bad. */
58 gd->flags &= ~GD_FLG_ENV_READY;
59 gd->env_valid = ENV_INVALID;
60 ret_val = env_get(name);
61 gd->env_valid = really_valid;
62 gd->flags = real_gd_flags;
66 void env_set_default(const char *s, int flags)
68 if (sizeof(default_environment) > ENV_SIZE) {
69 puts("*** Error - default environment is too large\n\n");
74 if ((flags & H_INTERACTIVE) == 0) {
75 printf("*** Warning - %s, "
76 "using default environment\n\n", s);
81 debug("Using default environment\n");
85 if (himport_r(&env_htab, (char *)default_environment,
86 sizeof(default_environment), '\0', flags, 0,
88 pr_err("## Error: Environment import failed: errno = %d\n",
91 gd->flags |= GD_FLG_ENV_READY;
92 gd->flags |= GD_FLG_ENV_DEFAULT;
96 /* [re]set individual variables to their value in the default environment */
97 int env_set_default_vars(int nvars, char * const vars[], int flags)
100 * Special use-case: import from default environment
101 * (and use \0 as a separator)
103 flags |= H_NOCLEAR | H_DEFAULT;
104 return himport_r(&env_htab, (const char *)default_environment,
105 sizeof(default_environment), '\0',
106 flags, 0, nvars, vars);
110 * Check if CRC is valid and (if yes) import the environment.
111 * Note that "buf" may or may not be aligned.
113 int env_import(const char *buf, int check, int flags)
115 env_t *ep = (env_t *)buf;
120 memcpy(&crc, &ep->crc, sizeof(crc));
122 if (crc32(0, ep->data, ENV_SIZE) != crc) {
123 env_set_default("bad CRC", 0);
124 return -ENOMSG; /* needed for env_load() */
128 if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', flags, 0,
130 gd->flags |= GD_FLG_ENV_READY;
134 pr_err("Cannot import environment: errno = %d\n", errno);
136 env_set_default("import failed", 0);
141 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
142 static unsigned char env_flags;
144 int env_check_redund(const char *buf1, int buf1_read_fail,
145 const char *buf2, int buf2_read_fail)
147 int crc1_ok, crc2_ok;
148 env_t *tmp_env1, *tmp_env2;
150 tmp_env1 = (env_t *)buf1;
151 tmp_env2 = (env_t *)buf2;
153 if (buf1_read_fail && buf2_read_fail) {
154 puts("*** Error - No Valid Environment Area found\n");
155 } else if (buf1_read_fail || buf2_read_fail) {
156 puts("*** Warning - some problems detected ");
157 puts("reading environment; recovered successfully\n");
160 if (buf1_read_fail && buf2_read_fail) {
162 } else if (!buf1_read_fail && buf2_read_fail) {
163 gd->env_valid = ENV_VALID;
165 } else if (buf1_read_fail && !buf2_read_fail) {
166 gd->env_valid = ENV_REDUND;
170 crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) ==
172 crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) ==
175 if (!crc1_ok && !crc2_ok) {
176 return -ENOMSG; /* needed for env_load() */
177 } else if (crc1_ok && !crc2_ok) {
178 gd->env_valid = ENV_VALID;
179 } else if (!crc1_ok && crc2_ok) {
180 gd->env_valid = ENV_REDUND;
182 /* both ok - check serial */
183 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
184 gd->env_valid = ENV_REDUND;
185 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
186 gd->env_valid = ENV_VALID;
187 else if (tmp_env1->flags > tmp_env2->flags)
188 gd->env_valid = ENV_VALID;
189 else if (tmp_env2->flags > tmp_env1->flags)
190 gd->env_valid = ENV_REDUND;
191 else /* flags are equal - almost impossible */
192 gd->env_valid = ENV_VALID;
198 int env_import_redund(const char *buf1, int buf1_read_fail,
199 const char *buf2, int buf2_read_fail,
205 ret = env_check_redund(buf1, buf1_read_fail, buf2, buf2_read_fail);
208 env_set_default("bad env area", 0);
210 } else if (ret == -EINVAL) {
211 return env_import((char *)buf1, 1, flags);
212 } else if (ret == -ENOENT) {
213 return env_import((char *)buf2, 1, flags);
214 } else if (ret == -ENOMSG) {
215 env_set_default("bad CRC", 0);
219 if (gd->env_valid == ENV_VALID)
224 env_flags = ep->flags;
226 return env_import((char *)ep, 0, flags);
228 #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
230 /* Export the environment and generate CRC for it. */
231 int env_export(env_t *env_out)
236 res = (char *)env_out->data;
237 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
239 pr_err("Cannot export environment: errno = %d\n", errno);
243 env_out->crc = crc32(0, env_out->data, ENV_SIZE);
245 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
246 env_out->flags = ++env_flags; /* increase the serial */
252 void env_relocate(void)
254 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
257 env_htab.change_ok += gd->reloc_off;
259 if (gd->env_valid == ENV_INVALID) {
260 #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
261 /* Environment not changable */
262 env_set_default(NULL, 0);
264 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
265 env_set_default("bad CRC", 0);
272 #ifdef CONFIG_AUTO_COMPLETE
273 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
276 struct env_entry *match;
281 * When doing $ completion, the first character should
282 * obviously be a '$'.
290 * The second one, if present, should be a '{', as some
291 * configuration of the u-boot shell expand ${var} but not
296 else if (var[0] != '\0')
305 while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
306 int vallen = strlen(match->key) + 1;
308 if (found >= maxv - 2 ||
309 bufsz < vallen + (dollar_comp ? 3 : 0))
314 /* Add the '${' prefix to each var when doing $ completion. */
321 memcpy(buf, match->key, vallen);
327 * This one is a bit odd: vallen already contains the
328 * '\0' character but we need to add the '}' suffix,
329 * hence the buf - 1 here. strcpy() will add the '\0'
330 * character just after '}'. buf is then incremented
331 * to account for the extra '}' we just added.
333 strcpy(buf - 1, "}");
338 qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
341 cmdv[found++] = dollar_comp ? "${...}" : "...";