blob: 0bb08e7a4cf9366ba0ad58481472bcc0b406e5aa [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 Glass288b29e2019-11-14 12:57:43 -070011#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070012#include <console.h>
Simon Glassc7694dd2019-08-01 09:46:46 -060013#include <env.h>
Simon Glass66ded172014-04-10 20:01:28 -060014#include <fdtdec.h>
Simon Glasse8c78052019-07-20 20:51:16 -060015#include <hash.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060016#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070017#include <malloc.h>
Heiko Schocherecaae802019-07-29 07:23:19 +020018#include <memalign.h>
Simon Glass66ded172014-04-10 20:01:28 -060019#include <menu.h>
20#include <post.h>
Simon Glass10453152019-11-14 12:57:30 -070021#include <time.h>
Simon Glass401d1c42020-10-30 21:38:53 -060022#include <asm/global_data.h>
Simon Glassc05ed002020-05-10 11:40:11 -060023#include <linux/delay.h>
Stefan Roese8f0b1e22015-05-18 14:08:24 +020024#include <u-boot/sha256.h>
Lukasz Majewskibc8c4402018-05-02 16:10:53 +020025#include <bootcount.h>
Simon Glass66ded172014-04-10 20:01:28 -060026
27DECLARE_GLOBAL_DATA_PTR;
28
Joel Peshkin652b5042020-11-21 17:18:59 -080029#define MAX_DELAY_STOP_STR 64
Simon Glass66ded172014-04-10 20:01:28 -060030
31#ifndef DEBUG_BOOTKEYS
32#define DEBUG_BOOTKEYS 0
33#endif
34#define debug_bootkeys(fmt, args...) \
35 debug_cond(DEBUG_BOOTKEYS, fmt, ##args)
36
Simon Glassaffb2152014-04-10 20:01:35 -060037/* Stored value of bootdelay, used by autoboot_command() */
38static int stored_bootdelay;
Simon Glassd915ad22019-07-20 20:51:23 -060039static int menukey;
Simon Glassaffb2152014-04-10 20:01:35 -060040
Simon Glass0c4bd312019-07-20 20:51:15 -060041#ifdef CONFIG_AUTOBOOT_ENCRYPTION
42#define AUTOBOOT_STOP_STR_SHA256 CONFIG_AUTOBOOT_STOP_STR_SHA256
43#else
44#define AUTOBOOT_STOP_STR_SHA256 ""
45#endif
46
Simon Glassd915ad22019-07-20 20:51:23 -060047#ifdef CONFIG_USE_AUTOBOOT_MENUKEY
48#define AUTOBOOT_MENUKEY CONFIG_USE_AUTOBOOT_MENUKEY
49#else
50#define AUTOBOOT_MENUKEY 0
51#endif
52
Stefan Roese8f0b1e22015-05-18 14:08:24 +020053/*
54 * Use a "constant-length" time compare function for this
55 * hash compare:
56 *
57 * https://crackstation.net/hashing-security.htm
Simon Glass66ded172014-04-10 20:01:28 -060058 */
Stefan Roese8f0b1e22015-05-18 14:08:24 +020059static int slow_equals(u8 *a, u8 *b, int len)
60{
61 int diff = 0;
62 int i;
63
64 for (i = 0; i < len; i++)
65 diff |= a[i] ^ b[i];
66
67 return diff == 0;
68}
69
Simon Glass88fa4be2019-07-20 20:51:17 -060070/**
71 * passwd_abort_sha256() - check for a hashed key sequence to abort booting
72 *
73 * This checks for the user entering a SHA256 hash within a given time.
74 *
75 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
76 * @return 0 if autoboot should continue, 1 if it should stop
77 */
Simon Glasse8c78052019-07-20 20:51:16 -060078static int passwd_abort_sha256(uint64_t etime)
Stefan Roese8f0b1e22015-05-18 14:08:24 +020079{
Simon Glass00caae62017-08-03 12:22:12 -060080 const char *sha_env_str = env_get("bootstopkeysha256");
Stefan Roese8f0b1e22015-05-18 14:08:24 +020081 u8 sha_env[SHA256_SUM_LEN];
Heiko Schocherecaae802019-07-29 07:23:19 +020082 u8 *sha;
83 char *presskey;
Joel Peshkin652b5042020-11-21 17:18:59 -080084 char *c;
Stefan Roese8f0b1e22015-05-18 14:08:24 +020085 const char *algo_name = "sha256";
86 u_int presskey_len = 0;
87 int abort = 0;
Martin Etnestad2d06fd82018-01-12 09:04:38 +010088 int size = sizeof(sha);
Stefan Roese8f0b1e22015-05-18 14:08:24 +020089 int ret;
90
91 if (sha_env_str == NULL)
Simon Glass0c4bd312019-07-20 20:51:15 -060092 sha_env_str = AUTOBOOT_STOP_STR_SHA256;
Stefan Roese8f0b1e22015-05-18 14:08:24 +020093
Joel Peshkin652b5042020-11-21 17:18:59 -080094 presskey = malloc_cache_aligned(MAX_DELAY_STOP_STR);
95 c = strstr(sha_env_str, ":");
96 if (c && (c - sha_env_str < MAX_DELAY_STOP_STR)) {
97 /* preload presskey with salt */
98 memcpy(presskey, sha_env_str, c - sha_env_str);
99 presskey_len = c - sha_env_str;
100 sha_env_str = c + 1;
101 }
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200102 /*
103 * Generate the binary value from the environment hash value
104 * so that we can compare this value with the computed hash
105 * from the user input
106 */
107 ret = hash_parse_string(algo_name, sha_env_str, sha_env);
108 if (ret) {
109 printf("Hash %s not supported!\n", algo_name);
110 return 0;
111 }
112
Heiko Schocherecaae802019-07-29 07:23:19 +0200113 sha = malloc_cache_aligned(SHA256_SUM_LEN);
114 size = SHA256_SUM_LEN;
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200115 /*
116 * We don't know how long the stop-string is, so we need to
117 * generate the sha256 hash upon each input character and
118 * compare the value with the one saved in the environment
119 */
120 do {
121 if (tstc()) {
122 /* Check for input string overflow */
Heiko Schocherecaae802019-07-29 07:23:19 +0200123 if (presskey_len >= MAX_DELAY_STOP_STR) {
124 free(presskey);
125 free(sha);
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200126 return 0;
Heiko Schocherecaae802019-07-29 07:23:19 +0200127 }
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200128
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200129 presskey[presskey_len++] = getchar();
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200130
131 /* Calculate sha256 upon each new char */
132 hash_block(algo_name, (const void *)presskey,
133 presskey_len, sha, &size);
134
135 /* And check if sha matches saved value in env */
136 if (slow_equals(sha, sha_env, SHA256_SUM_LEN))
137 abort = 1;
138 }
139 } while (!abort && get_ticks() <= etime);
140
Heiko Schocherecaae802019-07-29 07:23:19 +0200141 free(presskey);
142 free(sha);
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200143 return abort;
144}
Simon Glasse8c78052019-07-20 20:51:16 -0600145
Simon Glass88fa4be2019-07-20 20:51:17 -0600146/**
147 * passwd_abort_key() - check for a key sequence to aborted booting
148 *
149 * This checks for the user entering a string within a given time.
150 *
151 * @etime: Timeout value ticks (stop when get_ticks() reachs this)
152 * @return 0 if autoboot should continue, 1 if it should stop
153 */
Simon Glasse8c78052019-07-20 20:51:16 -0600154static int passwd_abort_key(uint64_t etime)
Simon Glass66ded172014-04-10 20:01:28 -0600155{
156 int abort = 0;
Simon Glass66ded172014-04-10 20:01:28 -0600157 struct {
158 char *str;
159 u_int len;
160 int retry;
161 }
162 delaykey[] = {
Simon Glass00caae62017-08-03 12:22:12 -0600163 { .str = env_get("bootdelaykey"), .retry = 1 },
164 { .str = env_get("bootstopkey"), .retry = 0 },
Simon Glass66ded172014-04-10 20:01:28 -0600165 };
166
167 char presskey[MAX_DELAY_STOP_STR];
Yuezhang.Mo@sony.come088f0c2021-01-15 03:11:49 +0000168 int presskey_len = 0;
169 int presskey_max = 0;
170 int i;
Simon Glass66ded172014-04-10 20:01:28 -0600171
Simon Glass66ded172014-04-10 20:01:28 -0600172# ifdef CONFIG_AUTOBOOT_DELAY_STR
173 if (delaykey[0].str == NULL)
174 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
175# endif
Simon Glass66ded172014-04-10 20:01:28 -0600176# ifdef CONFIG_AUTOBOOT_STOP_STR
Stefan Roese2d908fa2015-05-18 14:08:22 +0200177 if (delaykey[1].str == NULL)
178 delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR;
Simon Glass66ded172014-04-10 20:01:28 -0600179# endif
180
181 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
182 delaykey[i].len = delaykey[i].str == NULL ?
183 0 : strlen(delaykey[i].str);
184 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
185 MAX_DELAY_STOP_STR : delaykey[i].len;
186
187 presskey_max = presskey_max > delaykey[i].len ?
188 presskey_max : delaykey[i].len;
189
190 debug_bootkeys("%s key:<%s>\n",
191 delaykey[i].retry ? "delay" : "stop",
192 delaykey[i].str ? delaykey[i].str : "NULL");
193 }
194
195 /* In order to keep up with incoming data, check timeout only
196 * when catch up.
197 */
198 do {
199 if (tstc()) {
200 if (presskey_len < presskey_max) {
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200201 presskey[presskey_len++] = getchar();
Simon Glass66ded172014-04-10 20:01:28 -0600202 } else {
203 for (i = 0; i < presskey_max - 1; i++)
204 presskey[i] = presskey[i + 1];
205
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200206 presskey[i] = getchar();
Simon Glass66ded172014-04-10 20:01:28 -0600207 }
208 }
209
210 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
211 if (delaykey[i].len > 0 &&
212 presskey_len >= delaykey[i].len &&
213 memcmp(presskey + presskey_len -
214 delaykey[i].len, delaykey[i].str,
215 delaykey[i].len) == 0) {
216 debug_bootkeys("got %skey\n",
217 delaykey[i].retry ? "delay" :
218 "stop");
219
Simon Glass66ded172014-04-10 20:01:28 -0600220 /* don't retry auto boot */
221 if (!delaykey[i].retry)
222 bootretry_dont_retry();
Simon Glass66ded172014-04-10 20:01:28 -0600223 abort = 1;
224 }
225 }
226 } while (!abort && get_ticks() <= etime);
227
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200228 return abort;
229}
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200230
231/***************************************************************************
232 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
233 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
234 */
Simon Glasse79e4b22019-07-20 20:51:19 -0600235static int abortboot_key_sequence(int bootdelay)
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200236{
237 int abort;
238 uint64_t etime = endtick(bootdelay);
239
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200240# ifdef CONFIG_AUTOBOOT_PROMPT
241 /*
242 * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards.
243 * To print the bootdelay value upon bootup.
244 */
245 printf(CONFIG_AUTOBOOT_PROMPT, bootdelay);
246# endif
247
Simon Glasse8c78052019-07-20 20:51:16 -0600248 if (IS_ENABLED(CONFIG_AUTOBOOT_ENCRYPTION))
249 abort = passwd_abort_sha256(etime);
250 else
251 abort = passwd_abort_key(etime);
Simon Glass66ded172014-04-10 20:01:28 -0600252 if (!abort)
253 debug_bootkeys("key timeout\n");
254
Simon Glass66ded172014-04-10 20:01:28 -0600255 return abort;
256}
257
Simon Glasse79e4b22019-07-20 20:51:19 -0600258static int abortboot_single_key(int bootdelay)
Simon Glass66ded172014-04-10 20:01:28 -0600259{
260 int abort = 0;
261 unsigned long ts;
262
Masahiro Yamada46327392016-06-27 16:23:04 +0900263 printf("Hit any key to stop autoboot: %2d ", bootdelay);
Simon Glass66ded172014-04-10 20:01:28 -0600264
Simon Glass66ded172014-04-10 20:01:28 -0600265 /*
266 * Check if key already pressed
Simon Glass66ded172014-04-10 20:01:28 -0600267 */
Masahiro Yamada46327392016-06-27 16:23:04 +0900268 if (tstc()) { /* we got a key press */
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200269 getchar(); /* consume input */
Masahiro Yamada46327392016-06-27 16:23:04 +0900270 puts("\b\b\b 0");
271 abort = 1; /* don't auto boot */
Simon Glass66ded172014-04-10 20:01:28 -0600272 }
Simon Glass66ded172014-04-10 20:01:28 -0600273
274 while ((bootdelay > 0) && (!abort)) {
275 --bootdelay;
276 /* delay 1000 ms */
277 ts = get_timer(0);
278 do {
279 if (tstc()) { /* we got a key press */
Simon Glassd915ad22019-07-20 20:51:23 -0600280 int key;
281
Simon Glass66ded172014-04-10 20:01:28 -0600282 abort = 1; /* don't auto boot */
283 bootdelay = 0; /* no more delay */
Heinrich Schuchardtc670aee2020-10-07 18:11:48 +0200284 key = getchar();/* consume input */
Simon Glassd915ad22019-07-20 20:51:23 -0600285 if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY))
286 menukey = key;
Simon Glass66ded172014-04-10 20:01:28 -0600287 break;
288 }
289 udelay(10000);
290 } while (!abort && get_timer(ts) < 1000);
291
292 printf("\b\b\b%2d ", bootdelay);
293 }
294
295 putc('\n');
296
Simon Glass66ded172014-04-10 20:01:28 -0600297 return abort;
298}
Simon Glass66ded172014-04-10 20:01:28 -0600299
300static int abortboot(int bootdelay)
301{
Masahiro Yamada46327392016-06-27 16:23:04 +0900302 int abort = 0;
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900303
Simon Glasse79e4b22019-07-20 20:51:19 -0600304 if (bootdelay >= 0) {
305 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
306 abort = abortboot_key_sequence(bootdelay);
307 else
308 abort = abortboot_single_key(bootdelay);
309 }
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900310
Simon Glass42b4d142019-07-20 20:51:18 -0600311 if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && abort)
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900312 gd->flags &= ~GD_FLG_SILENT;
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900313
314 return abort;
Simon Glass66ded172014-04-10 20:01:28 -0600315}
316
Simon Glass66ded172014-04-10 20:01:28 -0600317static void process_fdt_options(const void *blob)
318{
Simon Glass5fa3fd22019-07-20 20:51:27 -0600319#ifdef CONFIG_SYS_TEXT_BASE
Simon Glass66ded172014-04-10 20:01:28 -0600320 ulong addr;
321
322 /* Add an env variable to point to a kernel payload, if available */
323 addr = fdtdec_get_config_int(gd->fdt_blob, "kernel-offset", 0);
324 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600325 env_set_addr("kernaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Simon Glass66ded172014-04-10 20:01:28 -0600326
327 /* Add an env variable to point to a root disk, if available */
328 addr = fdtdec_get_config_int(gd->fdt_blob, "rootdisk-offset", 0);
329 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600330 env_set_addr("rootaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Simon Glass5fa3fd22019-07-20 20:51:27 -0600331#endif /* CONFIG_SYS_TEXT_BASE */
Simon Glassaffb2152014-04-10 20:01:35 -0600332}
Simon Glass66ded172014-04-10 20:01:28 -0600333
Simon Glassaffb2152014-04-10 20:01:35 -0600334const char *bootdelay_process(void)
Simon Glass66ded172014-04-10 20:01:28 -0600335{
Simon Glass66ded172014-04-10 20:01:28 -0600336 char *s;
337 int bootdelay;
Simon Glass66ded172014-04-10 20:01:28 -0600338
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200339 bootcount_inc();
Simon Glass66ded172014-04-10 20:01:28 -0600340
Simon Glass00caae62017-08-03 12:22:12 -0600341 s = env_get("bootdelay");
Simon Glass66ded172014-04-10 20:01:28 -0600342 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
343
Simon Glass5fa3fd22019-07-20 20:51:27 -0600344 if (IS_ENABLED(CONFIG_OF_CONTROL))
345 bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay",
346 bootdelay);
Simon Glass66ded172014-04-10 20:01:28 -0600347
348 debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
349
Simon Glass5fa3fd22019-07-20 20:51:27 -0600350 if (IS_ENABLED(CONFIG_AUTOBOOT_MENU_SHOW))
351 bootdelay = menu_show(bootdelay);
Simon Glassb26440f2014-04-10 20:01:31 -0600352 bootretry_init_cmd_timeout();
Simon Glass66ded172014-04-10 20:01:28 -0600353
354#ifdef CONFIG_POST
355 if (gd->flags & GD_FLG_POSTFAIL) {
Simon Glass00caae62017-08-03 12:22:12 -0600356 s = env_get("failbootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600357 } else
358#endif /* CONFIG_POST */
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200359 if (bootcount_error())
Simon Glass00caae62017-08-03 12:22:12 -0600360 s = env_get("altbootcmd");
Lukasz Majewskibc8c4402018-05-02 16:10:53 +0200361 else
Simon Glass00caae62017-08-03 12:22:12 -0600362 s = env_get("bootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600363
Simon Glass5fa3fd22019-07-20 20:51:27 -0600364 if (IS_ENABLED(CONFIG_OF_CONTROL))
365 process_fdt_options(gd->fdt_blob);
Simon Glassaffb2152014-04-10 20:01:35 -0600366 stored_bootdelay = bootdelay;
Simon Glass66ded172014-04-10 20:01:28 -0600367
Simon Glassaffb2152014-04-10 20:01:35 -0600368 return s;
369}
Simon Glass66ded172014-04-10 20:01:28 -0600370
Simon Glassaffb2152014-04-10 20:01:35 -0600371void autoboot_command(const char *s)
372{
Simon Glass66ded172014-04-10 20:01:28 -0600373 debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
374
Heiko Schocher6ebe6b32020-10-07 08:06:54 +0200375 if (s && (stored_bootdelay == -2 ||
376 (stored_bootdelay != -1 && !abortboot(stored_bootdelay)))) {
Simon Glass5ec35ff2019-07-20 20:51:28 -0600377 bool lock;
378 int prev;
379
380 lock = IS_ENABLED(CONFIG_AUTOBOOT_KEYED) &&
381 !IS_ENABLED(CONFIG_AUTOBOOT_KEYED_CTRLC);
382 if (lock)
383 prev = disable_ctrlc(1); /* disable Ctrl-C checking */
Simon Glass66ded172014-04-10 20:01:28 -0600384
385 run_command_list(s, -1, 0);
386
Simon Glass5ec35ff2019-07-20 20:51:28 -0600387 if (lock)
388 disable_ctrlc(prev); /* restore Ctrl-C checking */
Simon Glass66ded172014-04-10 20:01:28 -0600389 }
390
Simon Glassd915ad22019-07-20 20:51:23 -0600391 if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY) &&
392 menukey == AUTOBOOT_MENUKEY) {
Simon Glass00caae62017-08-03 12:22:12 -0600393 s = env_get("menucmd");
Simon Glass66ded172014-04-10 20:01:28 -0600394 if (s)
395 run_command_list(s, -1, 0);
396 }
Simon Glass66ded172014-04-10 20:01:28 -0600397}