Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Jeroen Hofstee | 39e1230 | 2014-07-13 22:57:58 +0200 | [diff] [blame] | 8 | #include <autoboot.h> |
Simon Glass | 0098e17 | 2014-04-10 20:01:30 -0600 | [diff] [blame] | 9 | #include <bootretry.h> |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 10 | #include <cli.h> |
Simon Glass | 288b29e | 2019-11-14 12:57:43 -0700 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 12 | #include <console.h> |
Simon Glass | c7694dd | 2019-08-01 09:46:46 -0600 | [diff] [blame] | 13 | #include <env.h> |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 14 | #include <fdtdec.h> |
Simon Glass | e8c7805 | 2019-07-20 20:51:16 -0600 | [diff] [blame] | 15 | #include <hash.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 16 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 17 | #include <malloc.h> |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 18 | #include <memalign.h> |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 19 | #include <menu.h> |
| 20 | #include <post.h> |
Simon Glass | 1045315 | 2019-11-14 12:57:30 -0700 | [diff] [blame] | 21 | #include <time.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 22 | #include <asm/global_data.h> |
Simon Glass | c05ed00 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 23 | #include <linux/delay.h> |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 24 | #include <u-boot/sha256.h> |
Lukasz Majewski | bc8c440 | 2018-05-02 16:10:53 +0200 | [diff] [blame] | 25 | #include <bootcount.h> |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 26 | #include <crypt.h> |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 27 | #include <dm/ofnode.h> |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 31 | #define DELAY_STOP_STR_MAX_LENGTH 64 |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 32 | |
| 33 | #ifndef DEBUG_BOOTKEYS |
| 34 | #define DEBUG_BOOTKEYS 0 |
| 35 | #endif |
| 36 | #define debug_bootkeys(fmt, args...) \ |
| 37 | debug_cond(DEBUG_BOOTKEYS, fmt, ##args) |
| 38 | |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 39 | /* Stored value of bootdelay, used by autoboot_command() */ |
| 40 | static int stored_bootdelay; |
Simon Glass | d915ad2 | 2019-07-20 20:51:23 -0600 | [diff] [blame] | 41 | static int menukey; |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 42 | |
Tom Rini | d35e44f | 2023-01-10 11:19:34 -0500 | [diff] [blame] | 43 | #if defined(CONFIG_AUTOBOOT_STOP_STR_CRYPT) |
| 44 | #define AUTOBOOT_STOP_STR_CRYPT CONFIG_AUTOBOOT_STOP_STR_CRYPT |
| 45 | #else |
| 46 | #define AUTOBOOT_STOP_STR_CRYPT "" |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 47 | #endif |
Tom Rini | d35e44f | 2023-01-10 11:19:34 -0500 | [diff] [blame] | 48 | #if defined(CONFIG_AUTOBOOT_STOP_STR_SHA256) |
| 49 | #define AUTOBOOT_STOP_STR_SHA256 CONFIG_AUTOBOOT_STOP_STR_SHA256 |
| 50 | #else |
| 51 | #define AUTOBOOT_STOP_STR_SHA256 "" |
Simon Glass | 0c4bd31 | 2019-07-20 20:51:15 -0600 | [diff] [blame] | 52 | #endif |
| 53 | |
Da Xue | 5a87df8 | 2021-06-21 22:39:19 -0400 | [diff] [blame] | 54 | #ifdef CONFIG_AUTOBOOT_USE_MENUKEY |
Da Xue | 760d2f9 | 2021-07-02 12:32:43 -0400 | [diff] [blame] | 55 | #define AUTOBOOT_MENUKEY CONFIG_AUTOBOOT_MENUKEY |
Simon Glass | d915ad2 | 2019-07-20 20:51:23 -0600 | [diff] [blame] | 56 | #else |
| 57 | #define AUTOBOOT_MENUKEY 0 |
| 58 | #endif |
| 59 | |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 60 | /** |
| 61 | * passwd_abort_crypt() - check for a crypt-style hashed key sequence to abort booting |
| 62 | * |
| 63 | * This checks for the user entering a password within a given time. |
| 64 | * |
| 65 | * The entered password is hashed via one of the crypt-style hash methods |
| 66 | * and compared to the pre-defined value from either |
| 67 | * the environment variable "bootstopkeycrypt" |
| 68 | * or |
| 69 | * the config value CONFIG_AUTOBOOT_STOP_STR_CRYPT |
| 70 | * |
Steffen Jaeckel | 6c0ce6d | 2021-07-08 15:57:37 +0200 | [diff] [blame] | 71 | * In case the config value CONFIG_AUTOBOOT_NEVER_TIMEOUT has been enabled |
| 72 | * this function never times out if the user presses the <Enter> key |
| 73 | * before starting to enter the password. |
| 74 | * |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 75 | * @etime: Timeout value ticks (stop when get_ticks() reachs this) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 76 | * Return: 0 if autoboot should continue, 1 if it should stop |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 77 | */ |
| 78 | static int passwd_abort_crypt(uint64_t etime) |
| 79 | { |
| 80 | const char *crypt_env_str = env_get("bootstopkeycrypt"); |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 81 | char presskey[DELAY_STOP_STR_MAX_LENGTH]; |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 82 | u_int presskey_len = 0; |
| 83 | int abort = 0; |
Steffen Jaeckel | 6c0ce6d | 2021-07-08 15:57:37 +0200 | [diff] [blame] | 84 | int never_timeout = 0; |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 85 | int err; |
| 86 | |
| 87 | if (IS_ENABLED(CONFIG_AUTOBOOT_STOP_STR_ENABLE) && !crypt_env_str) |
Tom Rini | d35e44f | 2023-01-10 11:19:34 -0500 | [diff] [blame] | 88 | crypt_env_str = AUTOBOOT_STOP_STR_CRYPT; |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 89 | |
| 90 | if (!crypt_env_str) |
| 91 | return 0; |
| 92 | |
| 93 | /* We expect the stop-string to be newline-terminated */ |
| 94 | do { |
| 95 | if (tstc()) { |
| 96 | /* Check for input string overflow */ |
| 97 | if (presskey_len >= sizeof(presskey)) |
| 98 | return 0; |
| 99 | |
| 100 | presskey[presskey_len] = getchar(); |
| 101 | |
| 102 | if ((presskey[presskey_len] == '\r') || |
| 103 | (presskey[presskey_len] == '\n')) { |
Steffen Jaeckel | 6c0ce6d | 2021-07-08 15:57:37 +0200 | [diff] [blame] | 104 | if (IS_ENABLED(CONFIG_AUTOBOOT_NEVER_TIMEOUT) && |
| 105 | !presskey_len) { |
| 106 | never_timeout = 1; |
| 107 | continue; |
| 108 | } |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 109 | presskey[presskey_len] = '\0'; |
| 110 | err = crypt_compare(crypt_env_str, presskey, |
| 111 | &abort); |
| 112 | if (err) |
| 113 | debug_bootkeys( |
| 114 | "crypt_compare() failed with: %s\n", |
| 115 | errno_str(err)); |
| 116 | /* you had one chance */ |
| 117 | break; |
| 118 | } else { |
| 119 | presskey_len++; |
| 120 | } |
| 121 | } |
Rasmus Villemoes | c11cedc | 2022-09-27 11:54:02 +0200 | [diff] [blame] | 122 | udelay(10000); |
Steffen Jaeckel | 6c0ce6d | 2021-07-08 15:57:37 +0200 | [diff] [blame] | 123 | } while (never_timeout || get_ticks() <= etime); |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 124 | |
| 125 | return abort; |
| 126 | } |
| 127 | |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 128 | /* |
| 129 | * Use a "constant-length" time compare function for this |
| 130 | * hash compare: |
| 131 | * |
| 132 | * https://crackstation.net/hashing-security.htm |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 133 | */ |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 134 | static int slow_equals(u8 *a, u8 *b, int len) |
| 135 | { |
| 136 | int diff = 0; |
| 137 | int i; |
| 138 | |
| 139 | for (i = 0; i < len; i++) |
| 140 | diff |= a[i] ^ b[i]; |
| 141 | |
| 142 | return diff == 0; |
| 143 | } |
| 144 | |
Simon Glass | 88fa4be | 2019-07-20 20:51:17 -0600 | [diff] [blame] | 145 | /** |
| 146 | * passwd_abort_sha256() - check for a hashed key sequence to abort booting |
| 147 | * |
| 148 | * This checks for the user entering a SHA256 hash within a given time. |
| 149 | * |
| 150 | * @etime: Timeout value ticks (stop when get_ticks() reachs this) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 151 | * Return: 0 if autoboot should continue, 1 if it should stop |
Simon Glass | 88fa4be | 2019-07-20 20:51:17 -0600 | [diff] [blame] | 152 | */ |
Simon Glass | e8c7805 | 2019-07-20 20:51:16 -0600 | [diff] [blame] | 153 | static int passwd_abort_sha256(uint64_t etime) |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 154 | { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 155 | const char *sha_env_str = env_get("bootstopkeysha256"); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 156 | u8 sha_env[SHA256_SUM_LEN]; |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 157 | u8 *sha; |
| 158 | char *presskey; |
Joel Peshkin | 652b504 | 2020-11-21 17:18:59 -0800 | [diff] [blame] | 159 | char *c; |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 160 | const char *algo_name = "sha256"; |
| 161 | u_int presskey_len = 0; |
| 162 | int abort = 0; |
Martin Etnestad | 2d06fd8 | 2018-01-12 09:04:38 +0100 | [diff] [blame] | 163 | int size = sizeof(sha); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 164 | int ret; |
| 165 | |
| 166 | if (sha_env_str == NULL) |
Tom Rini | d35e44f | 2023-01-10 11:19:34 -0500 | [diff] [blame] | 167 | sha_env_str = AUTOBOOT_STOP_STR_SHA256; |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 168 | |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 169 | presskey = malloc_cache_aligned(DELAY_STOP_STR_MAX_LENGTH); |
Joel Peshkin | 652b504 | 2020-11-21 17:18:59 -0800 | [diff] [blame] | 170 | c = strstr(sha_env_str, ":"); |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 171 | if (c && (c - sha_env_str < DELAY_STOP_STR_MAX_LENGTH)) { |
Joel Peshkin | 652b504 | 2020-11-21 17:18:59 -0800 | [diff] [blame] | 172 | /* preload presskey with salt */ |
| 173 | memcpy(presskey, sha_env_str, c - sha_env_str); |
| 174 | presskey_len = c - sha_env_str; |
| 175 | sha_env_str = c + 1; |
| 176 | } |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 177 | /* |
| 178 | * Generate the binary value from the environment hash value |
| 179 | * so that we can compare this value with the computed hash |
| 180 | * from the user input |
| 181 | */ |
| 182 | ret = hash_parse_string(algo_name, sha_env_str, sha_env); |
| 183 | if (ret) { |
| 184 | printf("Hash %s not supported!\n", algo_name); |
| 185 | return 0; |
| 186 | } |
| 187 | |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 188 | sha = malloc_cache_aligned(SHA256_SUM_LEN); |
| 189 | size = SHA256_SUM_LEN; |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 190 | /* |
| 191 | * We don't know how long the stop-string is, so we need to |
| 192 | * generate the sha256 hash upon each input character and |
| 193 | * compare the value with the one saved in the environment |
| 194 | */ |
| 195 | do { |
| 196 | if (tstc()) { |
| 197 | /* Check for input string overflow */ |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 198 | if (presskey_len >= DELAY_STOP_STR_MAX_LENGTH) { |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 199 | free(presskey); |
| 200 | free(sha); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 201 | return 0; |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 202 | } |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 203 | |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 204 | presskey[presskey_len++] = getchar(); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 205 | |
| 206 | /* Calculate sha256 upon each new char */ |
| 207 | hash_block(algo_name, (const void *)presskey, |
| 208 | presskey_len, sha, &size); |
| 209 | |
| 210 | /* And check if sha matches saved value in env */ |
| 211 | if (slow_equals(sha, sha_env, SHA256_SUM_LEN)) |
| 212 | abort = 1; |
| 213 | } |
Rasmus Villemoes | c11cedc | 2022-09-27 11:54:02 +0200 | [diff] [blame] | 214 | udelay(10000); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 215 | } while (!abort && get_ticks() <= etime); |
| 216 | |
Heiko Schocher | ecaae80 | 2019-07-29 07:23:19 +0200 | [diff] [blame] | 217 | free(presskey); |
| 218 | free(sha); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 219 | return abort; |
| 220 | } |
Simon Glass | e8c7805 | 2019-07-20 20:51:16 -0600 | [diff] [blame] | 221 | |
Simon Glass | 88fa4be | 2019-07-20 20:51:17 -0600 | [diff] [blame] | 222 | /** |
| 223 | * passwd_abort_key() - check for a key sequence to aborted booting |
| 224 | * |
| 225 | * This checks for the user entering a string within a given time. |
| 226 | * |
| 227 | * @etime: Timeout value ticks (stop when get_ticks() reachs this) |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 228 | * Return: 0 if autoboot should continue, 1 if it should stop |
Simon Glass | 88fa4be | 2019-07-20 20:51:17 -0600 | [diff] [blame] | 229 | */ |
Simon Glass | e8c7805 | 2019-07-20 20:51:16 -0600 | [diff] [blame] | 230 | static int passwd_abort_key(uint64_t etime) |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 231 | { |
| 232 | int abort = 0; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 233 | struct { |
| 234 | char *str; |
| 235 | u_int len; |
| 236 | int retry; |
| 237 | } |
| 238 | delaykey[] = { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 239 | { .str = env_get("bootdelaykey"), .retry = 1 }, |
| 240 | { .str = env_get("bootstopkey"), .retry = 0 }, |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 241 | }; |
| 242 | |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 243 | char presskey[DELAY_STOP_STR_MAX_LENGTH]; |
Yuezhang.Mo@sony.com | e088f0c | 2021-01-15 03:11:49 +0000 | [diff] [blame] | 244 | int presskey_len = 0; |
| 245 | int presskey_max = 0; |
| 246 | int i; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 247 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 248 | # ifdef CONFIG_AUTOBOOT_DELAY_STR |
| 249 | if (delaykey[0].str == NULL) |
| 250 | delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR; |
| 251 | # endif |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 252 | # ifdef CONFIG_AUTOBOOT_STOP_STR |
Stefan Roese | 2d908fa | 2015-05-18 14:08:22 +0200 | [diff] [blame] | 253 | if (delaykey[1].str == NULL) |
| 254 | delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 255 | # endif |
| 256 | |
| 257 | for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) { |
| 258 | delaykey[i].len = delaykey[i].str == NULL ? |
| 259 | 0 : strlen(delaykey[i].str); |
Steffen Jaeckel | 1b2d680 | 2021-07-08 15:57:36 +0200 | [diff] [blame] | 260 | delaykey[i].len = delaykey[i].len > DELAY_STOP_STR_MAX_LENGTH ? |
| 261 | DELAY_STOP_STR_MAX_LENGTH : delaykey[i].len; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 262 | |
| 263 | presskey_max = presskey_max > delaykey[i].len ? |
| 264 | presskey_max : delaykey[i].len; |
| 265 | |
| 266 | debug_bootkeys("%s key:<%s>\n", |
| 267 | delaykey[i].retry ? "delay" : "stop", |
| 268 | delaykey[i].str ? delaykey[i].str : "NULL"); |
| 269 | } |
| 270 | |
| 271 | /* In order to keep up with incoming data, check timeout only |
| 272 | * when catch up. |
| 273 | */ |
| 274 | do { |
| 275 | if (tstc()) { |
| 276 | if (presskey_len < presskey_max) { |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 277 | presskey[presskey_len++] = getchar(); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 278 | } else { |
| 279 | for (i = 0; i < presskey_max - 1; i++) |
| 280 | presskey[i] = presskey[i + 1]; |
| 281 | |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 282 | presskey[i] = getchar(); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 283 | } |
| 284 | } |
| 285 | |
| 286 | for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) { |
| 287 | if (delaykey[i].len > 0 && |
| 288 | presskey_len >= delaykey[i].len && |
| 289 | memcmp(presskey + presskey_len - |
| 290 | delaykey[i].len, delaykey[i].str, |
| 291 | delaykey[i].len) == 0) { |
| 292 | debug_bootkeys("got %skey\n", |
| 293 | delaykey[i].retry ? "delay" : |
| 294 | "stop"); |
| 295 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 296 | /* don't retry auto boot */ |
| 297 | if (!delaykey[i].retry) |
| 298 | bootretry_dont_retry(); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 299 | abort = 1; |
| 300 | } |
| 301 | } |
Rasmus Villemoes | c11cedc | 2022-09-27 11:54:02 +0200 | [diff] [blame] | 302 | udelay(10000); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 303 | } while (!abort && get_ticks() <= etime); |
| 304 | |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 305 | return abort; |
| 306 | } |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 307 | |
Steffen Jaeckel | d199c3a | 2021-07-08 15:57:38 +0200 | [diff] [blame] | 308 | /** |
| 309 | * flush_stdin() - drops all pending characters from stdin |
| 310 | */ |
| 311 | static void flush_stdin(void) |
| 312 | { |
| 313 | while (tstc()) |
| 314 | (void)getchar(); |
| 315 | } |
| 316 | |
Steffen Jaeckel | 3319874 | 2021-07-08 15:57:39 +0200 | [diff] [blame] | 317 | /** |
| 318 | * fallback_to_sha256() - check whether we should fall back to sha256 |
| 319 | * password checking |
| 320 | * |
| 321 | * This checks for the environment variable `bootstopusesha256` in case |
| 322 | * sha256-fallback has been enabled via the config setting |
| 323 | * `AUTOBOOT_SHA256_FALLBACK`. |
| 324 | * |
Heinrich Schuchardt | 185f812 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 325 | * Return: `false` if we must not fall-back, `true` if plain sha256 should be tried |
Steffen Jaeckel | 3319874 | 2021-07-08 15:57:39 +0200 | [diff] [blame] | 326 | */ |
| 327 | static bool fallback_to_sha256(void) |
| 328 | { |
| 329 | if (IS_ENABLED(CONFIG_AUTOBOOT_SHA256_FALLBACK)) |
| 330 | return env_get_yesno("bootstopusesha256") == 1; |
| 331 | else if (IS_ENABLED(CONFIG_CRYPT_PW)) |
| 332 | return false; |
| 333 | else |
| 334 | return true; |
| 335 | } |
| 336 | |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 337 | /*************************************************************************** |
| 338 | * Watch for 'delay' seconds for autoboot stop or autoboot delay string. |
| 339 | * returns: 0 - no key string, allow autoboot 1 - got key string, abort |
| 340 | */ |
Simon Glass | e79e4b2 | 2019-07-20 20:51:19 -0600 | [diff] [blame] | 341 | static int abortboot_key_sequence(int bootdelay) |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 342 | { |
| 343 | int abort; |
| 344 | uint64_t etime = endtick(bootdelay); |
| 345 | |
Steffen Jaeckel | d199c3a | 2021-07-08 15:57:38 +0200 | [diff] [blame] | 346 | if (IS_ENABLED(CONFIG_AUTOBOOT_FLUSH_STDIN)) |
| 347 | flush_stdin(); |
Stefan Roese | 8f0b1e2 | 2015-05-18 14:08:24 +0200 | [diff] [blame] | 348 | # ifdef CONFIG_AUTOBOOT_PROMPT |
| 349 | /* |
| 350 | * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards. |
| 351 | * To print the bootdelay value upon bootup. |
| 352 | */ |
| 353 | printf(CONFIG_AUTOBOOT_PROMPT, bootdelay); |
| 354 | # endif |
| 355 | |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 356 | if (IS_ENABLED(CONFIG_AUTOBOOT_ENCRYPTION)) { |
Steffen Jaeckel | 3319874 | 2021-07-08 15:57:39 +0200 | [diff] [blame] | 357 | if (IS_ENABLED(CONFIG_CRYPT_PW) && !fallback_to_sha256()) |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 358 | abort = passwd_abort_crypt(etime); |
| 359 | else |
| 360 | abort = passwd_abort_sha256(etime); |
| 361 | } else { |
Simon Glass | e8c7805 | 2019-07-20 20:51:16 -0600 | [diff] [blame] | 362 | abort = passwd_abort_key(etime); |
Steffen Jaeckel | 1a4a778 | 2021-07-08 15:57:35 +0200 | [diff] [blame] | 363 | } |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 364 | if (!abort) |
| 365 | debug_bootkeys("key timeout\n"); |
| 366 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 367 | return abort; |
| 368 | } |
| 369 | |
Simon Glass | e79e4b2 | 2019-07-20 20:51:19 -0600 | [diff] [blame] | 370 | static int abortboot_single_key(int bootdelay) |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 371 | { |
| 372 | int abort = 0; |
| 373 | unsigned long ts; |
| 374 | |
Masahiro Yamada | 4632739 | 2016-06-27 16:23:04 +0900 | [diff] [blame] | 375 | printf("Hit any key to stop autoboot: %2d ", bootdelay); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 376 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 377 | /* |
| 378 | * Check if key already pressed |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 379 | */ |
Masahiro Yamada | 4632739 | 2016-06-27 16:23:04 +0900 | [diff] [blame] | 380 | if (tstc()) { /* we got a key press */ |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 381 | getchar(); /* consume input */ |
Masahiro Yamada | 4632739 | 2016-06-27 16:23:04 +0900 | [diff] [blame] | 382 | puts("\b\b\b 0"); |
| 383 | abort = 1; /* don't auto boot */ |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 384 | } |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 385 | |
| 386 | while ((bootdelay > 0) && (!abort)) { |
| 387 | --bootdelay; |
| 388 | /* delay 1000 ms */ |
| 389 | ts = get_timer(0); |
| 390 | do { |
| 391 | if (tstc()) { /* we got a key press */ |
Simon Glass | d915ad2 | 2019-07-20 20:51:23 -0600 | [diff] [blame] | 392 | int key; |
| 393 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 394 | abort = 1; /* don't auto boot */ |
| 395 | bootdelay = 0; /* no more delay */ |
Heinrich Schuchardt | c670aee | 2020-10-07 18:11:48 +0200 | [diff] [blame] | 396 | key = getchar();/* consume input */ |
Da Xue | 5a87df8 | 2021-06-21 22:39:19 -0400 | [diff] [blame] | 397 | if (IS_ENABLED(CONFIG_AUTOBOOT_USE_MENUKEY)) |
Simon Glass | d915ad2 | 2019-07-20 20:51:23 -0600 | [diff] [blame] | 398 | menukey = key; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 399 | break; |
| 400 | } |
| 401 | udelay(10000); |
| 402 | } while (!abort && get_timer(ts) < 1000); |
| 403 | |
| 404 | printf("\b\b\b%2d ", bootdelay); |
| 405 | } |
| 406 | |
| 407 | putc('\n'); |
| 408 | |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 409 | return abort; |
| 410 | } |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 411 | |
| 412 | static int abortboot(int bootdelay) |
| 413 | { |
Masahiro Yamada | 4632739 | 2016-06-27 16:23:04 +0900 | [diff] [blame] | 414 | int abort = 0; |
Masahiro Yamada | 09b9d9e | 2016-06-27 16:23:03 +0900 | [diff] [blame] | 415 | |
Simon Glass | e79e4b2 | 2019-07-20 20:51:19 -0600 | [diff] [blame] | 416 | if (bootdelay >= 0) { |
Simon Glass | cb89700 | 2021-07-24 15:14:39 -0600 | [diff] [blame] | 417 | if (autoboot_keyed()) |
Simon Glass | e79e4b2 | 2019-07-20 20:51:19 -0600 | [diff] [blame] | 418 | abort = abortboot_key_sequence(bootdelay); |
| 419 | else |
| 420 | abort = abortboot_single_key(bootdelay); |
| 421 | } |
Masahiro Yamada | 09b9d9e | 2016-06-27 16:23:03 +0900 | [diff] [blame] | 422 | |
Simon Glass | 42b4d14 | 2019-07-20 20:51:18 -0600 | [diff] [blame] | 423 | if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && abort) |
Masahiro Yamada | 09b9d9e | 2016-06-27 16:23:03 +0900 | [diff] [blame] | 424 | gd->flags &= ~GD_FLG_SILENT; |
Masahiro Yamada | 09b9d9e | 2016-06-27 16:23:03 +0900 | [diff] [blame] | 425 | |
| 426 | return abort; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 427 | } |
| 428 | |
Shenlin Liang | c9c42ad | 2022-12-02 12:53:48 +0800 | [diff] [blame] | 429 | static void process_fdt_options(void) |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 430 | { |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 431 | #ifdef CONFIG_TEXT_BASE |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 432 | ulong addr; |
| 433 | |
| 434 | /* Add an env variable to point to a kernel payload, if available */ |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 435 | addr = ofnode_conf_read_int("kernel-offset", 0); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 436 | if (addr) |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 437 | env_set_addr("kernaddr", (void *)(CONFIG_TEXT_BASE + addr)); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 438 | |
| 439 | /* Add an env variable to point to a root disk, if available */ |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 440 | addr = ofnode_conf_read_int("rootdisk-offset", 0); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 441 | if (addr) |
Simon Glass | 9846390 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 442 | env_set_addr("rootaddr", (void *)(CONFIG_TEXT_BASE + addr)); |
| 443 | #endif /* CONFIG_TEXT_BASE */ |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 444 | } |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 445 | |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 446 | const char *bootdelay_process(void) |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 447 | { |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 448 | char *s; |
| 449 | int bootdelay; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 450 | |
Lukasz Majewski | bc8c440 | 2018-05-02 16:10:53 +0200 | [diff] [blame] | 451 | bootcount_inc(); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 452 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 453 | s = env_get("bootdelay"); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 454 | bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY; |
| 455 | |
Simon Glass | 9d4e88c | 2022-03-11 16:22:38 -0700 | [diff] [blame] | 456 | /* |
| 457 | * Does it really make sense that the devicetree overrides the user |
| 458 | * setting? It is possibly helpful for security since the device tree |
| 459 | * may be signed whereas the environment is often loaded from storage. |
| 460 | */ |
Simon Glass | 5fa3fd2 | 2019-07-20 20:51:27 -0600 | [diff] [blame] | 461 | if (IS_ENABLED(CONFIG_OF_CONTROL)) |
Simon Glass | 7de8bd0 | 2021-08-07 07:24:01 -0600 | [diff] [blame] | 462 | bootdelay = ofnode_conf_read_int("bootdelay", bootdelay); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 463 | |
| 464 | debug("### main_loop entered: bootdelay=%d\n\n", bootdelay); |
| 465 | |
Simon Glass | 5fa3fd2 | 2019-07-20 20:51:27 -0600 | [diff] [blame] | 466 | if (IS_ENABLED(CONFIG_AUTOBOOT_MENU_SHOW)) |
| 467 | bootdelay = menu_show(bootdelay); |
Simon Glass | b26440f | 2014-04-10 20:01:31 -0600 | [diff] [blame] | 468 | bootretry_init_cmd_timeout(); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 469 | |
| 470 | #ifdef CONFIG_POST |
| 471 | if (gd->flags & GD_FLG_POSTFAIL) { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 472 | s = env_get("failbootcmd"); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 473 | } else |
| 474 | #endif /* CONFIG_POST */ |
Lukasz Majewski | bc8c440 | 2018-05-02 16:10:53 +0200 | [diff] [blame] | 475 | if (bootcount_error()) |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 476 | s = env_get("altbootcmd"); |
Lukasz Majewski | bc8c440 | 2018-05-02 16:10:53 +0200 | [diff] [blame] | 477 | else |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 478 | s = env_get("bootcmd"); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 479 | |
Simon Glass | 5fa3fd2 | 2019-07-20 20:51:27 -0600 | [diff] [blame] | 480 | if (IS_ENABLED(CONFIG_OF_CONTROL)) |
Shenlin Liang | c9c42ad | 2022-12-02 12:53:48 +0800 | [diff] [blame] | 481 | process_fdt_options(); |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 482 | stored_bootdelay = bootdelay; |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 483 | |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 484 | return s; |
| 485 | } |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 486 | |
Simon Glass | affb215 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 487 | void autoboot_command(const char *s) |
| 488 | { |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 489 | debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>"); |
| 490 | |
Heiko Schocher | 6ebe6b3 | 2020-10-07 08:06:54 +0200 | [diff] [blame] | 491 | if (s && (stored_bootdelay == -2 || |
| 492 | (stored_bootdelay != -1 && !abortboot(stored_bootdelay)))) { |
Simon Glass | 5ec35ff | 2019-07-20 20:51:28 -0600 | [diff] [blame] | 493 | bool lock; |
| 494 | int prev; |
| 495 | |
Simon Glass | cb89700 | 2021-07-24 15:14:39 -0600 | [diff] [blame] | 496 | lock = autoboot_keyed() && |
Simon Glass | 5ec35ff | 2019-07-20 20:51:28 -0600 | [diff] [blame] | 497 | !IS_ENABLED(CONFIG_AUTOBOOT_KEYED_CTRLC); |
| 498 | if (lock) |
| 499 | prev = disable_ctrlc(1); /* disable Ctrl-C checking */ |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 500 | |
| 501 | run_command_list(s, -1, 0); |
| 502 | |
Simon Glass | 5ec35ff | 2019-07-20 20:51:28 -0600 | [diff] [blame] | 503 | if (lock) |
| 504 | disable_ctrlc(prev); /* restore Ctrl-C checking */ |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 505 | } |
| 506 | |
Da Xue | 5a87df8 | 2021-06-21 22:39:19 -0400 | [diff] [blame] | 507 | if (IS_ENABLED(CONFIG_AUTOBOOT_USE_MENUKEY) && |
Simon Glass | d915ad2 | 2019-07-20 20:51:23 -0600 | [diff] [blame] | 508 | menukey == AUTOBOOT_MENUKEY) { |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 509 | s = env_get("menucmd"); |
Simon Glass | 66ded17 | 2014-04-10 20:01:28 -0600 | [diff] [blame] | 510 | if (s) |
| 511 | run_command_list(s, -1, 0); |
| 512 | } |
Simon Glass | cb89700 | 2021-07-24 15:14:39 -0600 | [diff] [blame] | 513 | } |