1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2000-2010
6 * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
13 #include <env_internal.h>
14 #include <linux/stddef.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 /************************************************************************
22 * Default settings to be used when no valid environment is found
24 #include <env_default.h>
26 struct hsearch_data env_htab = {
27 #if CONFIG_IS_ENABLED(ENV_SUPPORT)
28 /* defined in flags.c, only compile with ENV_SUPPORT */
29 .change_ok = env_flags_validate,
34 * Read an environment variable as a boolean
35 * Return -1 if variable does not exist (default to true)
37 int env_get_yesno(const char *var)
39 char *s = env_get(var);
43 return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ?
48 * Look up the variable from the default environment
50 char *env_get_default(const char *name)
53 unsigned long really_valid = gd->env_valid;
54 unsigned long real_gd_flags = gd->flags;
56 /* Pretend that the image is bad. */
57 gd->flags &= ~GD_FLG_ENV_READY;
58 gd->env_valid = ENV_INVALID;
59 ret_val = env_get(name);
60 gd->env_valid = really_valid;
61 gd->flags = real_gd_flags;
65 void env_set_default(const char *s, int flags)
67 if (sizeof(default_environment) > ENV_SIZE) {
68 puts("*** Error - default environment is too large\n\n");
73 if ((flags & H_INTERACTIVE) == 0) {
74 printf("*** Warning - %s, "
75 "using default environment\n\n", s);
80 debug("Using default environment\n");
83 if (himport_r(&env_htab, (char *)default_environment,
84 sizeof(default_environment), '\0', flags, 0,
86 pr_err("## Error: Environment import failed: errno = %d\n",
89 gd->flags |= GD_FLG_ENV_READY;
90 gd->flags |= GD_FLG_ENV_DEFAULT;
94 /* [re]set individual variables to their value in the default environment */
95 int env_set_default_vars(int nvars, char * const vars[], int flags)
98 * Special use-case: import from default environment
99 * (and use \0 as a separator)
102 return himport_r(&env_htab, (const char *)default_environment,
103 sizeof(default_environment), '\0',
104 flags, 0, nvars, vars);
108 * Check if CRC is valid and (if yes) import the environment.
109 * Note that "buf" may or may not be aligned.
111 int env_import(const char *buf, int check)
113 env_t *ep = (env_t *)buf;
118 memcpy(&crc, &ep->crc, sizeof(crc));
120 if (crc32(0, ep->data, ENV_SIZE) != crc) {
121 env_set_default("bad CRC", 0);
122 return -ENOMSG; /* needed for env_load() */
126 if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, 0,
128 gd->flags |= GD_FLG_ENV_READY;
132 pr_err("Cannot import environment: errno = %d\n", errno);
134 env_set_default("import failed", 0);
139 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
140 static unsigned char env_flags;
142 int env_import_redund(const char *buf1, int buf1_read_fail,
143 const char *buf2, int buf2_read_fail)
145 int crc1_ok, crc2_ok;
146 env_t *ep, *tmp_env1, *tmp_env2;
148 tmp_env1 = (env_t *)buf1;
149 tmp_env2 = (env_t *)buf2;
151 if (buf1_read_fail && buf2_read_fail) {
152 puts("*** Error - No Valid Environment Area found\n");
153 } else if (buf1_read_fail || buf2_read_fail) {
154 puts("*** Warning - some problems detected ");
155 puts("reading environment; recovered successfully\n");
158 if (buf1_read_fail && buf2_read_fail) {
159 env_set_default("bad env area", 0);
161 } else if (!buf1_read_fail && buf2_read_fail) {
162 gd->env_valid = ENV_VALID;
163 return env_import((char *)tmp_env1, 1);
164 } else if (buf1_read_fail && !buf2_read_fail) {
165 gd->env_valid = ENV_REDUND;
166 return env_import((char *)tmp_env2, 1);
169 crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) ==
171 crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) ==
174 if (!crc1_ok && !crc2_ok) {
175 env_set_default("bad CRC", 0);
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;
195 if (gd->env_valid == ENV_VALID)
200 env_flags = ep->flags;
201 return env_import((char *)ep, 0);
203 #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
205 /* Export the environment and generate CRC for it. */
206 int env_export(env_t *env_out)
211 res = (char *)env_out->data;
212 len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
214 pr_err("Cannot export environment: errno = %d\n", errno);
218 env_out->crc = crc32(0, env_out->data, ENV_SIZE);
220 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
221 env_out->flags = ++env_flags; /* increase the serial */
227 void env_relocate(void)
229 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
233 if (env_htab.change_ok)
234 env_htab.change_ok += gd->reloc_off;
236 if (gd->env_valid == ENV_INVALID) {
237 #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
238 /* Environment not changable */
239 env_set_default(NULL, 0);
241 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
242 env_set_default("bad CRC", 0);
249 #ifdef CONFIG_AUTO_COMPLETE
250 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
253 struct env_entry *match;
258 * When doing $ completion, the first character should
259 * obviously be a '$'.
267 * The second one, if present, should be a '{', as some
268 * configuration of the u-boot shell expand ${var} but not
273 else if (var[0] != '\0')
282 while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
283 int vallen = strlen(match->key) + 1;
285 if (found >= maxv - 2 ||
286 bufsz < vallen + (dollar_comp ? 3 : 0))
291 /* Add the '${' prefix to each var when doing $ completion. */
298 memcpy(buf, match->key, vallen);
304 * This one is a bit odd: vallen already contains the
305 * '\0' character but we need to add the '}' suffix,
306 * hence the buf - 1 here. strcpy() will add the '\0'
307 * character just after '}'. buf is then incremented
308 * to account for the extra '}' we just added.
310 strcpy(buf - 1, "}");
315 qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
318 cmdv[found++] = dollar_comp ? "${...}" : "...";