blob: ad189a8ba286e8cfb92d24884e95a432de31d0bb [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass66ded172014-04-10 20:01:28 -06002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glass66ded172014-04-10 20:01:28 -06005 */
6
7#include <common.h>
Jeroen Hofstee39e12302014-07-13 22:57:58 +02008#include <autoboot.h>
Simon Glass0098e172014-04-10 20:01:30 -06009#include <bootretry.h>
Simon Glass66ded172014-04-10 20:01:28 -060010#include <cli.h>
Simon Glass24b852a2015-11-08 23:47:45 -070011#include <console.h>
Simon Glass66ded172014-04-10 20:01:28 -060012#include <fdtdec.h>
Simon Glasse8c78052019-07-20 20:51:16 -060013#include <hash.h>
Simon Glass66ded172014-04-10 20:01:28 -060014#include <menu.h>
15#include <post.h>
Stefan Roese8f0b1e22015-05-18 14:08:24 +020016#include <u-boot/sha256.h>
Lukasz Majewskibc8c4402018-05-02 16:10:53 +020017#include <bootcount.h>
Simon Glass66ded172014-04-10 20:01:28 -060018
19DECLARE_GLOBAL_DATA_PTR;
20
21#define MAX_DELAY_STOP_STR 32
22
23#ifndef DEBUG_BOOTKEYS
24#define DEBUG_BOOTKEYS 0
25#endif
26#define debug_bootkeys(fmt, args...) \
27 debug_cond(DEBUG_BOOTKEYS, fmt, ##args)
28
Simon Glassaffb2152014-04-10 20:01:35 -060029/* Stored value of bootdelay, used by autoboot_command() */
30static int stored_bootdelay;
31
Simon Glass0c4bd312019-07-20 20:51:15 -060032#ifdef CONFIG_AUTOBOOT_ENCRYPTION
33#define AUTOBOOT_STOP_STR_SHA256 CONFIG_AUTOBOOT_STOP_STR_SHA256
34#else
35#define AUTOBOOT_STOP_STR_SHA256 ""
36#endif
37
Stefan Roese8f0b1e22015-05-18 14:08:24 +020038/*
39 * Use a "constant-length" time compare function for this
40 * hash compare:
41 *
42 * https://crackstation.net/hashing-security.htm
Simon Glass66ded172014-04-10 20:01:28 -060043 */
Stefan Roese8f0b1e22015-05-18 14:08:24 +020044static int slow_equals(u8 *a, u8 *b, int len)
45{
46 int diff = 0;
47 int i;
48
49 for (i = 0; i < len; i++)
50 diff |= a[i] ^ b[i];
51
52 return diff == 0;
53}
54
Simon Glass88fa4be2019-07-20 20:51:17 -060055/**
56 * passwd_abort_sha256() - check for a hashed key sequence to abort booting
57 *
58 * This checks for the user entering a SHA256 hash within a given time.
59 *
60 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
61 * @return 0 if autoboot should continue, 1 if it should stop
62 */
Simon Glasse8c78052019-07-20 20:51:16 -060063static int passwd_abort_sha256(uint64_t etime)
Stefan Roese8f0b1e22015-05-18 14:08:24 +020064{
Simon Glass00caae62017-08-03 12:22:12 -060065 const char *sha_env_str = env_get("bootstopkeysha256");
Stefan Roese8f0b1e22015-05-18 14:08:24 +020066 u8 sha_env[SHA256_SUM_LEN];
67 u8 sha[SHA256_SUM_LEN];
68 char presskey[MAX_DELAY_STOP_STR];
69 const char *algo_name = "sha256";
70 u_int presskey_len = 0;
71 int abort = 0;
Martin Etnestad2d06fd82018-01-12 09:04:38 +010072 int size = sizeof(sha);
Stefan Roese8f0b1e22015-05-18 14:08:24 +020073 int ret;
74
75 if (sha_env_str == NULL)
Simon Glass0c4bd312019-07-20 20:51:15 -060076 sha_env_str = AUTOBOOT_STOP_STR_SHA256;
Stefan Roese8f0b1e22015-05-18 14:08:24 +020077
78 /*
79 * Generate the binary value from the environment hash value
80 * so that we can compare this value with the computed hash
81 * from the user input
82 */
83 ret = hash_parse_string(algo_name, sha_env_str, sha_env);
84 if (ret) {
85 printf("Hash %s not supported!\n", algo_name);
86 return 0;
87 }
88
89 /*
90 * We don't know how long the stop-string is, so we need to
91 * generate the sha256 hash upon each input character and
92 * compare the value with the one saved in the environment
93 */
94 do {
95 if (tstc()) {
96 /* Check for input string overflow */
97 if (presskey_len >= MAX_DELAY_STOP_STR)
98 return 0;
99
100 presskey[presskey_len++] = getc();
101
102 /* Calculate sha256 upon each new char */
103 hash_block(algo_name, (const void *)presskey,
104 presskey_len, sha, &size);
105
106 /* And check if sha matches saved value in env */
107 if (slow_equals(sha, sha_env, SHA256_SUM_LEN))
108 abort = 1;
109 }
110 } while (!abort && get_ticks() <= etime);
111
112 return abort;
113}
Simon Glasse8c78052019-07-20 20:51:16 -0600114
Simon Glass88fa4be2019-07-20 20:51:17 -0600115/**
116 * passwd_abort_key() - check for a key sequence to aborted booting
117 *
118 * This checks for the user entering a string within a given time.
119 *
120 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
121 * @return 0 if autoboot should continue, 1 if it should stop
122 */
Simon Glasse8c78052019-07-20 20:51:16 -0600123static int passwd_abort_key(uint64_t etime)
Simon Glass66ded172014-04-10 20:01:28 -0600124{
125 int abort = 0;
Simon Glass66ded172014-04-10 20:01:28 -0600126 struct {
127 char *str;
128 u_int len;
129 int retry;
130 }
131 delaykey[] = {
Simon Glass00caae62017-08-03 12:22:12 -0600132 { .str = env_get("bootdelaykey"), .retry = 1 },
133 { .str = env_get("bootstopkey"), .retry = 0 },
Simon Glass66ded172014-04-10 20:01:28 -0600134 };
135
136 char presskey[MAX_DELAY_STOP_STR];
137 u_int presskey_len = 0;
138 u_int presskey_max = 0;
139 u_int i;
140
Simon Glass66ded172014-04-10 20:01:28 -0600141# ifdef CONFIG_AUTOBOOT_DELAY_STR
142 if (delaykey[0].str == NULL)
143 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
144# endif
Simon Glass66ded172014-04-10 20:01:28 -0600145# ifdef CONFIG_AUTOBOOT_STOP_STR
Stefan Roese2d908fa2015-05-18 14:08:22 +0200146 if (delaykey[1].str == NULL)
147 delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR;
Simon Glass66ded172014-04-10 20:01:28 -0600148# endif
149
150 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
151 delaykey[i].len = delaykey[i].str == NULL ?
152 0 : strlen(delaykey[i].str);
153 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
154 MAX_DELAY_STOP_STR : delaykey[i].len;
155
156 presskey_max = presskey_max > delaykey[i].len ?
157 presskey_max : delaykey[i].len;
158
159 debug_bootkeys("%s key:<%s>\n",
160 delaykey[i].retry ? "delay" : "stop",
161 delaykey[i].str ? delaykey[i].str : "NULL");
162 }
163
164 /* In order to keep up with incoming data, check timeout only
165 * when catch up.
166 */
167 do {
168 if (tstc()) {
169 if (presskey_len < presskey_max) {
170 presskey[presskey_len++] = getc();
171 } else {
172 for (i = 0; i < presskey_max - 1; i++)
173 presskey[i] = presskey[i + 1];
174
175 presskey[i] = getc();
176 }
177 }
178
179 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
180 if (delaykey[i].len > 0 &&
181 presskey_len >= delaykey[i].len &&
182 memcmp(presskey + presskey_len -
183 delaykey[i].len, delaykey[i].str,
184 delaykey[i].len) == 0) {
185 debug_bootkeys("got %skey\n",
186 delaykey[i].retry ? "delay" :
187 "stop");
188
Simon Glass66ded172014-04-10 20:01:28 -0600189 /* don't retry auto boot */
190 if (!delaykey[i].retry)
191 bootretry_dont_retry();
Simon Glass66ded172014-04-10 20:01:28 -0600192 abort = 1;
193 }
194 }
195 } while (!abort && get_ticks() <= etime);
196
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200197 return abort;
198}
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200199
200/***************************************************************************
201 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
202 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
203 */
Simon Glasse79e4b22019-07-20 20:51:19 -0600204static int abortboot_key_sequence(int bootdelay)
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200205{
206 int abort;
207 uint64_t etime = endtick(bootdelay);
208
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200209# ifdef CONFIG_AUTOBOOT_PROMPT
210 /*
211 * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards.
212 * To print the bootdelay value upon bootup.
213 */
214 printf(CONFIG_AUTOBOOT_PROMPT, bootdelay);
215# endif
216
Simon Glasse8c78052019-07-20 20:51:16 -0600217 if (IS_ENABLED(CONFIG_AUTOBOOT_ENCRYPTION))
218 abort = passwd_abort_sha256(etime);
219 else
220 abort = passwd_abort_key(etime);
Simon Glass66ded172014-04-10 20:01:28 -0600221 if (!abort)
222 debug_bootkeys("key timeout\n");
223
Simon Glass66ded172014-04-10 20:01:28 -0600224 return abort;
225}
226
Simon Glass8fc31e22019-07-20 20:51:21 -0600227#ifdef CONFIG_USE_AUTOBOOT_MENUKEY
Simon Glass66ded172014-04-10 20:01:28 -0600228static int menukey;
229#endif
230
Simon Glasse79e4b22019-07-20 20:51:19 -0600231static int abortboot_single_key(int bootdelay)
Simon Glass66ded172014-04-10 20:01:28 -0600232{
233 int abort = 0;
234 unsigned long ts;
235
Masahiro Yamada46327392016-06-27 16:23:04 +0900236 printf("Hit any key to stop autoboot: %2d ", bootdelay);
Simon Glass66ded172014-04-10 20:01:28 -0600237
Simon Glass66ded172014-04-10 20:01:28 -0600238 /*
239 * Check if key already pressed
Simon Glass66ded172014-04-10 20:01:28 -0600240 */
Masahiro Yamada46327392016-06-27 16:23:04 +0900241 if (tstc()) { /* we got a key press */
242 (void) getc(); /* consume input */
243 puts("\b\b\b 0");
244 abort = 1; /* don't auto boot */
Simon Glass66ded172014-04-10 20:01:28 -0600245 }
Simon Glass66ded172014-04-10 20:01:28 -0600246
247 while ((bootdelay > 0) && (!abort)) {
248 --bootdelay;
249 /* delay 1000 ms */
250 ts = get_timer(0);
251 do {
252 if (tstc()) { /* we got a key press */
253 abort = 1; /* don't auto boot */
254 bootdelay = 0; /* no more delay */
Simon Glass8fc31e22019-07-20 20:51:21 -0600255# ifdef CONFIG_USE_AUTOBOOT_MENUKEY
Simon Glass66ded172014-04-10 20:01:28 -0600256 menukey = getc();
257# else
258 (void) getc(); /* consume input */
259# endif
260 break;
261 }
262 udelay(10000);
263 } while (!abort && get_timer(ts) < 1000);
264
265 printf("\b\b\b%2d ", bootdelay);
266 }
267
268 putc('\n');
269
Simon Glass66ded172014-04-10 20:01:28 -0600270 return abort;
271}
Simon Glass66ded172014-04-10 20:01:28 -0600272
273static int abortboot(int bootdelay)
274{
Masahiro Yamada46327392016-06-27 16:23:04 +0900275 int abort = 0;
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900276
Simon Glasse79e4b22019-07-20 20:51:19 -0600277 if (bootdelay >= 0) {
278 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
279 abort = abortboot_key_sequence(bootdelay);
280 else
281 abort = abortboot_single_key(bootdelay);
282 }
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900283
Simon Glass42b4d142019-07-20 20:51:18 -0600284 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && abort)
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900285 gd->flags &= ~GD_FLG_SILENT;
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900286
287 return abort;
Simon Glass66ded172014-04-10 20:01:28 -0600288}
289
Simon Glass66ded172014-04-10 20:01:28 -0600290static void process_fdt_options(const void *blob)
291{
Stefan Roese9f736902016-01-28 17:34:40 +0100292#if defined(CONFIG_OF_CONTROL) && defined(CONFIG_SYS_TEXT_BASE)
Simon Glass66ded172014-04-10 20:01:28 -0600293 ulong addr;
294
295 /* Add an env variable to point to a kernel payload, if available */
296 addr = fdtdec_get_config_int(gd->fdt_blob, "kernel-offset", 0);
297 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600298 env_set_addr("kernaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Simon Glass66ded172014-04-10 20:01:28 -0600299
300 /* Add an env variable to point to a root disk, if available */
301 addr = fdtdec_get_config_int(gd->fdt_blob, "rootdisk-offset", 0);
302 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600303 env_set_addr("rootaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Stefan Roese9f736902016-01-28 17:34:40 +0100304#endif /* CONFIG_OF_CONTROL && CONFIG_SYS_TEXT_BASE */
Simon Glassaffb2152014-04-10 20:01:35 -0600305}
Simon Glass66ded172014-04-10 20:01:28 -0600306
Simon Glassaffb2152014-04-10 20:01:35 -0600307const char *bootdelay_process(void)
Simon Glass66ded172014-04-10 20:01:28 -0600308{
Simon Glass66ded172014-04-10 20:01:28 -0600309 char *s;
310 int bootdelay;
Simon Glass66ded172014-04-10 20:01:28 -0600311
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200312 bootcount_inc();
Simon Glass66ded172014-04-10 20:01:28 -0600313
Simon Glass00caae62017-08-03 12:22:12 -0600314 s = env_get("bootdelay");
Simon Glass66ded172014-04-10 20:01:28 -0600315 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
316
317#ifdef CONFIG_OF_CONTROL
318 bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay",
319 bootdelay);
320#endif
321
322 debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
323
324#if defined(CONFIG_MENU_SHOW)
325 bootdelay = menu_show(bootdelay);
326#endif
Simon Glassb26440f2014-04-10 20:01:31 -0600327 bootretry_init_cmd_timeout();
Simon Glass66ded172014-04-10 20:01:28 -0600328
329#ifdef CONFIG_POST
330 if (gd->flags & GD_FLG_POSTFAIL) {
Simon Glass00caae62017-08-03 12:22:12 -0600331 s = env_get("failbootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600332 } else
333#endif /* CONFIG_POST */
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200334 if (bootcount_error())
Simon Glass00caae62017-08-03 12:22:12 -0600335 s = env_get("altbootcmd");
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200336 else
Simon Glass00caae62017-08-03 12:22:12 -0600337 s = env_get("bootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600338
339 process_fdt_options(gd->fdt_blob);
Simon Glassaffb2152014-04-10 20:01:35 -0600340 stored_bootdelay = bootdelay;
Simon Glass66ded172014-04-10 20:01:28 -0600341
Simon Glassaffb2152014-04-10 20:01:35 -0600342 return s;
343}
Simon Glass66ded172014-04-10 20:01:28 -0600344
Simon Glassaffb2152014-04-10 20:01:35 -0600345void autoboot_command(const char *s)
346{
Simon Glass66ded172014-04-10 20:01:28 -0600347 debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
348
Simon Glassaffb2152014-04-10 20:01:35 -0600349 if (stored_bootdelay != -1 && s && !abortboot(stored_bootdelay)) {
Simon Glass66ded172014-04-10 20:01:28 -0600350#if defined(CONFIG_AUTOBOOT_KEYED) && !defined(CONFIG_AUTOBOOT_KEYED_CTRLC)
351 int prev = disable_ctrlc(1); /* disable Control C checking */
352#endif
353
354 run_command_list(s, -1, 0);
355
356#if defined(CONFIG_AUTOBOOT_KEYED) && !defined(CONFIG_AUTOBOOT_KEYED_CTRLC)
357 disable_ctrlc(prev); /* restore Control C checking */
358#endif
359 }
360
Simon Glass8fc31e22019-07-20 20:51:21 -0600361#ifdef CONFIG_USE_AUTOBOOT_MENUKEY
362 if (menukey == CONFIG_AUTOBOOT_MENUKEY) {
Simon Glass00caae62017-08-03 12:22:12 -0600363 s = env_get("menucmd");
Simon Glass66ded172014-04-10 20:01:28 -0600364 if (s)
365 run_command_list(s, -1, 0);
366 }
Simon Glass8fc31e22019-07-20 20:51:21 -0600367#endif /* CONFIG_USE_AUTOBOOT_MENUKEY */
Simon Glass66ded172014-04-10 20:01:28 -0600368}