Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2014 Google, Inc |
| 4 | * Simon Glass <sjg@chromium.org> |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __CLI_H |
| 8 | #define __CLI_H |
| 9 | |
Simon Glass | 7646d5b | 2023-01-06 08:52:20 -0600 | [diff] [blame] | 10 | #include <stdbool.h> |
Simon Glass | 07627c5 | 2023-10-01 19:13:11 -0600 | [diff] [blame] | 11 | #include <linux/types.h> |
Simon Glass | 7646d5b | 2023-01-06 08:52:20 -0600 | [diff] [blame] | 12 | |
| 13 | /** |
| 14 | * struct cli_ch_state - state information for reading cmdline characters |
| 15 | * |
| 16 | * @esc_len: Number of escape characters read so far |
| 17 | * @esc_save: Escape characters collected so far |
Simon Glass | 9d8d387 | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 18 | * @emit_upto: Next index to emit from esc_save |
| 19 | * @emitting: true if emitting from esc_save |
Simon Glass | 7646d5b | 2023-01-06 08:52:20 -0600 | [diff] [blame] | 20 | */ |
| 21 | struct cli_ch_state { |
| 22 | int esc_len; |
| 23 | char esc_save[8]; |
| 24 | int emit_upto; |
Simon Glass | 9d8d387 | 2023-01-06 08:52:26 -0600 | [diff] [blame] | 25 | bool emitting; |
Simon Glass | 7646d5b | 2023-01-06 08:52:20 -0600 | [diff] [blame] | 26 | }; |
| 27 | |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 28 | /** |
Simon Glass | 07627c5 | 2023-10-01 19:13:11 -0600 | [diff] [blame] | 29 | * struct cli_line_state - state of the line editor |
| 30 | * |
| 31 | * @num: Current cursor position, where 0 is the start |
| 32 | * @eol_num: Number of characters in the buffer |
| 33 | * @insert: true if in 'insert' mode |
Simon Glass | 1c67ae4 | 2023-10-01 19:13:15 -0600 | [diff] [blame] | 34 | * @history: true if history should be accessible |
Simon Glass | b949131 | 2023-10-01 19:13:17 -0600 | [diff] [blame] | 35 | * @cmd_complete: true if tab completion should be enabled (requires @prompt to |
| 36 | * be set) |
Simon Glass | 2f13ae5 | 2023-10-01 19:13:13 -0600 | [diff] [blame] | 37 | * @buf: Buffer containing line |
| 38 | * @prompt: Prompt for the line |
Simon Glass | 07627c5 | 2023-10-01 19:13:11 -0600 | [diff] [blame] | 39 | */ |
| 40 | struct cli_line_state { |
| 41 | uint num; |
| 42 | uint eol_num; |
Simon Glass | 2f13ae5 | 2023-10-01 19:13:13 -0600 | [diff] [blame] | 43 | uint len; |
Simon Glass | 07627c5 | 2023-10-01 19:13:11 -0600 | [diff] [blame] | 44 | bool insert; |
Simon Glass | 1c67ae4 | 2023-10-01 19:13:15 -0600 | [diff] [blame] | 45 | bool history; |
Simon Glass | 3e9bc77 | 2023-10-01 19:13:16 -0600 | [diff] [blame] | 46 | bool cmd_complete; |
Simon Glass | 2f13ae5 | 2023-10-01 19:13:13 -0600 | [diff] [blame] | 47 | char *buf; |
| 48 | const char *prompt; |
Simon Glass | 07627c5 | 2023-10-01 19:13:11 -0600 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | /** |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 52 | * Go into the command loop |
| 53 | * |
| 54 | * This will return if we get a timeout waiting for a command. See |
| 55 | * CONFIG_BOOT_RETRY_TIME. |
| 56 | */ |
Simon Glass | 33f7913 | 2014-04-10 20:01:34 -0600 | [diff] [blame] | 57 | void cli_simple_loop(void); |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 58 | |
| 59 | /** |
| 60 | * cli_simple_run_command() - Execute a command with the simple CLI |
| 61 | * |
| 62 | * @cmd: String containing the command to execute |
| 63 | * @flag Flag value - see CMD_FLAG_... |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 64 | * Return: 1 - command executed, repeatable |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 65 | * 0 - command executed but not repeatable, interrupted commands are |
| 66 | * always considered not repeatable |
| 67 | * -1 - not executed (unrecognized, bootd recursion or too many args) |
| 68 | * (If cmd is NULL or "" or longer than CONFIG_SYS_CBSIZE-1 it is |
| 69 | * considered unrecognized) |
| 70 | */ |
| 71 | int cli_simple_run_command(const char *cmd, int flag); |
| 72 | |
| 73 | /** |
Hans de Goede | b01e510 | 2014-08-06 09:37:38 +0200 | [diff] [blame] | 74 | * cli_simple_process_macros() - Expand $() and ${} format env. variables |
| 75 | * |
| 76 | * @param input Input string possible containing $() / ${} vars |
| 77 | * @param output Output string with $() / ${} vars expanded |
Simon Glass | c7b03e8 | 2020-11-05 10:33:47 -0700 | [diff] [blame] | 78 | * @param max_size Maximum size of @output (including terminator) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 79 | * Return: 0 if OK, -ENOSPC if we ran out of space in @output |
Hans de Goede | b01e510 | 2014-08-06 09:37:38 +0200 | [diff] [blame] | 80 | */ |
Simon Glass | c7b03e8 | 2020-11-05 10:33:47 -0700 | [diff] [blame] | 81 | int cli_simple_process_macros(const char *input, char *output, int max_size); |
Hans de Goede | b01e510 | 2014-08-06 09:37:38 +0200 | [diff] [blame] | 82 | |
| 83 | /** |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 84 | * cli_simple_run_command_list() - Execute a list of command |
| 85 | * |
| 86 | * The commands should be separated by ; or \n and will be executed |
| 87 | * by the built-in parser. |
| 88 | * |
| 89 | * This function cannot take a const char * for the command, since if it |
| 90 | * finds newlines in the string, it replaces them with \0. |
| 91 | * |
| 92 | * @param cmd String containing list of commands |
| 93 | * @param flag Execution flags (CMD_FLAG_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 94 | * Return: 0 on success, or != 0 on error. |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 95 | */ |
| 96 | int cli_simple_run_command_list(char *cmd, int flag); |
| 97 | |
| 98 | /** |
| 99 | * cli_readline() - read a line into the console_buffer |
| 100 | * |
| 101 | * This is a convenience function which calls cli_readline_into_buffer(). |
| 102 | * |
| 103 | * @prompt: Prompt to display |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 104 | * Return: command line length excluding terminator, or -ve on error |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 105 | */ |
Simon Glass | be6aafc | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 106 | int cli_readline(const char *const prompt); |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 107 | |
| 108 | /** |
| 109 | * readline_into_buffer() - read a line into a buffer |
| 110 | * |
| 111 | * Display the prompt, then read a command line into @buffer. The |
| 112 | * maximum line length is CONFIG_SYS_CBSIZE including a \0 terminator, which |
| 113 | * will always be added. |
| 114 | * |
| 115 | * The command is echoed as it is typed. Command editing is supported if |
| 116 | * CONFIG_CMDLINE_EDITING is defined. Tab auto-complete is supported if |
| 117 | * CONFIG_AUTO_COMPLETE is defined. If CONFIG_BOOT_RETRY_TIME is defined, |
| 118 | * then a timeout will be applied. |
| 119 | * |
| 120 | * If CONFIG_BOOT_RETRY_TIME is defined and retry_time >= 0, |
| 121 | * time out when time goes past endtime (timebase time in ticks). |
| 122 | * |
| 123 | * @prompt: Prompt to display |
| 124 | * @buffer: Place to put the line that is entered |
Simon Glass | 26e0cab | 2023-03-28 08:34:14 +1300 | [diff] [blame] | 125 | * @timeout: Timeout in seconds, 0 if none |
| 126 | * Return: command line length excluding terminator, or -ve on error: if the |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 127 | * timeout is exceeded (either CONFIG_BOOT_RETRY_TIME or the timeout |
| 128 | * parameter), then -2 is returned. If a break is detected (Ctrl-C) then |
| 129 | * -1 is returned. |
| 130 | */ |
Simon Glass | be6aafc | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 131 | int cli_readline_into_buffer(const char *const prompt, char *buffer, |
| 132 | int timeout); |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 133 | |
| 134 | /** |
| 135 | * parse_line() - split a command line down into separate arguments |
| 136 | * |
| 137 | * The argv[] array is filled with pointers into @line, and each argument |
| 138 | * is terminated by \0 (i.e. @line is changed in the process unless there |
| 139 | * is only one argument). |
| 140 | * |
| 141 | * #argv is terminated by a NULL after the last argument pointer. |
| 142 | * |
| 143 | * At most CONFIG_SYS_MAXARGS arguments are permited - if there are more |
| 144 | * than that then an error is printed, and this function returns |
| 145 | * CONFIG_SYS_MAXARGS, with argv[] set up to that point. |
| 146 | * |
| 147 | * @line: Command line to parse |
| 148 | * @args: Array to hold arguments |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 149 | * Return: number of arguments |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 150 | */ |
Simon Glass | be6aafc | 2014-04-10 20:01:27 -0600 | [diff] [blame] | 151 | int cli_simple_parse_line(char *line, char *argv[]); |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 152 | |
Masahiro Yamada | 366b24f | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 153 | #if CONFIG_IS_ENABLED(OF_CONTROL) |
Simon Glass | 5b47e30 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 154 | /** |
| 155 | * cli_process_fdt() - process the boot command from the FDT |
| 156 | * |
| 157 | * If bootcmmd is defined in the /config node of the FDT, we use that |
| 158 | * as the boot command. Further, if bootsecure is set to 1 (in the same |
| 159 | * node) then we return true, indicating that the command should be executed |
| 160 | * as securely as possible, avoiding the CLI parser. |
| 161 | * |
| 162 | * @cmdp: On entry, the command that will be executed if the FDT does |
| 163 | * not have a command. Returns the command to execute after |
| 164 | * checking the FDT. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 165 | * Return: true to execute securely, else false |
Simon Glass | 5b47e30 | 2014-04-10 20:01:35 -0600 | [diff] [blame] | 166 | */ |
| 167 | bool cli_process_fdt(const char **cmdp); |
| 168 | |
| 169 | /** cli_secure_boot_cmd() - execute a command as securely as possible |
| 170 | * |
| 171 | * This avoids using the parser, thus executing the command with the |
| 172 | * smallest amount of code. Parameters are not supported. |
| 173 | */ |
| 174 | void cli_secure_boot_cmd(const char *cmd); |
| 175 | #else |
| 176 | static inline bool cli_process_fdt(const char **cmdp) |
| 177 | { |
| 178 | return false; |
| 179 | } |
| 180 | |
| 181 | static inline void cli_secure_boot_cmd(const char *cmd) |
| 182 | { |
| 183 | } |
| 184 | #endif /* CONFIG_OF_CONTROL */ |
| 185 | |
Simon Glass | 33f7913 | 2014-04-10 20:01:34 -0600 | [diff] [blame] | 186 | /** |
| 187 | * Go into the command loop |
| 188 | * |
| 189 | * This will return if we get a timeout waiting for a command, but only for |
| 190 | * the simple parser (not hush). See CONFIG_BOOT_RETRY_TIME. |
| 191 | */ |
| 192 | void cli_loop(void); |
| 193 | |
| 194 | /** Set up the command line interpreter ready for action */ |
| 195 | void cli_init(void); |
| 196 | |
Simon Glass | 66b8c8b | 2014-04-10 20:01:26 -0600 | [diff] [blame] | 197 | #define endtick(seconds) (get_ticks() + (uint64_t)(seconds) * get_tbclk()) |
Simon Glass | 7646d5b | 2023-01-06 08:52:20 -0600 | [diff] [blame] | 198 | #define CTL_CH(c) ((c) - 'a' + 1) |
| 199 | |
| 200 | /** |
| 201 | * cli_ch_init() - Set up the initial state to process input characters |
| 202 | * |
| 203 | * @cch: State to set up |
| 204 | */ |
| 205 | void cli_ch_init(struct cli_ch_state *cch); |
| 206 | |
| 207 | /** |
| 208 | * cli_ch_process() - Process an input character |
| 209 | * |
| 210 | * When @ichar is 0, this function returns any characters from an invalid escape |
| 211 | * sequence which are still pending in the buffer |
| 212 | * |
| 213 | * Otherwise it processes the input character. If it is an escape character, |
| 214 | * then an escape sequence is started and the function returns 0. If we are in |
| 215 | * the middle of an escape sequence, the character is processed and may result |
| 216 | * in returning 0 (if more characters are needed) or a valid character (if |
| 217 | * @ichar finishes the sequence). |
| 218 | * |
| 219 | * If @ichar is a valid character and there is no escape sequence in progress, |
| 220 | * then it is returned as is. |
| 221 | * |
| 222 | * If the Enter key is pressed, '\n' is returned. |
| 223 | * |
| 224 | * Usage should be like this:: |
| 225 | * |
| 226 | * struct cli_ch_state cch; |
| 227 | * |
| 228 | * cli_ch_init(cch); |
| 229 | * do |
| 230 | * { |
| 231 | * int ichar, ch; |
| 232 | * |
| 233 | * ichar = cli_ch_process(cch, 0); |
| 234 | * if (!ichar) { |
| 235 | * ch = getchar(); |
| 236 | * ichar = cli_ch_process(cch, ch); |
| 237 | * } |
| 238 | * (handle the ichar character) |
| 239 | * } while (!done) |
| 240 | * |
| 241 | * If tstc() is used to look for keypresses, this function can be called with |
| 242 | * @ichar set to -ETIMEDOUT if there is no character after 5-10ms. This allows |
| 243 | * the ambgiuity between the Escape key and the arrow keys (which generate an |
| 244 | * escape character followed by other characters) to be resolved. |
| 245 | * |
| 246 | * @cch: Current state |
| 247 | * @ichar: Input character to process, or 0 if none, or -ETIMEDOUT if no |
| 248 | * character has been received within a small number of milliseconds (this |
| 249 | * cancels any existing escape sequence and allows pressing the Escape key to |
| 250 | * work) |
| 251 | * Returns: Resulting input character after processing, 0 if none, '\e' if |
| 252 | * an existing escape sequence was cancelled |
| 253 | */ |
| 254 | int cli_ch_process(struct cli_ch_state *cch, int ichar); |
Simon Glass | 66b8c8b | 2014-04-10 20:01:26 -0600 | [diff] [blame] | 255 | |
Simon Glass | 2f13ae5 | 2023-10-01 19:13:13 -0600 | [diff] [blame] | 256 | /** |
| 257 | * cread_line_process_ch() - Process a character for line input |
| 258 | * |
| 259 | * @cls: CLI line state |
| 260 | * @ichar: Character to process |
| 261 | * Return: 0 if input is complete, with line in cls->buf, -EINTR if input was |
| 262 | * cancelled with Ctrl-C, -EAGAIN if more characters are needed |
| 263 | */ |
| 264 | int cread_line_process_ch(struct cli_line_state *cls, char ichar); |
| 265 | |
Simon Glass | b949131 | 2023-10-01 19:13:17 -0600 | [diff] [blame] | 266 | /** |
| 267 | * cli_cread_init() - Set up a new cread struct |
| 268 | * |
| 269 | * Sets up a new cread state, with history and cmd_complete set to false |
| 270 | * |
| 271 | * After calling this, you can use cread_line_process_ch() to process characters |
| 272 | * received from the user. |
| 273 | * |
| 274 | * @cls: CLI line state |
| 275 | * @buf: Text buffer containing the initial text |
| 276 | * @buf_size: Buffer size, including nul terminator |
| 277 | */ |
| 278 | void cli_cread_init(struct cli_line_state *cls, char *buf, uint buf_size); |
| 279 | |
Simon Glass | 4c0bf97 | 2023-10-01 19:13:06 -0600 | [diff] [blame] | 280 | /** cread_print_hist_list() - Print the command-line history list */ |
| 281 | void cread_print_hist_list(void); |
| 282 | |
Simon Glass | dec3c01 | 2014-04-10 20:01:25 -0600 | [diff] [blame] | 283 | #endif |