1 // SPDX-License-Identifier: GPL-2.0+
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
18 #include <u-boot/sha256.h>
19 #include <bootcount.h>
21 DECLARE_GLOBAL_DATA_PTR;
23 #define MAX_DELAY_STOP_STR 32
25 #ifndef DEBUG_BOOTKEYS
26 #define DEBUG_BOOTKEYS 0
28 #define debug_bootkeys(fmt, args...) \
29 debug_cond(DEBUG_BOOTKEYS, fmt, ##args)
31 /* Stored value of bootdelay, used by autoboot_command() */
32 static int stored_bootdelay;
35 #ifdef CONFIG_AUTOBOOT_ENCRYPTION
36 #define AUTOBOOT_STOP_STR_SHA256 CONFIG_AUTOBOOT_STOP_STR_SHA256
38 #define AUTOBOOT_STOP_STR_SHA256 ""
41 #ifdef CONFIG_USE_AUTOBOOT_MENUKEY
42 #define AUTOBOOT_MENUKEY CONFIG_USE_AUTOBOOT_MENUKEY
44 #define AUTOBOOT_MENUKEY 0
48 * Use a "constant-length" time compare function for this
51 * https://crackstation.net/hashing-security.htm
53 static int slow_equals(u8 *a, u8 *b, int len)
58 for (i = 0; i < len; i++)
65 * passwd_abort_sha256() - check for a hashed key sequence to abort booting
67 * This checks for the user entering a SHA256 hash within a given time.
69 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
70 * @return 0 if autoboot should continue, 1 if it should stop
72 static int passwd_abort_sha256(uint64_t etime)
74 const char *sha_env_str = env_get("bootstopkeysha256");
75 u8 sha_env[SHA256_SUM_LEN];
78 const char *algo_name = "sha256";
79 u_int presskey_len = 0;
81 int size = sizeof(sha);
84 if (sha_env_str == NULL)
85 sha_env_str = AUTOBOOT_STOP_STR_SHA256;
88 * Generate the binary value from the environment hash value
89 * so that we can compare this value with the computed hash
92 ret = hash_parse_string(algo_name, sha_env_str, sha_env);
94 printf("Hash %s not supported!\n", algo_name);
98 presskey = malloc_cache_aligned(MAX_DELAY_STOP_STR);
99 sha = malloc_cache_aligned(SHA256_SUM_LEN);
100 size = SHA256_SUM_LEN;
102 * We don't know how long the stop-string is, so we need to
103 * generate the sha256 hash upon each input character and
104 * compare the value with the one saved in the environment
108 /* Check for input string overflow */
109 if (presskey_len >= MAX_DELAY_STOP_STR) {
115 presskey[presskey_len++] = getc();
117 /* Calculate sha256 upon each new char */
118 hash_block(algo_name, (const void *)presskey,
119 presskey_len, sha, &size);
121 /* And check if sha matches saved value in env */
122 if (slow_equals(sha, sha_env, SHA256_SUM_LEN))
125 } while (!abort && get_ticks() <= etime);
133 * passwd_abort_key() - check for a key sequence to aborted booting
135 * This checks for the user entering a string within a given time.
137 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
138 * @return 0 if autoboot should continue, 1 if it should stop
140 static int passwd_abort_key(uint64_t etime)
149 { .str = env_get("bootdelaykey"), .retry = 1 },
150 { .str = env_get("bootstopkey"), .retry = 0 },
153 char presskey[MAX_DELAY_STOP_STR];
154 u_int presskey_len = 0;
155 u_int presskey_max = 0;
158 # ifdef CONFIG_AUTOBOOT_DELAY_STR
159 if (delaykey[0].str == NULL)
160 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
162 # ifdef CONFIG_AUTOBOOT_STOP_STR
163 if (delaykey[1].str == NULL)
164 delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR;
167 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
168 delaykey[i].len = delaykey[i].str == NULL ?
169 0 : strlen(delaykey[i].str);
170 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
171 MAX_DELAY_STOP_STR : delaykey[i].len;
173 presskey_max = presskey_max > delaykey[i].len ?
174 presskey_max : delaykey[i].len;
176 debug_bootkeys("%s key:<%s>\n",
177 delaykey[i].retry ? "delay" : "stop",
178 delaykey[i].str ? delaykey[i].str : "NULL");
181 /* In order to keep up with incoming data, check timeout only
186 if (presskey_len < presskey_max) {
187 presskey[presskey_len++] = getc();
189 for (i = 0; i < presskey_max - 1; i++)
190 presskey[i] = presskey[i + 1];
192 presskey[i] = getc();
196 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
197 if (delaykey[i].len > 0 &&
198 presskey_len >= delaykey[i].len &&
199 memcmp(presskey + presskey_len -
200 delaykey[i].len, delaykey[i].str,
201 delaykey[i].len) == 0) {
202 debug_bootkeys("got %skey\n",
203 delaykey[i].retry ? "delay" :
206 /* don't retry auto boot */
207 if (!delaykey[i].retry)
208 bootretry_dont_retry();
212 } while (!abort && get_ticks() <= etime);
217 /***************************************************************************
218 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
219 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
221 static int abortboot_key_sequence(int bootdelay)
224 uint64_t etime = endtick(bootdelay);
226 # ifdef CONFIG_AUTOBOOT_PROMPT
228 * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards.
229 * To print the bootdelay value upon bootup.
231 printf(CONFIG_AUTOBOOT_PROMPT, bootdelay);
234 if (IS_ENABLED(CONFIG_AUTOBOOT_ENCRYPTION))
235 abort = passwd_abort_sha256(etime);
237 abort = passwd_abort_key(etime);
239 debug_bootkeys("key timeout\n");
244 static int abortboot_single_key(int bootdelay)
249 printf("Hit any key to stop autoboot: %2d ", bootdelay);
252 * Check if key already pressed
254 if (tstc()) { /* we got a key press */
255 (void) getc(); /* consume input */
257 abort = 1; /* don't auto boot */
260 while ((bootdelay > 0) && (!abort)) {
265 if (tstc()) { /* we got a key press */
268 abort = 1; /* don't auto boot */
269 bootdelay = 0; /* no more delay */
270 key = getc(); /* consume input */
271 if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY))
276 } while (!abort && get_timer(ts) < 1000);
278 printf("\b\b\b%2d ", bootdelay);
286 static int abortboot(int bootdelay)
290 if (bootdelay >= 0) {
291 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
292 abort = abortboot_key_sequence(bootdelay);
294 abort = abortboot_single_key(bootdelay);
297 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && abort)
298 gd->flags &= ~GD_FLG_SILENT;
303 static void process_fdt_options(const void *blob)
305 #ifdef CONFIG_SYS_TEXT_BASE
308 /* Add an env variable to point to a kernel payload, if available */
309 addr = fdtdec_get_config_int(gd->fdt_blob, "kernel-offset", 0);
311 env_set_addr("kernaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
313 /* Add an env variable to point to a root disk, if available */
314 addr = fdtdec_get_config_int(gd->fdt_blob, "rootdisk-offset", 0);
316 env_set_addr("rootaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
317 #endif /* CONFIG_SYS_TEXT_BASE */
320 const char *bootdelay_process(void)
327 s = env_get("bootdelay");
328 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
330 if (IS_ENABLED(CONFIG_OF_CONTROL))
331 bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay",
334 debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
336 if (IS_ENABLED(CONFIG_AUTOBOOT_MENU_SHOW))
337 bootdelay = menu_show(bootdelay);
338 bootretry_init_cmd_timeout();
341 if (gd->flags & GD_FLG_POSTFAIL) {
342 s = env_get("failbootcmd");
344 #endif /* CONFIG_POST */
345 if (bootcount_error())
346 s = env_get("altbootcmd");
348 s = env_get("bootcmd");
350 if (IS_ENABLED(CONFIG_OF_CONTROL))
351 process_fdt_options(gd->fdt_blob);
352 stored_bootdelay = bootdelay;
357 void autoboot_command(const char *s)
359 debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
361 if (stored_bootdelay != -1 && s && !abortboot(stored_bootdelay)) {
365 lock = IS_ENABLED(CONFIG_AUTOBOOT_KEYED) &&
366 !IS_ENABLED(CONFIG_AUTOBOOT_KEYED_CTRLC);
368 prev = disable_ctrlc(1); /* disable Ctrl-C checking */
370 run_command_list(s, -1, 0);
373 disable_ctrlc(prev); /* restore Ctrl-C checking */
376 if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY) &&
377 menukey == AUTOBOOT_MENUKEY) {
378 s = env_get("menucmd");
380 run_command_list(s, -1, 0);