[PATCH 2/2] readkey: handle standalone ESC keypress with timeout
Ahmad Fatoum
a.fatoum at barebox.org
Thu Apr 30 23:53:18 PDT 2026
read_key() unconditionally called getchar() twice after receiving an
ESC byte (0x1B), assuming it was the start of a multi-byte escape
sequence. A standalone ESC keypress sends only the single 0x1B byte,
so the second getchar() would block indefinitely, making it impossible
to use ESC on its own to cancel operations.
Poll with tstc() and a 50ms timeout after the initial ESC byte. If no
follow-up character arrives, return the bare ESC. This matches the
standard terminal approach for distinguishing ESC keypresses from
escape sequences, which arrive as a rapid burst.
Signed-off-by: Ahmad Fatoum <a.fatoum at barebox.org>
---
common/console.c | 13 +++++++++++++
include/stdio.h | 2 ++
lib/readkey.c | 31 +++++++++++++++++++++++++++++--
3 files changed, 44 insertions(+), 2 deletions(-)
diff --git a/common/console.c b/common/console.c
index 0ce89390864b..8b6824b85e43 100644
--- a/common/console.c
+++ b/common/console.c
@@ -565,6 +565,19 @@ int getchar(void)
}
EXPORT_SYMBOL(getchar);
+int pollchar(ktime_t duration)
+{
+ ktime_t start = get_time_ns();
+
+ while (!tstc()) {
+ if (is_timeout(start, duration))
+ return -ETIMEDOUT;
+ }
+
+ return getchar();
+}
+EXPORT_SYMBOL(pollchar);
+
int tstc(void)
{
return kfifo_len(console_input_fifo) || tstc_raw();
diff --git a/include/stdio.h b/include/stdio.h
index f5b23140adde..c8225430ad29 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -12,9 +12,11 @@
/* stdin */
int tstc(void);
int getchar(void);
+int pollchar(ktime_t duration);
#else
static inline int tstc(void) { return 0; }
static inline int getchar(void) { return -EINVAL; }
+static inline int pollchar(ktime_t duration) { return -ENOSYS; }
#endif
int readline(const char *prompt, char *buf, int len);
diff --git a/lib/readkey.c b/lib/readkey.c
index c26e9d51aba9..71f9b41c5055 100644
--- a/lib/readkey.c
+++ b/lib/readkey.c
@@ -17,6 +17,8 @@
*/
#include <common.h>
+#include <clock.h>
+#include <linux/ktime.h>
#include <linux/ctype.h>
#include <readkey.h>
@@ -46,6 +48,18 @@ static const struct esc_cmds esccmds[] = {
{"[6~", BB_KEY_PAGEDOWN},// Cursor Key Page Down
};
+static int poll_key_into_buf(unsigned char *key)
+{
+ int ret;
+
+ ret = pollchar(50 * MSECOND);
+ if (ret < 0)
+ return ret;
+
+ *key = ret;
+ return 0;
+}
+
int read_key(void)
{
unsigned char c;
@@ -54,8 +68,21 @@ int read_key(void)
if (c == 27) {
int i = 0;
- esc[i++] = getchar();
- esc[i++] = getchar();
+
+ /*
+ * Escape sequences (arrow keys, etc.) arrive as a burst
+ * of characters: ESC [ A, ESC [ 1 ~ etc. A standalone
+ * ESC keypress sends just the single 0x1b byte.
+ *
+ * Wait briefly for a follow-up character; if nothing
+ * arrives it was a bare ESC.
+ */
+ if (poll_key_into_buf(&esc[i++]))
+ return '\e';
+
+ if (poll_key_into_buf(&esc[i++]))
+ return -1;
+
if (isdigit(esc[1])) {
while(1) {
esc[i] = getchar();
--
2.47.3
More information about the barebox
mailing list