env: Add H_DEFAULT flag
[platform/kernel/u-boot.git] / env / common.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000-2010
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  *
6  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
7  * Andreas Heppel <aheppel@sysgo.de>
8  */
9
10 #include <common.h>
11 #include <bootstage.h>
12 #include <command.h>
13 #include <env.h>
14 #include <env_internal.h>
15 #include <log.h>
16 #include <sort.h>
17 #include <linux/stddef.h>
18 #include <search.h>
19 #include <errno.h>
20 #include <malloc.h>
21 #include <u-boot/crc.h>
22
23 DECLARE_GLOBAL_DATA_PTR;
24
25 /************************************************************************
26  * Default settings to be used when no valid environment is found
27  */
28 #include <env_default.h>
29
30 struct hsearch_data env_htab = {
31         .change_ok = env_flags_validate,
32 };
33
34 /*
35  * Read an environment variable as a boolean
36  * Return -1 if variable does not exist (default to true)
37  */
38 int env_get_yesno(const char *var)
39 {
40         char *s = env_get(var);
41
42         if (s == NULL)
43                 return -1;
44         return (*s == '1' || *s == 'y' || *s == 'Y' || *s == 't' || *s == 'T') ?
45                 1 : 0;
46 }
47
48 /*
49  * Look up the variable from the default environment
50  */
51 char *env_get_default(const char *name)
52 {
53         char *ret_val;
54         unsigned long really_valid = gd->env_valid;
55         unsigned long real_gd_flags = gd->flags;
56
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;
63         return ret_val;
64 }
65
66 void env_set_default(const char *s, int flags)
67 {
68         if (sizeof(default_environment) > ENV_SIZE) {
69                 puts("*** Error - default environment is too large\n\n");
70                 return;
71         }
72
73         if (s) {
74                 if ((flags & H_INTERACTIVE) == 0) {
75                         printf("*** Warning - %s, "
76                                 "using default environment\n\n", s);
77                 } else {
78                         puts(s);
79                 }
80         } else {
81                 debug("Using default environment\n");
82         }
83
84         flags |= H_DEFAULT;
85         if (himport_r(&env_htab, (char *)default_environment,
86                         sizeof(default_environment), '\0', flags, 0,
87                         0, NULL) == 0)
88                 pr_err("## Error: Environment import failed: errno = %d\n",
89                        errno);
90
91         gd->flags |= GD_FLG_ENV_READY;
92         gd->flags |= GD_FLG_ENV_DEFAULT;
93 }
94
95
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)
98 {
99         /*
100          * Special use-case: import from default environment
101          * (and use \0 as a separator)
102          */
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);
107 }
108
109 /*
110  * Check if CRC is valid and (if yes) import the environment.
111  * Note that "buf" may or may not be aligned.
112  */
113 int env_import(const char *buf, int check)
114 {
115         env_t *ep = (env_t *)buf;
116
117         if (check) {
118                 uint32_t crc;
119
120                 memcpy(&crc, &ep->crc, sizeof(crc));
121
122                 if (crc32(0, ep->data, ENV_SIZE) != crc) {
123                         env_set_default("bad CRC", 0);
124                         return -ENOMSG; /* needed for env_load() */
125                 }
126         }
127
128         if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0, 0,
129                         0, NULL)) {
130                 gd->flags |= GD_FLG_ENV_READY;
131                 return 0;
132         }
133
134         pr_err("Cannot import environment: errno = %d\n", errno);
135
136         env_set_default("import failed", 0);
137
138         return -EIO;
139 }
140
141 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
142 static unsigned char env_flags;
143
144 int env_import_redund(const char *buf1, int buf1_read_fail,
145                       const char *buf2, int buf2_read_fail)
146 {
147         int crc1_ok, crc2_ok;
148         env_t *ep, *tmp_env1, *tmp_env2;
149
150         tmp_env1 = (env_t *)buf1;
151         tmp_env2 = (env_t *)buf2;
152
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");
158         }
159
160         if (buf1_read_fail && buf2_read_fail) {
161                 env_set_default("bad env area", 0);
162                 return -EIO;
163         } else if (!buf1_read_fail && buf2_read_fail) {
164                 gd->env_valid = ENV_VALID;
165                 return env_import((char *)tmp_env1, 1);
166         } else if (buf1_read_fail && !buf2_read_fail) {
167                 gd->env_valid = ENV_REDUND;
168                 return env_import((char *)tmp_env2, 1);
169         }
170
171         crc1_ok = crc32(0, tmp_env1->data, ENV_SIZE) ==
172                         tmp_env1->crc;
173         crc2_ok = crc32(0, tmp_env2->data, ENV_SIZE) ==
174                         tmp_env2->crc;
175
176         if (!crc1_ok && !crc2_ok) {
177                 env_set_default("bad CRC", 0);
178                 return -ENOMSG; /* needed for env_load() */
179         } else if (crc1_ok && !crc2_ok) {
180                 gd->env_valid = ENV_VALID;
181         } else if (!crc1_ok && crc2_ok) {
182                 gd->env_valid = ENV_REDUND;
183         } else {
184                 /* both ok - check serial */
185                 if (tmp_env1->flags == 255 && tmp_env2->flags == 0)
186                         gd->env_valid = ENV_REDUND;
187                 else if (tmp_env2->flags == 255 && tmp_env1->flags == 0)
188                         gd->env_valid = ENV_VALID;
189                 else if (tmp_env1->flags > tmp_env2->flags)
190                         gd->env_valid = ENV_VALID;
191                 else if (tmp_env2->flags > tmp_env1->flags)
192                         gd->env_valid = ENV_REDUND;
193                 else /* flags are equal - almost impossible */
194                         gd->env_valid = ENV_VALID;
195         }
196
197         if (gd->env_valid == ENV_VALID)
198                 ep = tmp_env1;
199         else
200                 ep = tmp_env2;
201
202         env_flags = ep->flags;
203         return env_import((char *)ep, 0);
204 }
205 #endif /* CONFIG_SYS_REDUNDAND_ENVIRONMENT */
206
207 /* Export the environment and generate CRC for it. */
208 int env_export(env_t *env_out)
209 {
210         char *res;
211         ssize_t len;
212
213         res = (char *)env_out->data;
214         len = hexport_r(&env_htab, '\0', 0, &res, ENV_SIZE, 0, NULL);
215         if (len < 0) {
216                 pr_err("Cannot export environment: errno = %d\n", errno);
217                 return 1;
218         }
219
220         env_out->crc = crc32(0, env_out->data, ENV_SIZE);
221
222 #ifdef CONFIG_SYS_REDUNDAND_ENVIRONMENT
223         env_out->flags = ++env_flags; /* increase the serial */
224 #endif
225
226         return 0;
227 }
228
229 void env_relocate(void)
230 {
231 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
232         env_reloc();
233         env_fix_drivers();
234         env_htab.change_ok += gd->reloc_off;
235 #endif
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);
240 #else
241                 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
242                 env_set_default("bad CRC", 0);
243 #endif
244         } else {
245                 env_load();
246         }
247 }
248
249 #ifdef CONFIG_AUTO_COMPLETE
250 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf,
251                  bool dollar_comp)
252 {
253         struct env_entry *match;
254         int found, idx;
255
256         if (dollar_comp) {
257                 /*
258                  * When doing $ completion, the first character should
259                  * obviously be a '$'.
260                  */
261                 if (var[0] != '$')
262                         return 0;
263
264                 var++;
265
266                 /*
267                  * The second one, if present, should be a '{', as some
268                  * configuration of the u-boot shell expand ${var} but not
269                  * $var.
270                  */
271                 if (var[0] == '{')
272                         var++;
273                 else if (var[0] != '\0')
274                         return 0;
275         }
276
277         idx = 0;
278         found = 0;
279         cmdv[0] = NULL;
280
281
282         while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
283                 int vallen = strlen(match->key) + 1;
284
285                 if (found >= maxv - 2 ||
286                     bufsz < vallen + (dollar_comp ? 3 : 0))
287                         break;
288
289                 cmdv[found++] = buf;
290
291                 /* Add the '${' prefix to each var when doing $ completion. */
292                 if (dollar_comp) {
293                         strcpy(buf, "${");
294                         buf += 2;
295                         bufsz -= 3;
296                 }
297
298                 memcpy(buf, match->key, vallen);
299                 buf += vallen;
300                 bufsz -= vallen;
301
302                 if (dollar_comp) {
303                         /*
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.
309                          */
310                         strcpy(buf - 1, "}");
311                         buf++;
312                 }
313         }
314
315         qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
316
317         if (idx)
318                 cmdv[found++] = dollar_comp ? "${...}" : "...";
319
320         cmdv[found] = NULL;
321         return found;
322 }
323 #endif