]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
05706fdd | 2 | /* |
ea882baf | 3 | * (C) Copyright 2000-2010 |
05706fdd WD |
4 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
5 | * | |
6 | * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com> | |
7 | * Andreas Heppel <[email protected]> | |
05706fdd WD |
8 | */ |
9 | ||
10 | #include <common.h> | |
11 | #include <command.h> | |
3f989e7b | 12 | #include <env.h> |
f3998fdc | 13 | #include <env_internal.h> |
8bef79bf | 14 | #include <sort.h> |
05706fdd | 15 | #include <linux/stddef.h> |
ea882baf WD |
16 | #include <search.h> |
17 | #include <errno.h> | |
05706fdd | 18 | #include <malloc.h> |
3db71108 | 19 | #include <u-boot/crc.h> |
05706fdd | 20 | |
d87080b7 WD |
21 | DECLARE_GLOBAL_DATA_PTR; |
22 | ||
05706fdd WD |
23 | /************************************************************************ |
24 | * Default settings to be used when no valid environment is found | |
25 | */ | |
ddd8418f | 26 | #include <env_default.h> |
05706fdd | 27 | |
c5983592 | 28 | struct hsearch_data env_htab = { |
2598090b | 29 | .change_ok = env_flags_validate, |
c5983592 | 30 | }; |
2eb1573f | 31 | |
ec8a252c JH |
32 | /* |
33 | * Read an environment variable as a boolean | |
34 | * Return -1 if variable does not exist (default to true) | |
35 | */ | |
bfebc8c9 | 36 | int env_get_yesno(const char *var) |
ec8a252c | 37 | { |
00caae6d | 38 | char *s = env_get(var); |
ec8a252c JH |
39 | |
40 | if (s == NULL) | |
41 | return -1; | |
42 | return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ? | |
43 | 1 : 0; | |
44 | } | |
45 | ||
267541f7 JH |
46 | /* |
47 | * Look up the variable from the default environment | |
48 | */ | |
723806cc | 49 | char *env_get_default(const char *name) |
267541f7 JH |
50 | { |
51 | char *ret_val; | |
52 | unsigned long really_valid = gd->env_valid; | |
53 | unsigned long real_gd_flags = gd->flags; | |
54 | ||
55 | /* Pretend that the image is bad. */ | |
56 | gd->flags &= ~GD_FLG_ENV_READY; | |
2d7cb5b4 | 57 | gd->env_valid = ENV_INVALID; |
00caae6d | 58 | ret_val = env_get(name); |
267541f7 JH |
59 | gd->env_valid = really_valid; |
60 | gd->flags = real_gd_flags; | |
61 | return ret_val; | |
62 | } | |
63 | ||
0ac7d722 | 64 | void env_set_default(const char *s, int flags) |
5bb12dbd HW |
65 | { |
66 | if (sizeof(default_environment) > ENV_SIZE) { | |
ea882baf | 67 | puts("*** Error - default environment is too large\n\n"); |
5bb12dbd HW |
68 | return; |
69 | } | |
70 | ||
ea882baf | 71 | if (s) { |
c5d548a9 | 72 | if ((flags & H_INTERACTIVE) == 0) { |
ea882baf | 73 | printf("*** Warning - %s, " |
c5d548a9 | 74 | "using default environment\n\n", s); |
ea882baf WD |
75 | } else { |
76 | puts(s); | |
77 | } | |
78 | } else { | |
58ae9990 | 79 | debug("Using default environment\n"); |
ea882baf WD |
80 | } |
81 | ||
2eb1573f | 82 | if (himport_r(&env_htab, (char *)default_environment, |
ecd1446f | 83 | sizeof(default_environment), '\0', flags, 0, |
c4e0057f | 84 | 0, NULL) == 0) |
6c90f623 QS |
85 | pr_err("## Error: Environment import failed: errno = %d\n", |
86 | errno); | |
27aafe98 | 87 | |
ea882baf | 88 | gd->flags |= GD_FLG_ENV_READY; |
340b0e3b | 89 | gd->flags |= GD_FLG_ENV_DEFAULT; |
5bb12dbd HW |
90 | } |
91 | ||
b64b7c3d GF |
92 | |
93 | /* [re]set individual variables to their value in the default environment */ | |
0b9d8a05 | 94 | int env_set_default_vars(int nvars, char * const vars[], int flags) |
b64b7c3d GF |
95 | { |
96 | /* | |
97 | * Special use-case: import from default environment | |
98 | * (and use \0 as a separator) | |
99 | */ | |
5a04264e | 100 | flags |= H_NOCLEAR; |
b64b7c3d | 101 | return himport_r(&env_htab, (const char *)default_environment, |
c4e0057f | 102 | sizeof(default_environment), '\0', |
477f8116 | 103 | flags, 0, nvars, vars); |
b64b7c3d GF |
104 | } |
105 | ||
ea882baf WD |
106 | /* |
107 | * Check if CRC is valid and (if yes) import the environment. | |
108 | * Note that "buf" may or may not be aligned. | |
109 | */ | |
110 | int env_import(const char *buf, int check) | |
05706fdd | 111 | { |
ea882baf | 112 | env_t *ep = (env_t *)buf; |
05706fdd | 113 | |
ea882baf WD |
114 | if (check) { |
115 | uint32_t crc; | |
116 | ||
117 | memcpy(&crc, &ep->crc, sizeof(crc)); | |
118 | ||
119 | if (crc32(0, ep->data, ENV_SIZE) != crc) { | |
0ac7d722 | 120 | env_set_default("bad CRC", 0); |
49d04c58 | 121 | return -ENOMSG; /* needed for env_load() */ |
ea882baf WD |
122 | } |
123 | } | |
124 | ||
ecd1446f | 125 | if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, 0, |
c4e0057f | 126 | 0, NULL)) { |
ea882baf | 127 | gd->flags |= GD_FLG_ENV_READY; |
42a1820b | 128 | return 0; |
ea882baf | 129 | } |
05706fdd | 130 | |
9b643e31 | 131 | pr_err("Cannot import environment: errno = %d\n", errno); |
ea882baf | 132 | |
0ac7d722 | 133 | env_set_default("import failed", 0); |
ea882baf | 134 | |
42a1820b | 135 | return -EIO; |
ea882baf WD |
136 | } |
137 | ||
76768f5f FA |
138 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
139 | static unsigned char env_flags; | |
140 | ||
31f044bd SG |
141 | int env_import_redund(const char *buf1, int buf1_read_fail, |
142 | const char *buf2, int buf2_read_fail) | |
76768f5f FA |
143 | { |
144 | int crc1_ok, crc2_ok; | |
145 | env_t *ep, *tmp_env1, *tmp_env2; | |
146 | ||
147 | tmp_env1 = (env_t *)buf1; | |
148 | tmp_env2 = (env_t *)buf2; | |
149 | ||
31f044bd SG |
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"); | |
155 | } | |
156 | ||
157 | if (buf1_read_fail && buf2_read_fail) { | |
0ac7d722 | 158 | env_set_default("bad env area", 0); |
31f044bd SG |
159 | return -EIO; |
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); | |
166 | } | |
167 | ||
76768f5f FA |
168 | crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) == |
169 | tmp_env1->crc; | |
170 | crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) == | |
171 | tmp_env2->crc; | |
172 | ||
173 | if (!crc1_ok && !crc2_ok) { | |
0ac7d722 | 174 | env_set_default("bad CRC", 0); |
49d04c58 | 175 | return -ENOMSG; /* needed for env_load() */ |
76768f5f | 176 | } else if (crc1_ok && !crc2_ok) { |
2d7cb5b4 | 177 | gd->env_valid = ENV_VALID; |
76768f5f | 178 | } else if (!crc1_ok && crc2_ok) { |
2d7cb5b4 | 179 | gd->env_valid = ENV_REDUND; |
76768f5f FA |
180 | } else { |
181 | /* both ok - check serial */ | |
182 | if (tmp_env1->flags == 255 && tmp_env2->flags == 0) | |
2d7cb5b4 | 183 | gd->env_valid = ENV_REDUND; |
76768f5f | 184 | else if (tmp_env2->flags == 255 && tmp_env1->flags == 0) |
2d7cb5b4 | 185 | gd->env_valid = ENV_VALID; |
76768f5f | 186 | else if (tmp_env1->flags > tmp_env2->flags) |
2d7cb5b4 | 187 | gd->env_valid = ENV_VALID; |
76768f5f | 188 | else if (tmp_env2->flags > tmp_env1->flags) |
2d7cb5b4 | 189 | gd->env_valid = ENV_REDUND; |
76768f5f | 190 | else /* flags are equal - almost impossible */ |
2d7cb5b4 | 191 | gd->env_valid = ENV_VALID; |
76768f5f FA |
192 | } |
193 | ||
2d7cb5b4 | 194 | if (gd->env_valid == ENV_VALID) |
76768f5f FA |
195 | ep = tmp_env1; |
196 | else | |
197 | ep = tmp_env2; | |
198 | ||
199 | env_flags = ep->flags; | |
200 | return env_import((char *)ep, 0); | |
201 | } | |
202 | #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */ | |
203 | ||
fc0b5948 | 204 | /* Export the environment and generate CRC for it. */ |
7ce1526e MV |
205 | int env_export(env_t *env_out) |
206 | { | |
207 | char *res; | |
208 | ssize_t len; | |
209 | ||
210 | res = (char *)env_out->data; | |
211 | len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL); | |
212 | if (len < 0) { | |
9b643e31 | 213 | pr_err("Cannot export environment: errno = %d\n", errno); |
7ce1526e MV |
214 | return 1; |
215 | } | |
a4223b74 | 216 | |
7ce1526e MV |
217 | env_out->crc = crc32(0, env_out->data, ENV_SIZE); |
218 | ||
76768f5f FA |
219 | #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT |
220 | env_out->flags = ++env_flags; /* increase the serial */ | |
221 | #endif | |
222 | ||
7ce1526e MV |
223 | return 0; |
224 | } | |
225 | ||
27aafe98 | 226 | void env_relocate(void) |
ea882baf | 227 | { |
2e5167cc | 228 | #if defined(CONFIG_NEEDS_MANUAL_RELOC) |
60f7da1f | 229 | env_reloc(); |
7bcdf195 | 230 | env_fix_drivers(); |
d90fc9c3 | 231 | env_htab.change_ok += gd->reloc_off; |
60f7da1f | 232 | #endif |
2d7cb5b4 | 233 | if (gd->env_valid == ENV_INVALID) { |
7ac2fe2d IY |
234 | #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD) |
235 | /* Environment not changable */ | |
0ac7d722 | 236 | env_set_default(NULL, 0); |
05706fdd | 237 | #else |
770605e4 | 238 | bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM); |
0ac7d722 | 239 | env_set_default("bad CRC", 0); |
d259079d | 240 | #endif |
ea882baf | 241 | } else { |
310fb14b | 242 | env_load(); |
05706fdd | 243 | } |
05706fdd | 244 | } |
04a85b3b | 245 | |
03dcf17d BB |
246 | #ifdef CONFIG_AUTO_COMPLETE |
247 | int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf, | |
248 | bool dollar_comp) | |
04a85b3b | 249 | { |
dd2408ca | 250 | struct env_entry *match; |
560d424b | 251 | int found, idx; |
04a85b3b | 252 | |
03dcf17d BB |
253 | if (dollar_comp) { |
254 | /* | |
255 | * When doing $ completion, the first character should | |
256 | * obviously be a '$'. | |
257 | */ | |
258 | if (var[0] != '$') | |
259 | return 0; | |
260 | ||
261 | var++; | |
262 | ||
263 | /* | |
264 | * The second one, if present, should be a '{', as some | |
265 | * configuration of the u-boot shell expand ${var} but not | |
266 | * $var. | |
267 | */ | |
268 | if (var[0] == '{') | |
269 | var++; | |
270 | else if (var[0] != '\0') | |
271 | return 0; | |
272 | } | |
273 | ||
560d424b | 274 | idx = 0; |
04a85b3b WD |
275 | found = 0; |
276 | cmdv[0] = NULL; | |
277 | ||
03dcf17d | 278 | |
560d424b MF |
279 | while ((idx = hmatch_r(var, idx, &match, &env_htab))) { |
280 | int vallen = strlen(match->key) + 1; | |
04a85b3b | 281 | |
03dcf17d BB |
282 | if (found >= maxv - 2 || |
283 | bufsz < vallen + (dollar_comp ? 3 : 0)) | |
04a85b3b | 284 | break; |
560d424b | 285 | |
04a85b3b | 286 | cmdv[found++] = buf; |
03dcf17d BB |
287 | |
288 | /* Add the '${' prefix to each var when doing $ completion. */ | |
289 | if (dollar_comp) { | |
290 | strcpy(buf, "${"); | |
291 | buf += 2; | |
292 | bufsz -= 3; | |
293 | } | |
294 | ||
560d424b MF |
295 | memcpy(buf, match->key, vallen); |
296 | buf += vallen; | |
297 | bufsz -= vallen; | |
03dcf17d BB |
298 | |
299 | if (dollar_comp) { | |
300 | /* | |
301 | * This one is a bit odd: vallen already contains the | |
302 | * '\0' character but we need to add the '}' suffix, | |
303 | * hence the buf - 1 here. strcpy() will add the '\0' | |
304 | * character just after '}'. buf is then incremented | |
305 | * to account for the extra '}' we just added. | |
306 | */ | |
307 | strcpy(buf - 1, "}"); | |
308 | buf++; | |
309 | } | |
04a85b3b WD |
310 | } |
311 | ||
560d424b MF |
312 | qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar); |
313 | ||
314 | if (idx) | |
03dcf17d | 315 | cmdv[found++] = dollar_comp ? "${...}" : "..."; |
27aafe98 | 316 | |
04a85b3b WD |
317 | cmdv[found] = NULL; |
318 | return found; | |
319 | } | |
320 | #endif |