Merge branch '2019-08-07-master-imports'
[oweals/u-boot.git] / common / autoboot.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2000
4  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5  */
6
7 #include <common.h>
8 #include <autoboot.h>
9 #include <bootretry.h>
10 #include <cli.h>
11 #include <console.h>
12 #include <fdtdec.h>
13 #include <hash.h>
14 #include <memalign.h>
15 #include <menu.h>
16 #include <post.h>
17 #include <u-boot/sha256.h>
18 #include <bootcount.h>
19
20 DECLARE_GLOBAL_DATA_PTR;
21
22 #define MAX_DELAY_STOP_STR 32
23
24 #ifndef DEBUG_BOOTKEYS
25 #define DEBUG_BOOTKEYS 0
26 #endif
27 #define debug_bootkeys(fmt, args...)            \
28         debug_cond(DEBUG_BOOTKEYS, fmt, ##args)
29
30 /* Stored value of bootdelay, used by autoboot_command() */
31 static int stored_bootdelay;
32 static int menukey;
33
34 #ifdef CONFIG_AUTOBOOT_ENCRYPTION
35 #define AUTOBOOT_STOP_STR_SHA256 CONFIG_AUTOBOOT_STOP_STR_SHA256
36 #else
37 #define AUTOBOOT_STOP_STR_SHA256 ""
38 #endif
39
40 #ifdef CONFIG_USE_AUTOBOOT_MENUKEY
41 #define AUTOBOOT_MENUKEY CONFIG_USE_AUTOBOOT_MENUKEY
42 #else
43 #define AUTOBOOT_MENUKEY 0
44 #endif
45
46 /*
47  * Use a "constant-length" time compare function for this
48  * hash compare:
49  *
50  * https://crackstation.net/hashing-security.htm
51  */
52 static int slow_equals(u8 *a, u8 *b, int len)
53 {
54         int diff = 0;
55         int i;
56
57         for (i = 0; i < len; i++)
58                 diff |= a[i] ^ b[i];
59
60         return diff == 0;
61 }
62
63 /**
64  * passwd_abort_sha256() - check for a hashed key sequence to abort booting
65  *
66  * This checks for the user entering a SHA256 hash within a given time.
67  *
68  * @etime: Timeout value ticks (stop when get_ticks() reachs this)
69  * @return 0 if autoboot should continue, 1 if it should stop
70  */
71 static int passwd_abort_sha256(uint64_t etime)
72 {
73         const char *sha_env_str = env_get("bootstopkeysha256");
74         u8 sha_env[SHA256_SUM_LEN];
75         u8 *sha;
76         char *presskey;
77         const char *algo_name = "sha256";
78         u_int presskey_len = 0;
79         int abort = 0;
80         int size = sizeof(sha);
81         int ret;
82
83         if (sha_env_str == NULL)
84                 sha_env_str = AUTOBOOT_STOP_STR_SHA256;
85
86         /*
87          * Generate the binary value from the environment hash value
88          * so that we can compare this value with the computed hash
89          * from the user input
90          */
91         ret = hash_parse_string(algo_name, sha_env_str, sha_env);
92         if (ret) {
93                 printf("Hash %s not supported!\n", algo_name);
94                 return 0;
95         }
96
97         presskey = malloc_cache_aligned(MAX_DELAY_STOP_STR);
98         sha = malloc_cache_aligned(SHA256_SUM_LEN);
99         size = SHA256_SUM_LEN;
100         /*
101          * We don't know how long the stop-string is, so we need to
102          * generate the sha256 hash upon each input character and
103          * compare the value with the one saved in the environment
104          */
105         do {
106                 if (tstc()) {
107                         /* Check for input string overflow */
108                         if (presskey_len >= MAX_DELAY_STOP_STR) {
109                                 free(presskey);
110                                 free(sha);
111                                 return 0;
112                         }
113
114                         presskey[presskey_len++] = getc();
115
116                         /* Calculate sha256 upon each new char */
117                         hash_block(algo_name, (const void *)presskey,
118                                    presskey_len, sha, &size);
119
120                         /* And check if sha matches saved value in env */
121                         if (slow_equals(sha, sha_env, SHA256_SUM_LEN))
122                                 abort = 1;
123                 }
124         } while (!abort && get_ticks() <= etime);
125
126         free(presskey);
127         free(sha);
128         return abort;
129 }
130
131 /**
132  * passwd_abort_key() - check for a key sequence to aborted booting
133  *
134  * This checks for the user entering a string within a given time.
135  *
136  * @etime: Timeout value ticks (stop when get_ticks() reachs this)
137  * @return 0 if autoboot should continue, 1 if it should stop
138  */
139 static int passwd_abort_key(uint64_t etime)
140 {
141         int abort = 0;
142         struct {
143                 char *str;
144                 u_int len;
145                 int retry;
146         }
147         delaykey[] = {
148                 { .str = env_get("bootdelaykey"),  .retry = 1 },
149                 { .str = env_get("bootstopkey"),   .retry = 0 },
150         };
151
152         char presskey[MAX_DELAY_STOP_STR];
153         u_int presskey_len = 0;
154         u_int presskey_max = 0;
155         u_int i;
156
157 #  ifdef CONFIG_AUTOBOOT_DELAY_STR
158         if (delaykey[0].str == NULL)
159                 delaykey[0].str = CONFIG_AUTOBOOT_DELAY_STR;
160 #  endif
161 #  ifdef CONFIG_AUTOBOOT_STOP_STR
162         if (delaykey[1].str == NULL)
163                 delaykey[1].str = CONFIG_AUTOBOOT_STOP_STR;
164 #  endif
165
166         for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
167                 delaykey[i].len = delaykey[i].str == NULL ?
168                                     0 : strlen(delaykey[i].str);
169                 delaykey[i].len = delaykey[i].len > MAX_DELAY_STOP_STR ?
170                                     MAX_DELAY_STOP_STR : delaykey[i].len;
171
172                 presskey_max = presskey_max > delaykey[i].len ?
173                                     presskey_max : delaykey[i].len;
174
175                 debug_bootkeys("%s key:<%s>\n",
176                                delaykey[i].retry ? "delay" : "stop",
177                                delaykey[i].str ? delaykey[i].str : "NULL");
178         }
179
180         /* In order to keep up with incoming data, check timeout only
181          * when catch up.
182          */
183         do {
184                 if (tstc()) {
185                         if (presskey_len < presskey_max) {
186                                 presskey[presskey_len++] = getc();
187                         } else {
188                                 for (i = 0; i < presskey_max - 1; i++)
189                                         presskey[i] = presskey[i + 1];
190
191                                 presskey[i] = getc();
192                         }
193                 }
194
195                 for (i = 0; i < sizeof(delaykey) / sizeof(delaykey[0]); i++) {
196                         if (delaykey[i].len > 0 &&
197                             presskey_len >= delaykey[i].len &&
198                                 memcmp(presskey + presskey_len -
199                                         delaykey[i].len, delaykey[i].str,
200                                         delaykey[i].len) == 0) {
201                                         debug_bootkeys("got %skey\n",
202                                                 delaykey[i].retry ? "delay" :
203                                                 "stop");
204
205                                 /* don't retry auto boot */
206                                 if (!delaykey[i].retry)
207                                         bootretry_dont_retry();
208                                 abort = 1;
209                         }
210                 }
211         } while (!abort && get_ticks() <= etime);
212
213         return abort;
214 }
215
216 /***************************************************************************
217  * Watch for 'delay' seconds for autoboot stop or autoboot delay string.
218  * returns: 0 -  no key string, allow autoboot 1 - got key string, abort
219  */
220 static int abortboot_key_sequence(int bootdelay)
221 {
222         int abort;
223         uint64_t etime = endtick(bootdelay);
224
225 #  ifdef CONFIG_AUTOBOOT_PROMPT
226         /*
227          * CONFIG_AUTOBOOT_PROMPT includes the %d for all boards.
228          * To print the bootdelay value upon bootup.
229          */
230         printf(CONFIG_AUTOBOOT_PROMPT, bootdelay);
231 #  endif
232
233         if (IS_ENABLED(CONFIG_AUTOBOOT_ENCRYPTION))
234                 abort = passwd_abort_sha256(etime);
235         else
236                 abort = passwd_abort_key(etime);
237         if (!abort)
238                 debug_bootkeys("key timeout\n");
239
240         return abort;
241 }
242
243 static int abortboot_single_key(int bootdelay)
244 {
245         int abort = 0;
246         unsigned long ts;
247
248         printf("Hit any key to stop autoboot: %2d ", bootdelay);
249
250         /*
251          * Check if key already pressed
252          */
253         if (tstc()) {   /* we got a key press   */
254                 (void) getc();  /* consume input        */
255                 puts("\b\b\b 0");
256                 abort = 1;      /* don't auto boot      */
257         }
258
259         while ((bootdelay > 0) && (!abort)) {
260                 --bootdelay;
261                 /* delay 1000 ms */
262                 ts = get_timer(0);
263                 do {
264                         if (tstc()) {   /* we got a key press   */
265                                 int key;
266
267                                 abort  = 1;     /* don't auto boot      */
268                                 bootdelay = 0;  /* no more delay        */
269                                 key = getc(); /* consume input  */
270                                 if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY))
271                                         menukey = key;
272                                 break;
273                         }
274                         udelay(10000);
275                 } while (!abort && get_timer(ts) < 1000);
276
277                 printf("\b\b\b%2d ", bootdelay);
278         }
279
280         putc('\n');
281
282         return abort;
283 }
284
285 static int abortboot(int bootdelay)
286 {
287         int abort = 0;
288
289         if (bootdelay >= 0) {
290                 if (IS_ENABLED(CONFIG_AUTOBOOT_KEYED))
291                         abort = abortboot_key_sequence(bootdelay);
292                 else
293                         abort = abortboot_single_key(bootdelay);
294         }
295
296         if (IS_ENABLED(CONFIG_SILENT_CONSOLE) && abort)
297                 gd->flags &= ~GD_FLG_SILENT;
298
299         return abort;
300 }
301
302 static void process_fdt_options(const void *blob)
303 {
304 #ifdef CONFIG_SYS_TEXT_BASE
305         ulong addr;
306
307         /* Add an env variable to point to a kernel payload, if available */
308         addr = fdtdec_get_config_int(gd->fdt_blob, "kernel-offset", 0);
309         if (addr)
310                 env_set_addr("kernaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
311
312         /* Add an env variable to point to a root disk, if available */
313         addr = fdtdec_get_config_int(gd->fdt_blob, "rootdisk-offset", 0);
314         if (addr)
315                 env_set_addr("rootaddr", (void *)(CONFIG_SYS_TEXT_BASE + addr));
316 #endif /* CONFIG_SYS_TEXT_BASE */
317 }
318
319 const char *bootdelay_process(void)
320 {
321         char *s;
322         int bootdelay;
323
324         bootcount_inc();
325
326         s = env_get("bootdelay");
327         bootdelay = s ? (int)simple_strtol(s, NULL, 10) : CONFIG_BOOTDELAY;
328
329         if (IS_ENABLED(CONFIG_OF_CONTROL))
330                 bootdelay = fdtdec_get_config_int(gd->fdt_blob, "bootdelay",
331                                                   bootdelay);
332
333         debug("### main_loop entered: bootdelay=%d\n\n", bootdelay);
334
335         if (IS_ENABLED(CONFIG_AUTOBOOT_MENU_SHOW))
336                 bootdelay = menu_show(bootdelay);
337         bootretry_init_cmd_timeout();
338
339 #ifdef CONFIG_POST
340         if (gd->flags & GD_FLG_POSTFAIL) {
341                 s = env_get("failbootcmd");
342         } else
343 #endif /* CONFIG_POST */
344         if (bootcount_error())
345                 s = env_get("altbootcmd");
346         else
347                 s = env_get("bootcmd");
348
349         if (IS_ENABLED(CONFIG_OF_CONTROL))
350                 process_fdt_options(gd->fdt_blob);
351         stored_bootdelay = bootdelay;
352
353         return s;
354 }
355
356 void autoboot_command(const char *s)
357 {
358         debug("### main_loop: bootcmd=\"%s\"\n", s ? s : "<UNDEFINED>");
359
360         if (stored_bootdelay != -1 && s && !abortboot(stored_bootdelay)) {
361                 bool lock;
362                 int prev;
363
364                 lock = IS_ENABLED(CONFIG_AUTOBOOT_KEYED) &&
365                         !IS_ENABLED(CONFIG_AUTOBOOT_KEYED_CTRLC);
366                 if (lock)
367                         prev = disable_ctrlc(1); /* disable Ctrl-C checking */
368
369                 run_command_list(s, -1, 0);
370
371                 if (lock)
372                         disable_ctrlc(prev);    /* restore Ctrl-C checking */
373         }
374
375         if (IS_ENABLED(CONFIG_USE_AUTOBOOT_MENUKEY) &&
376             menukey == AUTOBOOT_MENUKEY) {
377                 s = env_get("menucmd");
378                 if (s)
379                         run_command_list(s, -1, 0);
380         }
381 }