FD.io VPP
v16.06
Vector Packet Processing
|
Unix stdin/socket command line interface. More...
Go to the source code of this file.
Data Structures | |
struct | unix_cli_banner_t |
A CLI banner line. More... | |
struct | unix_cli_file_t |
Unix CLI session. More... | |
struct | unix_cli_parse_actions_t |
Mapping of input buffer strings to action values. More... | |
struct | unix_cli_main_t |
CLI global state. More... | |
Macros | |
#define | ESC "\x1b" |
ANSI escape code. More... | |
#define | CSI ESC "[" |
ANSI Control Sequence Introducer. More... | |
#define | ANSI_CLEAR CSI "2J" CSI "1;1H" |
ANSI clear screen. More... | |
#define | ANSI_RESET CSI "0m" |
ANSI reset color settings. More... | |
#define | ANSI_BOLD CSI "1m" |
ANSI Start bold text. More... | |
#define | ANSI_DIM CSI "2m" |
ANSI Stop bold text. More... | |
#define | ANSI_DRED ANSI_DIM CSI "31m" |
ANSI Start dark red text. More... | |
#define | ANSI_BRED ANSI_BOLD CSI "31m" |
ANSI Start bright red text. More... | |
#define | ANSI_CLEARLINE CSI "2K" |
ANSI clear line cursor is on. More... | |
#define | ANSI_SCROLLDN CSI "1T" |
ANSI scroll screen down one line. More... | |
#define | ANSI_SAVECURSOR CSI "s" |
ANSI save cursor position. More... | |
#define | ANSI_RESTCURSOR CSI "u" |
ANSI restore cursor position if previously saved. More... | |
#define | UNIX_CLI_MAX_DEPTH_TELNET 24 |
Maximum depth into a byte stream from which to compile a Telnet protocol message. More... | |
#define | UNIX_CLI_STDIN_FD 0 |
Unix standard in. More... | |
#define | CTL(c) (u8[]){ (c) - '@', 0 } |
Given a capital ASCII letter character return a NUL terminated string with the control code for that letter. More... | |
Functions | |
always_inline void | unix_cli_pager_reset (unix_cli_file_t *f) |
Resets the pager buffer and other data. More... | |
always_inline void | unix_cli_file_free (unix_cli_file_t *f) |
Release storage used by a CLI session. More... | |
static unix_cli_parse_action_t | unix_cli_match_action (unix_cli_parse_actions_t *a, u8 *input, u32 ilen, i32 *matched) |
Search for a byte sequence in the action list. More... | |
static void | unix_cli_add_pending_output (unix_file_t *uf, unix_cli_file_t *cf, u8 *buffer, uword buffer_bytes) |
static void | unix_cli_del_pending_output (unix_file_t *uf, unix_cli_file_t *cf, uword n_bytes) |
always_inline word | unix_vlib_findchr (u8 chr, u8 *str, word len) |
A bit like strchr with a buffer length limit. More... | |
static void | unix_vlib_cli_output_raw (unix_cli_file_t *cf, unix_file_t *uf, u8 *buffer, uword buffer_bytes) |
Send a buffer to the CLI stream if possible, enqueue it otherwise. More... | |
static void | unix_vlib_cli_output_cooked (unix_cli_file_t *cf, unix_file_t *uf, u8 *buffer, uword buffer_bytes) |
Process a buffer for CRLF handling before outputting it to the CLI. More... | |
static void | unix_cli_cli_prompt (unix_cli_file_t *cf, unix_file_t *uf) |
Output the CLI prompt. More... | |
static void | unix_cli_pager_prompt (unix_cli_file_t *cf, unix_file_t *uf) |
Output a pager prompt and show number of buffered lines. More... | |
static void | unix_cli_pager_message (unix_cli_file_t *cf, unix_file_t *uf, char *message, char *postfix) |
Output a pager "skipping" message. More... | |
static void | unix_cli_pager_prompt_erase (unix_cli_file_t *cf, unix_file_t *uf) |
Erase the printed pager prompt. More... | |
static void | unix_cli_ansi_cursor (unix_cli_file_t *cf, unix_file_t *uf, u16 x, u16 y) |
Uses an ANSI escape sequence to move the cursor. More... | |
static void | unix_vlib_cli_output (uword cli_file_index, u8 *buffer, uword buffer_bytes) |
VLIB CLI output function. More... | |
static u8 | unix_cli_terminal_type (u8 *term, uword len) |
Identify whether a terminal type is ANSI capable. More... | |
static void | unix_cli_file_welcome (unix_cli_main_t *cm, unix_cli_file_t *cf) |
Emit initial welcome banner and prompt on a connection. More... | |
static void | unix_cli_file_welcome_timer (any arg, f64 delay) |
A failsafe triggered on a timer to ensure we send the prompt to telnet sessions that fail to negotiate the terminal type. More... | |
static i32 | unix_cli_process_telnet (unix_main_t *um, unix_cli_file_t *cf, unix_file_t *uf, u8 *input_vector, uword len) |
A mostly no-op Telnet state machine. More... | |
static int | unix_cli_line_process_one (unix_cli_main_t *cm, unix_main_t *um, unix_cli_file_t *cf, unix_file_t *uf, u8 input, unix_cli_parse_action_t action) |
Process actionable input. More... | |
static int | unix_cli_line_edit (unix_cli_main_t *cm, unix_main_t *um, unix_cli_file_t *cf) |
Process input bytes on a stream to provide line editing and command history in the CLI. More... | |
static void | unix_cli_process_input (unix_cli_main_t *cm, uword cli_file_index) |
Process input to a CLI session. More... | |
static void | unix_cli_kill (unix_cli_main_t *cm, uword cli_file_index) |
static uword | unix_cli_process (vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f) |
static clib_error_t * | unix_cli_write_ready (unix_file_t *uf) |
static clib_error_t * | unix_cli_read_ready (unix_file_t *uf) |
static u32 | unix_cli_file_add (unix_cli_main_t *cm, char *name, int fd) |
Store a new CLI session. More... | |
static clib_error_t * | unix_cli_listen_read_ready (unix_file_t *uf) |
Telnet listening socket has a new connection. More... | |
static void | unix_cli_resize_interrupt (int signum) |
The system terminal has informed us that the window size has changed. More... | |
static clib_error_t * | unix_cli_config (vlib_main_t *vm, unformat_input_t *input) |
Handle configuration directives in the unix section. More... | |
static clib_error_t * | unix_cli_exit (vlib_main_t *vm) |
Called when VPP is shutting down, this resets the system terminal state, if previously saved. More... | |
void | vlib_unix_cli_set_prompt (char *prompt) |
Set the CLI prompt. More... | |
static clib_error_t * | unix_cli_quit (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to quit the terminal session. More... | |
static clib_error_t * | unix_cli_exec (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to execute a VPP command script. More... | |
static clib_error_t * | unix_show_errors (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to show various unix error statistics. More... | |
static clib_error_t * | unix_cli_show_history (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to show session command history. More... | |
static clib_error_t * | unix_cli_show_terminal (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to show terminal status. More... | |
static clib_error_t * | unix_cli_set_terminal_pager (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to set terminal pager settings. More... | |
static clib_error_t * | unix_cli_set_terminal_history (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to set terminal history settings. More... | |
static clib_error_t * | unix_cli_set_terminal_ansi (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) |
CLI command to set terminal ANSI settings. More... | |
static clib_error_t * | unix_cli_init (vlib_main_t *vm) |
Variables | |
static unix_cli_banner_t | unix_cli_banner [] |
Plain welcome banner. More... | |
static unix_cli_banner_t | unix_cli_banner_color [] |
ANSI color welcome banner. More... | |
static unix_cli_parse_actions_t | unix_cli_parse_strings [] |
Patterns to match on a CLI input stream. More... | |
static unix_cli_parse_actions_t | unix_cli_parse_pager [] |
Patterns to match when a CLI session is in the pager. More... | |
static unix_cli_main_t | unix_cli_main |
CLI global state. More... | |
vlib_cli_command_t | unix_cli_quit_command |
(constructor) VLIB_CLI_COMMAND (unix_cli_quit_command) More... | |
vlib_cli_command_t | cli_exec |
(constructor) VLIB_CLI_COMMAND (cli_exec) More... | |
vlib_cli_command_t | cli_unix_show_errors |
(constructor) VLIB_CLI_COMMAND (cli_unix_show_errors) More... | |
vlib_cli_command_t | cli_unix_cli_show_history |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_show_history) More... | |
vlib_cli_command_t | cli_unix_cli_show_terminal |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_show_terminal) More... | |
vlib_cli_command_t | cli_unix_cli_set_terminal_pager |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_pager) More... | |
vlib_cli_command_t | cli_unix_cli_set_terminal_history |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_history) More... | |
vlib_cli_command_t | cli_unix_cli_set_terminal_ansi |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_ansi) More... | |
Unix stdin/socket command line interface.
Provides a command line interface so humans can interact with VPP. This is predominantly a debugging and testing mechanism.
Definition in file cli.c.
#define ANSI_RESTCURSOR CSI "u" |
#define ANSI_SCROLLDN CSI "1T" |
#define CTL | ( | c | ) | (u8[]){ (c) - '@', 0 } |
#define UNIX_CLI_MAX_DEPTH_TELNET 24 |
CLI actions.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
always_inline void unix_cli_file_free | ( | unix_cli_file_t * | f | ) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Search for a byte sequence in the action list.
Searches the unix_cli_parse_actions_t list in a for a match with the bytes in input of maximum length ilen bytes. When a match is made *matched indicates how many bytes were matched. Returns a value from the enum unix_cli_parse_action_t to indicate whether no match was found, a partial match was found or a complete match was found and what action, if any, should be taken.
[in] | a | Actions list to search within. |
[in] | input | String fragment to search for. |
[in] | ilen | Length of the string in 'input'. |
[out] | matched | Pointer to an integer that will contain the number of bytes matched when a complete match is found. |
Definition at line 425 of file cli.c.
|
static |
|
static |
|
static |
always_inline void unix_cli_pager_reset | ( | unix_cli_file_t * | f | ) |
|
static |
|
static |
|
static |
A mostly no-op Telnet state machine.
Process Telnet command bytes in a way that ensures we're mostly transparent to the Telnet protocol. That is, it's mostly a no-op.
Definition at line 845 of file cli.c.
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
Process a buffer for CRLF handling before outputting it to the CLI.
cf | Unix CLI session of the desired stream to write to. |
uf | The Unix file structure of the desired stream to write to. |
buffer | Pointer to the buffer that needs to be written. |
buffer_bytes | The number of bytes from buffer to write. |
Definition at line 565 of file cli.c.
|
static |
Send a buffer to the CLI stream if possible, enqueue it otherwise.
Attempts to write given buffer to the file descriptor of the given Unix CLI session. If that session already has data in the output buffer or if the write attempt tells us to try again later then the given buffer is appended to the pending output buffer instead.
This is typically called only from unix_vlib_cli_output_cooked
since that is where CRLF handling occurs or from places where we explicitly do not want cooked handling.
cf | Unix CLI session of the desired stream to write to. |
uf | The Unix file structure of the desired stream to write to. |
buffer | Pointer to the buffer that needs to be written. |
buffer_bytes | The number of bytes from buffer to write. |
Definition at line 535 of file cli.c.
always_inline word unix_vlib_findchr | ( | u8 | chr, |
u8 * | str, | ||
word | len | ||
) |
A bit like strchr with a buffer length limit.
Search a buffer for the first instance of a character up to the limit of the buffer length. If found then return the position of that character.
The key departure from strchr is that if the character is not found then return the buffer length.
chr | The byte value to search for. |
str | The buffer in which to search for the value. |
len | The depth into the buffer to search. |
chr
. If chr
is not found then len
instead. Definition at line 509 of file cli.c.
void vlib_unix_cli_set_prompt | ( | char * | prompt | ) |
vlib_cli_command_t cli_exec |
(constructor) VLIB_CLI_COMMAND (cli_exec)
vlib_cli_command_t cli_unix_cli_set_terminal_ansi |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_ansi)
vlib_cli_command_t cli_unix_cli_set_terminal_history |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_history)
vlib_cli_command_t cli_unix_cli_set_terminal_pager |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_pager)
vlib_cli_command_t cli_unix_cli_show_history |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_show_history)
vlib_cli_command_t cli_unix_cli_show_terminal |
(constructor) VLIB_CLI_COMMAND (cli_unix_cli_show_terminal)
vlib_cli_command_t cli_unix_show_errors |
(constructor) VLIB_CLI_COMMAND (cli_unix_show_errors)
|
static |
|
static |
ANSI color welcome banner.
|
static |
|
static |
Patterns to match when a CLI session is in the pager.
|
static |
Patterns to match on a CLI input stream.
vlib_cli_command_t unix_cli_quit_command |
(constructor) VLIB_CLI_COMMAND (unix_cli_quit_command)