]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/env_common.c
env: Refactor do_apply to a flag
[karo-tx-uboot.git] / common / env_common.c
1 /*
2  * (C) Copyright 2000-2010
3  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4  *
5  * (C) Copyright 2001 Sysgo Real-Time Solutions, GmbH <www.elinos.com>
6  * Andreas Heppel <aheppel@sysgo.de>
7  *
8  * See file CREDITS for list of people who contributed to this
9  * project.
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation; either version 2 of
14  * the License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24  * MA 02111-1307 USA
25  */
26
27 #include <common.h>
28 #include <command.h>
29 #include <environment.h>
30 #include <linux/stddef.h>
31 #include <search.h>
32 #include <errno.h>
33 #include <malloc.h>
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 /************************************************************************
38  * Default settings to be used when no valid environment is found
39  */
40 #include <env_default.h>
41
42 struct hsearch_data env_htab = {
43         .apply = env_check_apply,
44 };
45
46 static uchar __env_get_char_spec(int index)
47 {
48         return *((uchar *)(gd->env_addr + index));
49 }
50 uchar env_get_char_spec(int)
51         __attribute__((weak, alias("__env_get_char_spec")));
52
53 static uchar env_get_char_init(int index)
54 {
55         /* if crc was bad, use the default environment */
56         if (gd->env_valid)
57                 return env_get_char_spec(index);
58         else
59                 return default_environment[index];
60 }
61
62 uchar env_get_char_memory(int index)
63 {
64         return *env_get_addr(index);
65 }
66
67 uchar env_get_char(int index)
68 {
69         /* if relocated to RAM */
70         if (gd->flags & GD_FLG_RELOC)
71                 return env_get_char_memory(index);
72         else
73                 return env_get_char_init(index);
74 }
75
76 const uchar *env_get_addr(int index)
77 {
78         if (gd->env_valid)
79                 return (uchar *)(gd->env_addr + index);
80         else
81                 return &default_environment[index];
82 }
83
84 void set_default_env(const char *s)
85 {
86         int flags = 0;
87
88         if (sizeof(default_environment) > ENV_SIZE) {
89                 puts("*** Error - default environment is too large\n\n");
90                 return;
91         }
92
93         if (s) {
94                 if (*s == '!') {
95                         printf("*** Warning - %s, "
96                                 "using default environment\n\n",
97                                 s + 1);
98                 } else {
99                         flags = H_INTERACTIVE;
100                         puts(s);
101                 }
102         } else {
103                 puts("Using default environment\n\n");
104         }
105
106         if (himport_r(&env_htab, (char *)default_environment,
107                         sizeof(default_environment), '\0', flags,
108                         0, NULL) == 0)
109                 error("Environment import failed: errno = %d\n", errno);
110
111         gd->flags |= GD_FLG_ENV_READY;
112 }
113
114
115 /* [re]set individual variables to their value in the default environment */
116 int set_default_vars(int nvars, char * const vars[])
117 {
118         /*
119          * Special use-case: import from default environment
120          * (and use \0 as a separator)
121          */
122         return himport_r(&env_htab, (const char *)default_environment,
123                                 sizeof(default_environment), '\0',
124                                 H_NOCLEAR | H_INTERACTIVE, nvars, vars);
125 }
126
127 #ifndef CONFIG_SPL_BUILD
128 /*
129  * Check if CRC is valid and (if yes) import the environment.
130  * Note that "buf" may or may not be aligned.
131  */
132 int env_import(const char *buf, int check)
133 {
134         env_t *ep = (env_t *)buf;
135
136         if (check) {
137                 uint32_t crc;
138
139                 memcpy(&crc, &ep->crc, sizeof(crc));
140
141                 if (crc32(0, ep->data, ENV_SIZE) != crc) {
142                         set_default_env("!bad CRC");
143                         return 0;
144                 }
145         }
146
147         if (himport_r(&env_htab, (char *)ep->data, ENV_SIZE, '\0', 0,
148                         0, NULL)) {
149                 gd->flags |= GD_FLG_ENV_READY;
150                 return 1;
151         }
152
153         error("Cannot import environment: errno = %d\n", errno);
154
155         set_default_env("!import failed");
156
157         return 0;
158 }
159 #endif
160
161 void env_relocate(void)
162 {
163 #if defined(CONFIG_NEEDS_MANUAL_RELOC)
164         env_reloc();
165 #endif
166         if (gd->env_valid == 0) {
167 #if defined(CONFIG_ENV_IS_NOWHERE) || defined(CONFIG_SPL_BUILD)
168                 /* Environment not changable */
169                 set_default_env(NULL);
170 #else
171                 bootstage_error(BOOTSTAGE_ID_NET_CHECKSUM);
172                 set_default_env("!bad CRC");
173 #endif
174         } else {
175                 env_relocate_spec();
176         }
177 }
178
179 #if defined(CONFIG_AUTO_COMPLETE) && !defined(CONFIG_SPL_BUILD)
180 int env_complete(char *var, int maxv, char *cmdv[], int bufsz, char *buf)
181 {
182         ENTRY *match;
183         int found, idx;
184
185         idx = 0;
186         found = 0;
187         cmdv[0] = NULL;
188
189         while ((idx = hmatch_r(var, idx, &match, &env_htab))) {
190                 int vallen = strlen(match->key) + 1;
191
192                 if (found >= maxv - 2 || bufsz < vallen)
193                         break;
194
195                 cmdv[found++] = buf;
196                 memcpy(buf, match->key, vallen);
197                 buf += vallen;
198                 bufsz -= vallen;
199         }
200
201         qsort(cmdv, found, sizeof(cmdv[0]), strcmp_compar);
202
203         if (idx)
204                 cmdv[found++] = "...";
205
206         cmdv[found] = NULL;
207         return found;
208 }
209 #endif