blob: 9b9fb534f0877530010a91e171f16407af7cc935 [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>
13#include <menu.h>
14#include <post.h>
Stefan Roese8f0b1e22015-05-18 14:08:24 +020015#include <u-boot/sha256.h>
Simon Glass66ded172014-04-10 20:01:28 -060016
17DECLARE_GLOBAL_DATA_PTR;
18
19#define MAX_DELAY_STOP_STR 32
20
21#ifndef DEBUG_BOOTKEYS
22#define DEBUG_BOOTKEYS 0
23#endif
24#define debug_bootkeys(fmt, args...) \
25 debug_cond(DEBUG_BOOTKEYS, fmt, ##args)
26
Simon Glassaffb2152014-04-10 20:01:35 -060027/* Stored value of bootdelay, used by autoboot_command() */
28static int stored_bootdelay;
29
Stefan Roese8f0b1e22015-05-18 14:08:24 +020030#if defined(CONFIG_AUTOBOOT_KEYED)
31#if defined(CONFIG_AUTOBOOT_STOP_STR_SHA256)
32
33/*
34 * Use a "constant-length" time compare function for this
35 * hash compare:
36 *
37 * https://crackstation.net/hashing-security.htm
Simon Glass66ded172014-04-10 20:01:28 -060038 */
Stefan Roese8f0b1e22015-05-18 14:08:24 +020039static int slow_equals(u8 *a, u8 *b, int len)
40{
41 int diff = 0;
42 int i;
43
44 for (i = 0; i < len; i++)
45 diff |= a[i] ^ b[i];
46
47 return diff == 0;
48}
49
50static int passwd_abort(uint64_t etime)
51{
Simon Glass00caae62017-08-03 12:22:12 -060052 const char *sha_env_str = env_get("bootstopkeysha256");
Stefan Roese8f0b1e22015-05-18 14:08:24 +020053 u8 sha_env[SHA256_SUM_LEN];
54 u8 sha[SHA256_SUM_LEN];
55 char presskey[MAX_DELAY_STOP_STR];
56 const char *algo_name = "sha256";
57 u_int presskey_len = 0;
58 int abort = 0;
Martin Etnestad2d06fd82018-01-12 09:04:38 +010059 int size = sizeof(sha);
Stefan Roese8f0b1e22015-05-18 14:08:24 +020060 int ret;
61
62 if (sha_env_str == NULL)
63 sha_env_str = CONFIG_AUTOBOOT_STOP_STR_SHA256;
64
65 /*
66 * Generate the binary value from the environment hash value
67 * so that we can compare this value with the computed hash
68 * from the user input
69 */
70 ret = hash_parse_string(algo_name, sha_env_str, sha_env);
71 if (ret) {
72 printf("Hash %s not supported!\n", algo_name);
73 return 0;
74 }
75
76 /*
77 * We don't know how long the stop-string is, so we need to
78 * generate the sha256 hash upon each input character and
79 * compare the value with the one saved in the environment
80 */
81 do {
82 if (tstc()) {
83 /* Check for input string overflow */
84 if (presskey_len >= MAX_DELAY_STOP_STR)
85 return 0;
86
87 presskey[presskey_len++] = getc();
88
89 /* Calculate sha256 upon each new char */
90 hash_block(algo_name, (const void *)presskey,
91 presskey_len, sha, &size);
92
93 /* And check if sha matches saved value in env */
94 if (slow_equals(sha, sha_env, SHA256_SUM_LEN))
95 abort = 1;
96 }
97 } while (!abort && get_ticks() <= etime);
98
99 return abort;
100}
101#else
102static int passwd_abort(uint64_t etime)
Simon Glass66ded172014-04-10 20:01:28 -0600103{
104 int abort = 0;
Simon Glass66ded172014-04-10 20:01:28 -0600105 struct {
106 char *str;
107 u_int len;
108 int retry;
109 }
110 delaykey[] = {
Simon Glass00caae62017-08-03 12:22:12 -0600111 { .str = env_get("bootdelaykey"), .retry = 1 },
112 { .str = env_get("bootstopkey"), .retry = 0 },
Simon Glass66ded172014-04-10 20:01:28 -0600113 };
114
115 char presskey[MAX_DELAY_STOP_STR];
116 u_int presskey_len = 0;
117 u_int presskey_max = 0;
118 u_int i;
119
Simon Glass66ded172014-04-10 20:01:28 -0600120# ifdef CONFIG_AUTOBOOT_DELAY_STR
121 if (delaykey[0].str == NULL)
122 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
123# endif
Simon Glass66ded172014-04-10 20:01:28 -0600124# ifdef CONFIG_AUTOBOOT_STOP_STR
Stefan Roese2d908fa2015-05-18 14:08:22 +0200125 if (delaykey[1].str == NULL)
126 delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR;
Simon Glass66ded172014-04-10 20:01:28 -0600127# endif
128
129 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
130 delaykey[i].len = delaykey[i].str == NULL ?
131 0 : strlen(delaykey[i].str);
132 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
133 MAX_DELAY_STOP_STR : delaykey[i].len;
134
135 presskey_max = presskey_max > delaykey[i].len ?
136 presskey_max : delaykey[i].len;
137
138 debug_bootkeys("%s key:<%s>\n",
139 delaykey[i].retry ? "delay" : "stop",
140 delaykey[i].str ? delaykey[i].str : "NULL");
141 }
142
143 /* In order to keep up with incoming data, check timeout only
144 * when catch up.
145 */
146 do {
147 if (tstc()) {
148 if (presskey_len < presskey_max) {
149 presskey[presskey_len++] = getc();
150 } else {
151 for (i = 0; i < presskey_max - 1; i++)
152 presskey[i] = presskey[i + 1];
153
154 presskey[i] = getc();
155 }
156 }
157
158 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
159 if (delaykey[i].len > 0 &&
160 presskey_len >= delaykey[i].len &&
161 memcmp(presskey + presskey_len -
162 delaykey[i].len, delaykey[i].str,
163 delaykey[i].len) == 0) {
164 debug_bootkeys("got %skey\n",
165 delaykey[i].retry ? "delay" :
166 "stop");
167
Simon Glass66ded172014-04-10 20:01:28 -0600168 /* don't retry auto boot */
169 if (!delaykey[i].retry)
170 bootretry_dont_retry();
Simon Glass66ded172014-04-10 20:01:28 -0600171 abort = 1;
172 }
173 }
174 } while (!abort && get_ticks() <= etime);
175
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200176 return abort;
177}
178#endif
179
180/***************************************************************************
181 * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
182 * returns: 0 - no key string, allow autoboot 1 - got key string, abort
183 */
Masahiro Yamadad8da8292016-06-27 16:23:02 +0900184static int __abortboot(int bootdelay)
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200185{
186 int abort;
187 uint64_t etime = endtick(bootdelay);
188
Stefan Roese8f0b1e22015-05-18 14:08:24 +0200189# ifdef CONFIG_AUTOBOOT_PROMPT
190 /*
191 * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards.
192 * To print the bootdelay value upon bootup.
193 */
194 printf(CONFIG_AUTOBOOT_PROMPT, bootdelay);
195# endif
196
197 abort = passwd_abort(etime);
Simon Glass66ded172014-04-10 20:01:28 -0600198 if (!abort)
199 debug_bootkeys("key timeout\n");
200
Simon Glass66ded172014-04-10 20:01:28 -0600201 return abort;
202}
203
204# else /* !defined(CONFIG_AUTOBOOT_KEYED) */
205
206#ifdef CONFIG_MENUKEY
207static int menukey;
208#endif
209
Masahiro Yamadad8da8292016-06-27 16:23:02 +0900210static int __abortboot(int bootdelay)
Simon Glass66ded172014-04-10 20:01:28 -0600211{
212 int abort = 0;
213 unsigned long ts;
214
215#ifdef CONFIG_MENUPROMPT
216 printf(CONFIG_MENUPROMPT);
217#else
Masahiro Yamada46327392016-06-27 16:23:04 +0900218 printf("Hit any key to stop autoboot: %2d ", bootdelay);
Simon Glass66ded172014-04-10 20:01:28 -0600219#endif
220
Simon Glass66ded172014-04-10 20:01:28 -0600221 /*
222 * Check if key already pressed
Simon Glass66ded172014-04-10 20:01:28 -0600223 */
Masahiro Yamada46327392016-06-27 16:23:04 +0900224 if (tstc()) { /* we got a key press */
225 (void) getc(); /* consume input */
226 puts("\b\b\b 0");
227 abort = 1; /* don't auto boot */
Simon Glass66ded172014-04-10 20:01:28 -0600228 }
Simon Glass66ded172014-04-10 20:01:28 -0600229
230 while ((bootdelay > 0) && (!abort)) {
231 --bootdelay;
232 /* delay 1000 ms */
233 ts = get_timer(0);
234 do {
235 if (tstc()) { /* we got a key press */
236 abort = 1; /* don't auto boot */
237 bootdelay = 0; /* no more delay */
238# ifdef CONFIG_MENUKEY
239 menukey = getc();
240# else
241 (void) getc(); /* consume input */
242# endif
243 break;
244 }
245 udelay(10000);
246 } while (!abort && get_timer(ts) < 1000);
247
248 printf("\b\b\b%2d ", bootdelay);
249 }
250
251 putc('\n');
252
Simon Glass66ded172014-04-10 20:01:28 -0600253 return abort;
254}
255# endif /* CONFIG_AUTOBOOT_KEYED */
256
257static int abortboot(int bootdelay)
258{
Masahiro Yamada46327392016-06-27 16:23:04 +0900259 int abort = 0;
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900260
Masahiro Yamada46327392016-06-27 16:23:04 +0900261 if (bootdelay >= 0)
262 abort = __abortboot(bootdelay);
Masahiro Yamada09b9d9e2016-06-27 16:23:03 +0900263
264#ifdef CONFIG_SILENT_CONSOLE
265 if (abort)
266 gd->flags &= ~GD_FLG_SILENT;
267#endif
268
269 return abort;
Simon Glass66ded172014-04-10 20:01:28 -0600270}
271
Simon Glass66ded172014-04-10 20:01:28 -0600272static void process_fdt_options(const void *blob)
273{
Stefan Roese9f736902016-01-28 17:34:40 +0100274#if defined(CONFIG_OF_CONTROL) && defined(CONFIG_SYS_TEXT_BASE)
Simon Glass66ded172014-04-10 20:01:28 -0600275 ulong addr;
276
277 /* Add an env variable to point to a kernel payload, if available */
278 addr = fdtdec_get_config_int(gd->fdt_blob, "kernel-offset", 0);
279 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600280 env_set_addr("kernaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Simon Glass66ded172014-04-10 20:01:28 -0600281
282 /* Add an env variable to point to a root disk, if available */
283 addr = fdtdec_get_config_int(gd->fdt_blob, "rootdisk-offset", 0);
284 if (addr)
Simon Glass018f5302017-08-03 12:22:10 -0600285 env_set_addr("rootaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
Stefan Roese9f736902016-01-28 17:34:40 +0100286#endif /* CONFIG_OF_CONTROL && CONFIG_SYS_TEXT_BASE */
Simon Glassaffb2152014-04-10 20:01:35 -0600287}
Simon Glass66ded172014-04-10 20:01:28 -0600288
Simon Glassaffb2152014-04-10 20:01:35 -0600289const char *bootdelay_process(void)
Simon Glass66ded172014-04-10 20:01:28 -0600290{
Simon Glass66ded172014-04-10 20:01:28 -0600291 char *s;
292 int bootdelay;
293#ifdef CONFIG_BOOTCOUNT_LIMIT
294 unsigned long bootcount = 0;
295 unsigned long bootlimit = 0;
296#endif /* CONFIG_BOOTCOUNT_LIMIT */
297
298#ifdef CONFIG_BOOTCOUNT_LIMIT
299 bootcount = bootcount_load();
300 bootcount++;
301 bootcount_store(bootcount);
Simon Glass018f5302017-08-03 12:22:10 -0600302 env_set_ulong("bootcount", bootcount);
Simon Glassbfebc8c2017-08-03 12:22:13 -0600303 bootlimit = env_get_ulong("bootlimit", 10, 0);
Simon Glass66ded172014-04-10 20:01:28 -0600304#endif /* CONFIG_BOOTCOUNT_LIMIT */
305
Simon Glass00caae62017-08-03 12:22:12 -0600306 s = env_get("bootdelay");
Simon Glass66ded172014-04-10 20:01:28 -0600307 bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
308
309#ifdef CONFIG_OF_CONTROL
310 bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay",
311 bootdelay);
312#endif
313
314 debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
315
316#if defined(CONFIG_MENU_SHOW)
317 bootdelay = menu_show(bootdelay);
318#endif
Simon Glassb26440f2014-04-10 20:01:31 -0600319 bootretry_init_cmd_timeout();
Simon Glass66ded172014-04-10 20:01:28 -0600320
321#ifdef CONFIG_POST
322 if (gd->flags & GD_FLG_POSTFAIL) {
Simon Glass00caae62017-08-03 12:22:12 -0600323 s = env_get("failbootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600324 } else
325#endif /* CONFIG_POST */
326#ifdef CONFIG_BOOTCOUNT_LIMIT
327 if (bootlimit && (bootcount > bootlimit)) {
328 printf("Warning: Bootlimit (%u) exceeded. Using altbootcmd.\n",
329 (unsigned)bootlimit);
Simon Glass00caae62017-08-03 12:22:12 -0600330 s = env_get("altbootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600331 } else
332#endif /* CONFIG_BOOTCOUNT_LIMIT */
Simon Glass00caae62017-08-03 12:22:12 -0600333 s = env_get("bootcmd");
Simon Glass66ded172014-04-10 20:01:28 -0600334
335 process_fdt_options(gd->fdt_blob);
Simon Glassaffb2152014-04-10 20:01:35 -0600336 stored_bootdelay = bootdelay;
Simon Glass66ded172014-04-10 20:01:28 -0600337
Simon Glassaffb2152014-04-10 20:01:35 -0600338 return s;
339}
Simon Glass66ded172014-04-10 20:01:28 -0600340
Simon Glassaffb2152014-04-10 20:01:35 -0600341void autoboot_command(const char *s)
342{
Simon Glass66ded172014-04-10 20:01:28 -0600343 debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
344
Simon Glassaffb2152014-04-10 20:01:35 -0600345 if (stored_bootdelay != -1 && s && !abortboot(stored_bootdelay)) {
Simon Glass66ded172014-04-10 20:01:28 -0600346#if defined(CONFIG_AUTOBOOT_KEYED) && !defined(CONFIG_AUTOBOOT_KEYED_CTRLC)
347 int prev = disable_ctrlc(1); /* disable Control C checking */
348#endif
349
350 run_command_list(s, -1, 0);
351
352#if defined(CONFIG_AUTOBOOT_KEYED) && !defined(CONFIG_AUTOBOOT_KEYED_CTRLC)
353 disable_ctrlc(prev); /* restore Control C checking */
354#endif
355 }
356
357#ifdef CONFIG_MENUKEY
358 if (menukey == CONFIG_MENUKEY) {
Simon Glass00caae62017-08-03 12:22:12 -0600359 s = env_get("menucmd");
Simon Glass66ded172014-04-10 20:01:28 -0600360 if (s)
361 run_command_list(s, -1, 0);
362 }
363#endif /* CONFIG_MENUKEY */
364}