blob: a647dd782501be6c74e2744a9871321583e47afc [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * Copyright (c) 2015 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15/*
16 * cli.c: Unix stdin/socket CLI.
17 *
18 * Copyright (c) 2008 Eliot Dresselhaus
19 *
20 * Permission is hereby granted, free of charge, to any person obtaining
21 * a copy of this software and associated documentation files (the
22 * "Software"), to deal in the Software without restriction, including
23 * without limitation the rights to use, copy, modify, merge, publish,
24 * distribute, sublicense, and/or sell copies of the Software, and to
25 * permit persons to whom the Software is furnished to do so, subject to
26 * the following conditions:
27 *
28 * The above copyright notice and this permission notice shall be
29 * included in all copies or substantial portions of the Software.
30 *
31 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
32 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
33 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
34 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
37 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38 */
Chris Lukeb5850972016-05-03 16:34:59 -040039/**
Chris Luke8e5b0412016-07-26 13:06:10 -040040 * @file
Chris Lukeb5850972016-05-03 16:34:59 -040041 * @brief Unix stdin/socket command line interface.
42 * Provides a command line interface so humans can interact with VPP.
43 * This is predominantly a debugging and testing mechanism.
44 */
Chris Luke90f52bf2016-09-12 08:55:13 -040045/*? %%clicmd:group_label Command line session %% ?*/
46/*? %%syscfg:group_label Command line session %% ?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -070047
48#include <vlib/vlib.h>
49#include <vlib/unix/unix.h>
50
Chris Luke0aca5eb2016-04-25 13:48:54 -040051#include <ctype.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070052#include <fcntl.h>
53#include <sys/stat.h>
54#include <termios.h>
Chris Luke7afda3a2016-04-25 13:49:22 -040055#include <signal.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070056#include <unistd.h>
57#include <arpa/telnet.h>
Chris Luke7afda3a2016-04-25 13:49:22 -040058#include <sys/ioctl.h>
Damjan Marionf6616382017-06-21 12:01:37 +020059#include <sys/types.h>
60#include <unistd.h>
Damjan Marionceab7882018-01-19 20:56:12 +010061#include <limits.h>
Chris Lukea9cf6af2018-09-05 21:00:52 -040062#include <netinet/tcp.h>
Chris Luke6a3a4f72019-07-09 23:33:30 -040063#include <math.h>
Dave Barach961e3c82020-06-18 17:04:18 -040064#include <vppinfra/macros.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
Chris Lukeb5850972016-05-03 16:34:59 -040066/** ANSI escape code. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040067#define ESC "\x1b"
68
Chris Lukeb5850972016-05-03 16:34:59 -040069/** ANSI Control Sequence Introducer. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040070#define CSI ESC "["
71
Chris Lukeb5850972016-05-03 16:34:59 -040072/** ANSI clear screen. */
Chris Luke7afda3a2016-04-25 13:49:22 -040073#define ANSI_CLEAR CSI "2J" CSI "1;1H"
Chris Lukeb5850972016-05-03 16:34:59 -040074/** ANSI reset color settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -040075#define ANSI_RESET CSI "0m"
Chris Lukeb5850972016-05-03 16:34:59 -040076/** ANSI Start bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040077#define ANSI_BOLD CSI "1m"
Chris Lukeb5850972016-05-03 16:34:59 -040078/** ANSI Stop bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040079#define ANSI_DIM CSI "2m"
Chris Lukeb5850972016-05-03 16:34:59 -040080/** ANSI Start dark red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040081#define ANSI_DRED ANSI_DIM CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040082/** ANSI Start bright red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040083#define ANSI_BRED ANSI_BOLD CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040084/** ANSI clear line cursor is on. */
Chris Luke7afda3a2016-04-25 13:49:22 -040085#define ANSI_CLEARLINE CSI "2K"
Chris Lukeb5850972016-05-03 16:34:59 -040086/** ANSI scroll screen down one line. */
Chris Luke7afda3a2016-04-25 13:49:22 -040087#define ANSI_SCROLLDN CSI "1T"
Chris Lukeb5850972016-05-03 16:34:59 -040088/** ANSI save cursor position. */
Chris Luke7afda3a2016-04-25 13:49:22 -040089#define ANSI_SAVECURSOR CSI "s"
Chris Lukeb5850972016-05-03 16:34:59 -040090/** ANSI restore cursor position if previously saved. */
Chris Luke7afda3a2016-04-25 13:49:22 -040091#define ANSI_RESTCURSOR CSI "u"
Chris Luke0aca5eb2016-04-25 13:48:54 -040092
93/** Maximum depth into a byte stream from which to compile a Telnet
Chris Luke2d8bf302017-11-12 22:26:37 -050094 * protocol message. This is a safety measure. */
Vladimir Isaevb59095f2020-08-11 17:15:58 +030095#define UNIX_CLI_MAX_DEPTH_TELNET 32
Chris Luke0aca5eb2016-04-25 13:48:54 -040096
Chris Lukeb2bcad62017-09-18 08:51:22 -040097/** Maximum terminal width we will accept */
98#define UNIX_CLI_MAX_TERMINAL_WIDTH 512
Chris Lukeb2bcad62017-09-18 08:51:22 -040099/** Maximum terminal height we will accept */
100#define UNIX_CLI_MAX_TERMINAL_HEIGHT 512
Chris Luke2d8bf302017-11-12 22:26:37 -0500101/** Default terminal height */
102#define UNIX_CLI_DEFAULT_TERMINAL_HEIGHT 24
103/** Default terminal width */
104#define UNIX_CLI_DEFAULT_TERMINAL_WIDTH 80
Chris Luke0aca5eb2016-04-25 13:48:54 -0400105
Chris Lukeb5850972016-05-03 16:34:59 -0400106/** A CLI banner line. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400107typedef struct
108{
109 u8 *line; /**< The line to print. */
110 u32 length; /**< The length of the line without terminating NUL. */
Chris Luke572d8122016-04-25 13:49:07 -0400111} unix_cli_banner_t;
112
113#define _(a) { .line = (u8 *)(a), .length = sizeof(a) - 1 }
114/** Plain welcome banner. */
115static unix_cli_banner_t unix_cli_banner[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400116 _(" _______ _ _ _____ ___ \n"),
117 _(" __/ __/ _ \\ (_)__ | | / / _ \\/ _ \\\n"),
118 _(" _/ _// // / / / _ \\ | |/ / ___/ ___/\n"),
119 _(" /_/ /____(_)_/\\___/ |___/_/ /_/ \n"),
120 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400121};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400122
Chris Luke572d8122016-04-25 13:49:07 -0400123/** ANSI color welcome banner. */
124static unix_cli_banner_t unix_cli_banner_color[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400125 _(ANSI_BRED " _______ _ " ANSI_RESET " _ _____ ___ \n"),
126 _(ANSI_BRED " __/ __/ _ \\ (_)__ " ANSI_RESET " | | / / _ \\/ _ \\\n"),
127 _(ANSI_BRED " _/ _// // / / / _ \\" ANSI_RESET " | |/ / ___/ ___/\n"),
128 _(ANSI_BRED " /_/ /____(_)_/\\___/" ANSI_RESET " |___/_/ /_/ \n"),
129 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400130};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400131
Chris Luke572d8122016-04-25 13:49:07 -0400132#undef _
133
Chris Luke862623d2016-05-14 10:13:34 -0400134/** Pager line index */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400135typedef struct
136{
Chris Luke862623d2016-05-14 10:13:34 -0400137 /** Index into pager_vector */
138 u32 line;
139
140 /** Offset of the string in the line */
141 u32 offset;
142
143 /** Length of the string in the line */
144 u32 length;
145} unix_cli_pager_index_t;
146
Chris Luke572d8122016-04-25 13:49:07 -0400147
Chris Luke0aca5eb2016-04-25 13:48:54 -0400148/** Unix CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400149typedef struct
150{
Chris Lukeb5850972016-05-03 16:34:59 -0400151 /** The file index held by unix.c */
Damjan Marion56dd5432017-09-08 19:52:02 +0200152 u32 clib_file_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700153
Chris Lukeb5850972016-05-03 16:34:59 -0400154 /** Vector of output pending write to file descriptor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400155 u8 *output_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700156
Chris Lukeb5850972016-05-03 16:34:59 -0400157 /** Vector of input saved by Unix input node to be processed by
Ed Warnickecb9cada2015-12-08 15:45:58 -0700158 CLI process. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400159 u8 *input_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700160
Chris Luke54ccf222016-07-25 16:38:11 -0400161 /** This session has command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162 u8 has_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400163 /** Array of vectors of commands in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400164 u8 **command_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400165 /** The command currently pointed at by the history cursor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400166 u8 *current_command;
Chris Luke54ccf222016-07-25 16:38:11 -0400167 /** How far from the end of the history array the user has browsed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700168 i32 excursion;
Chris Luke6b90fe32016-04-25 13:49:15 -0400169
Chris Lukeb5850972016-05-03 16:34:59 -0400170 /** Maximum number of history entries this session will store. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700171 u32 history_limit;
Chris Luke6b90fe32016-04-25 13:49:15 -0400172
Chris Lukeb5850972016-05-03 16:34:59 -0400173 /** Current command line counter */
Chris Luke6b90fe32016-04-25 13:49:15 -0400174 u32 command_number;
175
Chris Luke54ccf222016-07-25 16:38:11 -0400176 /** The string being searched for in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400177 u8 *search_key;
Chris Luke54ccf222016-07-25 16:38:11 -0400178 /** If non-zero then the CLI is searching in the history array.
179 * - @c -1 means search backwards.
180 * - @c 1 means search forwards.
181 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182 int search_mode;
183
Chris Lukeb5850972016-05-03 16:34:59 -0400184 /** Position of the insert cursor on the current input line */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400185 u32 cursor;
186
Chris Lukeb5850972016-05-03 16:34:59 -0400187 /** Line mode or char mode */
Chris Luke7afda3a2016-04-25 13:49:22 -0400188 u8 line_mode;
189
Chris Lukeb5850972016-05-03 16:34:59 -0400190 /** Set if the CRLF mode wants CR + LF */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400191 u8 crlf_mode;
192
Chris Lukeb5850972016-05-03 16:34:59 -0400193 /** Can we do ANSI output? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400194 u8 ansi_capable;
195
Chris Lukeb5850972016-05-03 16:34:59 -0400196 /** Has the session started? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400197 u8 started;
198
Chris Lukeb5850972016-05-03 16:34:59 -0400199 /** Disable the pager? */
Chris Luke7afda3a2016-04-25 13:49:22 -0400200 u8 no_pager;
201
Chris Luke03add7f2017-09-20 23:31:24 -0400202 /** Whether the session is interactive or not.
203 * Controls things like initial banner, the CLI prompt etc. */
204 u8 is_interactive;
205
206 /** Whether the session is attached to a socket. */
207 u8 is_socket;
208
209 /** If EPIPE has been detected, prevent further write-related
210 * activity on the descriptor.
211 */
212 u8 has_epipe;
213
Chris Lukeb5850972016-05-03 16:34:59 -0400214 /** Pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400215 u8 **pager_vector;
Chris Luke7afda3a2016-04-25 13:49:22 -0400216
Chris Luke862623d2016-05-14 10:13:34 -0400217 /** Index of line fragments in the pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400218 unix_cli_pager_index_t *pager_index;
Chris Luke7afda3a2016-04-25 13:49:22 -0400219
Chris Lukeb5850972016-05-03 16:34:59 -0400220 /** Line number of top of page */
Chris Luke7afda3a2016-04-25 13:49:22 -0400221 u32 pager_start;
222
Chris Lukeb5850972016-05-03 16:34:59 -0400223 /** Terminal width */
224 u32 width;
Chris Luke7afda3a2016-04-25 13:49:22 -0400225
Chris Lukeb5850972016-05-03 16:34:59 -0400226 /** Terminal height */
227 u32 height;
228
229 /** Process node identifier */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230 u32 process_node_index;
Chris Lukefc379d22018-06-05 23:50:19 -0400231
232 /** The current direction of cursor travel.
233 * This is important since when advancing left-to-right, at the
234 * right hand edge of the console the terminal typically defers
235 * wrapping the cursor to the next line until a character is
236 * actually displayed.
237 * This messes up our heuristic for whether to use ANSI to return
238 * the cursor to the end of the line and instead we have to
239 * nudge the cursor to the next line.
240 * A Value of @c 0 means we're advancing left-to-right; @c 1 means
241 * the opposite.
242 */
243 u8 cursor_direction;
244
Dave Barachb30b9542020-06-22 10:02:25 -0400245 /** Macro tables for this session */
246 clib_macro_main_t macro_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247} unix_cli_file_t;
248
Chris Lukeb5850972016-05-03 16:34:59 -0400249/** Resets the pager buffer and other data.
250 * @param f The CLI session whose pager needs to be reset.
251 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400253unix_cli_pager_reset (unix_cli_file_t * f)
Chris Luke7afda3a2016-04-25 13:49:22 -0400254{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255 u8 **p;
Chris Luke7afda3a2016-04-25 13:49:22 -0400256
Chris Luke862623d2016-05-14 10:13:34 -0400257 f->pager_start = 0;
258
259 vec_free (f->pager_index);
260 f->pager_index = 0;
261
Chris Luke7afda3a2016-04-25 13:49:22 -0400262 vec_foreach (p, f->pager_vector)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400263 {
264 vec_free (*p);
265 }
Chris Luke862623d2016-05-14 10:13:34 -0400266 vec_free (f->pager_vector);
Chris Luke7afda3a2016-04-25 13:49:22 -0400267 f->pager_vector = 0;
268}
269
Chris Lukeb5850972016-05-03 16:34:59 -0400270/** Release storage used by a CLI session.
271 * @param f The CLI session whose storage needs to be released.
272 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400273always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700274unix_cli_file_free (unix_cli_file_t * f)
275{
276 vec_free (f->output_vector);
277 vec_free (f->input_vector);
Chris Luke862623d2016-05-14 10:13:34 -0400278 unix_cli_pager_reset (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279}
280
Chris Lukeb5850972016-05-03 16:34:59 -0400281/** CLI actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400282typedef enum
283{
Chris Luke54ccf222016-07-25 16:38:11 -0400284 UNIX_CLI_PARSE_ACTION_NOACTION = 0, /**< No action */
285 UNIX_CLI_PARSE_ACTION_CRLF, /**< Carriage return, newline or enter */
286 UNIX_CLI_PARSE_ACTION_TAB, /**< Tab key */
287 UNIX_CLI_PARSE_ACTION_ERASE, /**< Erase cursor left */
288 UNIX_CLI_PARSE_ACTION_ERASERIGHT, /**< Erase cursor right */
289 UNIX_CLI_PARSE_ACTION_UP, /**< Up arrow */
290 UNIX_CLI_PARSE_ACTION_DOWN, /**< Down arrow */
291 UNIX_CLI_PARSE_ACTION_LEFT, /**< Left arrow */
292 UNIX_CLI_PARSE_ACTION_RIGHT, /**< Right arrow */
293 UNIX_CLI_PARSE_ACTION_HOME, /**< Home key (jump to start of line) */
294 UNIX_CLI_PARSE_ACTION_END, /**< End key (jump to end of line) */
295 UNIX_CLI_PARSE_ACTION_WORDLEFT, /**< Jump cursor to start of left word */
296 UNIX_CLI_PARSE_ACTION_WORDRIGHT, /**< Jump cursor to start of right word */
297 UNIX_CLI_PARSE_ACTION_ERASELINELEFT, /**< Erase line to left of cursor */
298 UNIX_CLI_PARSE_ACTION_ERASELINERIGHT, /**< Erase line to right & including cursor */
Hiroki Shirokura67e4df12019-08-16 11:30:34 +0000299 UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT, /**< Erase word left */
Chris Luke54ccf222016-07-25 16:38:11 -0400300 UNIX_CLI_PARSE_ACTION_CLEAR, /**< Clear the terminal */
301 UNIX_CLI_PARSE_ACTION_REVSEARCH, /**< Search backwards in command history */
302 UNIX_CLI_PARSE_ACTION_FWDSEARCH, /**< Search forwards in command history */
303 UNIX_CLI_PARSE_ACTION_YANK, /**< Undo last erase action */
304 UNIX_CLI_PARSE_ACTION_TELNETIAC, /**< Telnet control code */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400305
Chris Luke54ccf222016-07-25 16:38:11 -0400306 UNIX_CLI_PARSE_ACTION_PAGER_CRLF, /**< Enter pressed (CR, CRLF, LF, etc) */
307 UNIX_CLI_PARSE_ACTION_PAGER_QUIT, /**< Exit the pager session */
308 UNIX_CLI_PARSE_ACTION_PAGER_NEXT, /**< Scroll to next page */
309 UNIX_CLI_PARSE_ACTION_PAGER_DN, /**< Scroll to next line */
310 UNIX_CLI_PARSE_ACTION_PAGER_UP, /**< Scroll to previous line */
311 UNIX_CLI_PARSE_ACTION_PAGER_TOP, /**< Scroll to first line */
312 UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM, /**< Scroll to last line */
313 UNIX_CLI_PARSE_ACTION_PAGER_PGDN, /**< Scroll to next page */
314 UNIX_CLI_PARSE_ACTION_PAGER_PGUP, /**< Scroll to previous page */
315 UNIX_CLI_PARSE_ACTION_PAGER_REDRAW, /**< Clear and redraw the page on the terminal */
316 UNIX_CLI_PARSE_ACTION_PAGER_SEARCH, /**< Search the pager buffer */
Chris Luke7afda3a2016-04-25 13:49:22 -0400317
Chris Luke54ccf222016-07-25 16:38:11 -0400318 UNIX_CLI_PARSE_ACTION_PARTIALMATCH, /**< Action parser found a partial match */
319 UNIX_CLI_PARSE_ACTION_NOMATCH /**< Action parser did not find any match */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400320} unix_cli_parse_action_t;
321
Chris Luke8e5b0412016-07-26 13:06:10 -0400322/** @brief Mapping of input buffer strings to action values.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400323 * @note This won't work as a hash since we need to be able to do
324 * partial matches on the string.
325 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400326typedef struct
327{
328 u8 *input; /**< Input string to match. */
329 u32 len; /**< Length of input without final NUL. */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400330 unix_cli_parse_action_t action; /**< Action to take when matched. */
331} unix_cli_parse_actions_t;
332
Chris Lukeb5850972016-05-03 16:34:59 -0400333/** @brief Given a capital ASCII letter character return a @c NUL terminated
Chris Luke0aca5eb2016-04-25 13:48:54 -0400334 * string with the control code for that letter.
Chris Lukeb5850972016-05-03 16:34:59 -0400335 *
336 * @param c An ASCII character.
337 * @return A @c NUL terminated string of type @c u8[].
338 *
339 * @par Example
340 * @c CTL('A') returns <code>{ 0x01, 0x00 }</code> as a @c u8[].
Chris Luke0aca5eb2016-04-25 13:48:54 -0400341 */
342#define CTL(c) (u8[]){ (c) - '@', 0 }
343
344#define _(a,b) { .input = (u8 *)(a), .len = sizeof(a) - 1, .action = (b) }
Chris Lukeb5850972016-05-03 16:34:59 -0400345/**
346 * Patterns to match on a CLI input stream.
347 * @showinitializer
348 */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400349static unix_cli_parse_actions_t unix_cli_parse_strings[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400350 /* Line handling */
351 _("\r\n", UNIX_CLI_PARSE_ACTION_CRLF), /* Must be before '\r' */
352 _("\n", UNIX_CLI_PARSE_ACTION_CRLF),
353 _("\r\0", UNIX_CLI_PARSE_ACTION_CRLF), /* Telnet does this */
354 _("\r", UNIX_CLI_PARSE_ACTION_CRLF),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400355
Dave Barach9b8ffd92016-07-08 08:13:45 -0400356 /* Unix shell control codes */
357 _(CTL ('B'), UNIX_CLI_PARSE_ACTION_LEFT),
358 _(CTL ('F'), UNIX_CLI_PARSE_ACTION_RIGHT),
359 _(CTL ('P'), UNIX_CLI_PARSE_ACTION_UP),
360 _(CTL ('N'), UNIX_CLI_PARSE_ACTION_DOWN),
361 _(CTL ('A'), UNIX_CLI_PARSE_ACTION_HOME),
362 _(CTL ('E'), UNIX_CLI_PARSE_ACTION_END),
363 _(CTL ('D'), UNIX_CLI_PARSE_ACTION_ERASERIGHT),
364 _(CTL ('U'), UNIX_CLI_PARSE_ACTION_ERASELINELEFT),
365 _(CTL ('K'), UNIX_CLI_PARSE_ACTION_ERASELINERIGHT),
Hiroki Shirokura67e4df12019-08-16 11:30:34 +0000366 _(CTL ('W'), UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT),
Dave Barach9b8ffd92016-07-08 08:13:45 -0400367 _(CTL ('Y'), UNIX_CLI_PARSE_ACTION_YANK),
368 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_CLEAR),
369 _(ESC "b", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* Alt-B */
370 _(ESC "f", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* Alt-F */
371 _("\b", UNIX_CLI_PARSE_ACTION_ERASE), /* ^H */
372 _("\x7f", UNIX_CLI_PARSE_ACTION_ERASE), /* Backspace */
373 _("\t", UNIX_CLI_PARSE_ACTION_TAB), /* ^I */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400374
Dave Barach9b8ffd92016-07-08 08:13:45 -0400375 /* VT100 Normal mode - Broadest support */
376 _(CSI "A", UNIX_CLI_PARSE_ACTION_UP),
377 _(CSI "B", UNIX_CLI_PARSE_ACTION_DOWN),
378 _(CSI "C", UNIX_CLI_PARSE_ACTION_RIGHT),
379 _(CSI "D", UNIX_CLI_PARSE_ACTION_LEFT),
380 _(CSI "H", UNIX_CLI_PARSE_ACTION_HOME),
381 _(CSI "F", UNIX_CLI_PARSE_ACTION_END),
382 _(CSI "3~", UNIX_CLI_PARSE_ACTION_ERASERIGHT), /* Delete */
383 _(CSI "1;5D", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* C-Left */
384 _(CSI "1;5C", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* C-Right */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400385
386 /* VT100 Application mode - Some Gnome Terminal functions use these */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400387 _(ESC "OA", UNIX_CLI_PARSE_ACTION_UP),
388 _(ESC "OB", UNIX_CLI_PARSE_ACTION_DOWN),
389 _(ESC "OC", UNIX_CLI_PARSE_ACTION_RIGHT),
390 _(ESC "OD", UNIX_CLI_PARSE_ACTION_LEFT),
391 _(ESC "OH", UNIX_CLI_PARSE_ACTION_HOME),
392 _(ESC "OF", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400393
Dave Barach9b8ffd92016-07-08 08:13:45 -0400394 /* ANSI X3.41-1974 - sent by Microsoft Telnet and PuTTY */
395 _(CSI "1~", UNIX_CLI_PARSE_ACTION_HOME),
396 _(CSI "4~", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400397
Dave Barach9b8ffd92016-07-08 08:13:45 -0400398 /* Emacs-ish history search */
399 _(CTL ('S'), UNIX_CLI_PARSE_ACTION_FWDSEARCH),
400 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_REVSEARCH),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400401
Dave Barach9b8ffd92016-07-08 08:13:45 -0400402 /* Other protocol things */
403 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
404 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
405 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400406};
Chris Lukeb5850972016-05-03 16:34:59 -0400407
408/**
409 * Patterns to match when a CLI session is in the pager.
410 * @showinitializer
411 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400412static unix_cli_parse_actions_t unix_cli_parse_pager[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400413 /* Line handling */
414 _("\r\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Must be before '\r' */
415 _("\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
416 _("\r\0", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Telnet does this */
417 _("\r", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
Chris Luke7afda3a2016-04-25 13:49:22 -0400418
Dave Barach9b8ffd92016-07-08 08:13:45 -0400419 /* Pager commands */
420 _(" ", UNIX_CLI_PARSE_ACTION_PAGER_NEXT),
421 _("q", UNIX_CLI_PARSE_ACTION_PAGER_QUIT),
422 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
423 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
424 _("/", UNIX_CLI_PARSE_ACTION_PAGER_SEARCH),
Chris Luke7afda3a2016-04-25 13:49:22 -0400425
Dave Barach9b8ffd92016-07-08 08:13:45 -0400426 /* VT100 */
427 _(CSI "A", UNIX_CLI_PARSE_ACTION_PAGER_UP),
428 _(CSI "B", UNIX_CLI_PARSE_ACTION_PAGER_DN),
429 _(CSI "H", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
430 _(CSI "F", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400431
Dave Barach9b8ffd92016-07-08 08:13:45 -0400432 /* VT100 Application mode */
433 _(ESC "OA", UNIX_CLI_PARSE_ACTION_PAGER_UP),
434 _(ESC "OB", UNIX_CLI_PARSE_ACTION_PAGER_DN),
435 _(ESC "OH", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
436 _(ESC "OF", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400437
Dave Barach9b8ffd92016-07-08 08:13:45 -0400438 /* ANSI X3.41-1974 */
439 _(CSI "1~", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
440 _(CSI "4~", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
441 _(CSI "5~", UNIX_CLI_PARSE_ACTION_PAGER_PGUP),
442 _(CSI "6~", UNIX_CLI_PARSE_ACTION_PAGER_PGDN),
Chris Luke7afda3a2016-04-25 13:49:22 -0400443
Dave Barach9b8ffd92016-07-08 08:13:45 -0400444 /* Other protocol things */
445 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
446 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
447 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke7afda3a2016-04-25 13:49:22 -0400448};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400449
Chris Luke0aca5eb2016-04-25 13:48:54 -0400450#undef _
451
Chris Luke6a3a4f72019-07-09 23:33:30 -0400452/** CLI session telnet negotiation timer events. */
453typedef enum
454{
455 UNIX_CLI_NEW_SESSION_EVENT_ADD, /**< Add a CLI session to the new session list */
456} unix_cli_timeout_event_type_t;
457
458/** Each new session is stored on a list with a deadline after which
459 * a prompt is issued, in case the session TELNET negotiation fails to
460 * complete. */
461typedef struct
462{
463 uword cf_index; /**< Session index of the new session. */
464 f64 deadline; /**< Deadline after which the new session must have a prompt. */
465} unix_cli_new_session_t;
466
Chris Lukeb5850972016-05-03 16:34:59 -0400467/** CLI global state. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400468typedef struct
469{
Chris Lukeb5850972016-05-03 16:34:59 -0400470 /** Prompt string for CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400471 u8 *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700472
Chris Lukeb5850972016-05-03 16:34:59 -0400473 /** Vec pool of CLI sessions. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400474 unix_cli_file_t *cli_file_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700475
Chris Lukeb5850972016-05-03 16:34:59 -0400476 /** Vec pool of unused session indices. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400477 u32 *unused_cli_process_node_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700478
Chris Lukeb5850972016-05-03 16:34:59 -0400479 /** The session index of the stdin cli */
Chris Luke7afda3a2016-04-25 13:49:22 -0400480 u32 stdin_cli_file_index;
481
Chris Lukeb5850972016-05-03 16:34:59 -0400482 /** File pool index of current input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700483 u32 current_input_file_index;
Chris Luke6a3a4f72019-07-09 23:33:30 -0400484
485 /** New session process node identifier */
486 u32 new_session_process_node_index;
487
488 /** List of new sessions */
489 unix_cli_new_session_t *new_sessions;
Dave Barach961e3c82020-06-18 17:04:18 -0400490
Dave Barachb30b9542020-06-22 10:02:25 -0400491 /** system default macro table */
Dave Barach961e3c82020-06-18 17:04:18 -0400492 clib_macro_main_t macro_main;
493
Ed Warnickecb9cada2015-12-08 15:45:58 -0700494} unix_cli_main_t;
495
Chris Lukeb5850972016-05-03 16:34:59 -0400496/** CLI global state */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700497static unix_cli_main_t unix_cli_main;
498
Dave Barachb30b9542020-06-22 10:02:25 -0400499/** Return the macro main / tables we should use for this session
500 */
501static clib_macro_main_t *
502get_macro_main (void)
503{
504 unix_cli_main_t *cm = &unix_cli_main;
505 vlib_main_t *vm = vlib_get_main ();
506 vlib_process_t *cp = vlib_get_current_process (vm);
507 unix_cli_file_t *cf;
508
509 if (pool_is_free_index (cm->cli_file_pool, cp->output_function_arg))
510 return (&cm->macro_main);
511
512 cf = pool_elt_at_index (cm->cli_file_pool, cp->output_function_arg);
513
514 return (&cf->macro_main);
515}
516
Chris Luke0aca5eb2016-04-25 13:48:54 -0400517/**
Chris Luke8e5b0412016-07-26 13:06:10 -0400518 * @brief Search for a byte sequence in the action list.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400519 *
Chris Lukeb5850972016-05-03 16:34:59 -0400520 * Searches the @ref unix_cli_parse_actions_t list in @a a for a match with
521 * the bytes in @a input of maximum length @a ilen bytes.
522 * When a match is made @a *matched indicates how many bytes were matched.
523 * Returns a value from the enum @ref unix_cli_parse_action_t to indicate
524 * whether no match was found, a partial match was found or a complete
525 * match was found and what action, if any, should be taken.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400526 *
Chris Lukeb5850972016-05-03 16:34:59 -0400527 * @param[in] a Actions list to search within.
528 * @param[in] input String fragment to search for.
529 * @param[in] ilen Length of the string in 'input'.
530 * @param[out] matched Pointer to an integer that will contain the number
531 * of bytes matched when a complete match is found.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400532 *
Chris Lukeb5850972016-05-03 16:34:59 -0400533 * @return Action from @ref unix_cli_parse_action_t that the string fragment
Chris Luke0aca5eb2016-04-25 13:48:54 -0400534 * matches.
Chris Lukeb5850972016-05-03 16:34:59 -0400535 * @ref UNIX_CLI_PARSE_ACTION_PARTIALMATCH is returned when the
536 * whole input string matches the start of at least one action.
537 * @ref UNIX_CLI_PARSE_ACTION_NOMATCH is returned when there is no
Chris Luke0aca5eb2016-04-25 13:48:54 -0400538 * match at all.
539 */
540static unix_cli_parse_action_t
Dave Barach9b8ffd92016-07-08 08:13:45 -0400541unix_cli_match_action (unix_cli_parse_actions_t * a,
542 u8 * input, u32 ilen, i32 * matched)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400543{
Chris Luke0aca5eb2016-04-25 13:48:54 -0400544 u8 partial = 0;
545
546 while (a->input)
547 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 if (ilen >= a->len)
549 {
550 /* see if the start of the input buffer exactly matches the current
551 * action string. */
552 if (memcmp (input, a->input, a->len) == 0)
553 {
554 *matched = a->len;
555 return a->action;
556 }
557 }
558 else
559 {
560 /* if the first ilen characters match, flag this as a partial -
561 * meaning keep collecting bytes in case of a future match */
562 if (memcmp (input, a->input, ilen) == 0)
563 partial = 1;
564 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400565
Dave Barach9b8ffd92016-07-08 08:13:45 -0400566 /* check next action */
567 a++;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400568 }
569
570 return partial ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400571 UNIX_CLI_PARSE_ACTION_PARTIALMATCH : UNIX_CLI_PARSE_ACTION_NOMATCH;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400572}
573
574
Chris Luke54ccf222016-07-25 16:38:11 -0400575/** Add bytes to the output vector and then flagg the I/O system that bytes
576 * are available to be sent.
577 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700578static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200579unix_cli_add_pending_output (clib_file_t * uf,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580 unix_cli_file_t * cf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400581 u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700582{
Damjan Marion56dd5432017-09-08 19:52:02 +0200583 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700584
585 vec_add (cf->output_vector, buffer, buffer_bytes);
586 if (vec_len (cf->output_vector) > 0)
587 {
588 int skip_update = 0 != (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
589 uf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400590 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200591 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592 }
593}
594
Chris Luke54ccf222016-07-25 16:38:11 -0400595/** Delete all bytes from the output vector and flag the I/O system
596 * that no more bytes are available to be sent.
597 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200599unix_cli_del_pending_output (clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400600 unix_cli_file_t * cf, uword n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601{
Damjan Marion56dd5432017-09-08 19:52:02 +0200602 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700603
604 vec_delete (cf->output_vector, n_bytes, 0);
605 if (vec_len (cf->output_vector) <= 0)
606 {
607 int skip_update = 0 == (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
608 uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400609 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200610 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700611 }
612}
613
Chris Luke8e5b0412016-07-26 13:06:10 -0400614/** @brief A bit like strchr with a buffer length limit.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400615 * Search a buffer for the first instance of a character up to the limit of
616 * the buffer length. If found then return the position of that character.
617 *
618 * The key departure from strchr is that if the character is not found then
619 * return the buffer length.
620 *
621 * @param chr The byte value to search for.
622 * @param str The buffer in which to search for the value.
623 * @param len The depth into the buffer to search.
624 *
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700625 * @return The index of the first occurrence of \c chr. If \c chr is not
Chris Luke0aca5eb2016-04-25 13:48:54 -0400626 * found then \c len instead.
627 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400628always_inline word
629unix_vlib_findchr (u8 chr, u8 * str, word len)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400630{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400631 word i = 0;
632 for (i = 0; i < len; i++, str++)
633 {
634 if (*str == chr)
635 return i;
636 }
637 return len;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400638}
639
Chris Luke8e5b0412016-07-26 13:06:10 -0400640/** @brief Send a buffer to the CLI stream if possible, enqueue it otherwise.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400641 * Attempts to write given buffer to the file descriptor of the given
642 * Unix CLI session. If that session already has data in the output buffer
643 * or if the write attempt tells us to try again later then the given buffer
644 * is appended to the pending output buffer instead.
645 *
646 * This is typically called only from \c unix_vlib_cli_output_cooked since
647 * that is where CRLF handling occurs or from places where we explicitly do
648 * not want cooked handling.
649 *
650 * @param cf Unix CLI session of the desired stream to write to.
651 * @param uf The Unix file structure of the desired stream to write to.
652 * @param buffer Pointer to the buffer that needs to be written.
653 * @param buffer_bytes The number of bytes from \c buffer to write.
654 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400655static void
656unix_vlib_cli_output_raw (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200657 clib_file_t * uf, u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400658{
659 int n = 0;
660
Chris Luke03add7f2017-09-20 23:31:24 -0400661 if (cf->has_epipe) /* don't try writing anything */
662 return;
663
Chris Luke0aca5eb2016-04-25 13:48:54 -0400664 if (vec_len (cf->output_vector) == 0)
Chris Luke03add7f2017-09-20 23:31:24 -0400665 {
666 if (cf->is_socket)
667 /* If it's a socket we use MSG_NOSIGNAL to prevent SIGPIPE */
668 n = send (uf->file_descriptor, buffer, buffer_bytes, MSG_NOSIGNAL);
669 else
670 n = write (uf->file_descriptor, buffer, buffer_bytes);
671 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400672
673 if (n < 0 && errno != EAGAIN)
674 {
Chris Luke03add7f2017-09-20 23:31:24 -0400675 if (errno == EPIPE)
676 {
677 /* connection closed on us */
678 unix_main_t *um = &unix_main;
679 cf->has_epipe = 1;
680 vlib_process_signal_event (um->vlib_main, cf->process_node_index,
681 UNIX_CLI_PROCESS_EVENT_QUIT,
682 uf->private_data);
683 }
684 else
685 {
686 clib_unix_warning ("write");
687 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400688 }
689 else if ((word) n < (word) buffer_bytes)
690 {
691 /* We got EAGAIN or we already have stuff in the buffer;
692 * queue up whatever didn't get sent for later. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 if (n < 0)
694 n = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400695 unix_cli_add_pending_output (uf, cf, buffer + n, buffer_bytes - n);
696 }
697}
698
Chris Luke8e5b0412016-07-26 13:06:10 -0400699/** @brief Process a buffer for CRLF handling before outputting it to the CLI.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400700 *
701 * @param cf Unix CLI session of the desired stream to write to.
702 * @param uf The Unix file structure of the desired stream to write to.
703 * @param buffer Pointer to the buffer that needs to be written.
704 * @param buffer_bytes The number of bytes from \c buffer to write.
705 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400706static void
707unix_vlib_cli_output_cooked (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200708 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400709 u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400710{
711 word end = 0, start = 0;
712
713 while (end < buffer_bytes)
714 {
715 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400716 {
717 /* iterate the line on \n's so we can insert a \r before it */
718 end = unix_vlib_findchr ('\n',
719 buffer + start,
720 buffer_bytes - start) + start;
721 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400722 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400723 {
724 /* otherwise just send the whole buffer */
725 end = buffer_bytes;
726 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400727
Dave Barach9b8ffd92016-07-08 08:13:45 -0400728 unix_vlib_cli_output_raw (cf, uf, buffer + start, end - start);
Chris Luke0aca5eb2016-04-25 13:48:54 -0400729
730 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400731 {
732 if (end < buffer_bytes)
733 {
734 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\r\n", 2);
735 end++; /* skip the \n that we already sent */
736 }
737 start = end;
738 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400739 }
Chris Lukefc379d22018-06-05 23:50:19 -0400740
741 /* Use the last character to determine the last direction of the cursor. */
742 if (buffer_bytes > 0)
743 cf->cursor_direction = (buffer[buffer_bytes - 1] == (u8) '\b');
744}
745
746/** @brief Moves the terminal cursor one character to the left, with
747 * special handling when it reaches the left edge of the terminal window.
748 *
749 * Ordinarily we can simply send a '\b' to move the cursor left, however
750 * most terminals will not reverse-wrap to the end of the previous line
751 * if the cursor is in the left-most column. To counter this we must
752 * check the cursor position + prompt length modulo terminal width and
753 * if available use some other means, such as ANSI terminal escape
754 * sequences, to move the cursor.
755 *
756 * @param cf Unix CLI session of the desired stream to write to.
757 * @param uf The Unix file structure of the desired stream to write to.
758 */
759static void
760unix_vlib_cli_output_cursor_left (unix_cli_file_t * cf, clib_file_t * uf)
761{
762 unix_cli_main_t *cm = &unix_cli_main;
763 static u8 *ansi = 0; /* assumes no reentry */
764 u32 position;
765
766 if (!cf->is_interactive || !cf->ansi_capable || !cf->width)
767 {
768 /* No special handling for dumb terminals */
769 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
770 return;
771 }
772
773 position = ((u32) vec_len (cm->cli_prompt) + cf->cursor) % cf->width;
774
775 if (position != 0)
776 {
777 /* No special handling required if we're not at the left edge */
778 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
779 return;
780 }
781
782 if (!cf->cursor_direction)
783 {
784 /* Special handling for when we are at the left edge but
785 * the cursor was going left-to-right, but in this situation
786 * xterm-like terminals actually hide the cursor off the right
787 * edge. A \b here seems to jump one char too many, so let's
788 * force the cursor onto the next line instead.
789 */
790 if (cf->cursor < vec_len (cf->current_command))
791 unix_vlib_cli_output_cooked (cf, uf, &cf->current_command[cf->cursor],
792 1);
793 else
794 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
795 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
796 }
797
798 /* Relocate the cursor at the right hand edge one line above */
799 ansi = format (ansi, CSI "A" CSI "%dC", cf->width - 1);
800 unix_vlib_cli_output_cooked (cf, uf, ansi, vec_len (ansi));
801 vec_reset_length (ansi); /* keep the vec around for next time */
802 cf->cursor_direction = 1; /* going backwards now */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400803}
804
Chris Luke8e5b0412016-07-26 13:06:10 -0400805/** @brief Output the CLI prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400806static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200807unix_cli_cli_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400808{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke7afda3a2016-04-25 13:49:22 -0400810
Chris Luke03add7f2017-09-20 23:31:24 -0400811 if (cf->is_interactive) /* Only interactive sessions get a prompt */
812 unix_vlib_cli_output_raw (cf, uf, cm->cli_prompt,
813 vec_len (cm->cli_prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400814}
815
Chris Luke8e5b0412016-07-26 13:06:10 -0400816/** @brief Output a pager prompt and show number of buffered lines */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400817static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200818unix_cli_pager_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400819{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400820 u8 *prompt;
Chris Luke270b6de2016-05-19 14:23:25 -0400821 u32 h;
822
823 h = cf->pager_start + (cf->height - 1);
824 if (h > vec_len (cf->pager_index))
825 h = vec_len (cf->pager_index);
Chris Luke7afda3a2016-04-25 13:49:22 -0400826
Dave Barach9b8ffd92016-07-08 08:13:45 -0400827 prompt = format (0, "\r%s-- more -- (%d-%d/%d)%s",
828 cf->ansi_capable ? ANSI_BOLD : "",
829 cf->pager_start + 1,
830 h,
831 vec_len (cf->pager_index),
832 cf->ansi_capable ? ANSI_RESET : "");
Chris Luke7afda3a2016-04-25 13:49:22 -0400833
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400835
Dave Barach9b8ffd92016-07-08 08:13:45 -0400836 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400837}
838
Chris Luke8e5b0412016-07-26 13:06:10 -0400839/** @brief Output a pager "skipping" message */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400840static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200841unix_cli_pager_message (unix_cli_file_t * cf, clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400842 char *message, char *postfix)
Chris Luke7afda3a2016-04-25 13:49:22 -0400843{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400844 u8 *prompt;
Chris Luke7afda3a2016-04-25 13:49:22 -0400845
Dave Barach9b8ffd92016-07-08 08:13:45 -0400846 prompt = format (0, "\r%s-- %s --%s%s",
847 cf->ansi_capable ? ANSI_BOLD : "",
848 message, cf->ansi_capable ? ANSI_RESET : "", postfix);
Chris Luke7afda3a2016-04-25 13:49:22 -0400849
Dave Barach9b8ffd92016-07-08 08:13:45 -0400850 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400851
Dave Barach9b8ffd92016-07-08 08:13:45 -0400852 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400853}
854
Chris Luke8e5b0412016-07-26 13:06:10 -0400855/** @brief Erase the printed pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400856static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200857unix_cli_pager_prompt_erase (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400858{
859 if (cf->ansi_capable)
860 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400861 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
862 unix_vlib_cli_output_cooked (cf, uf,
863 (u8 *) ANSI_CLEARLINE,
864 sizeof (ANSI_CLEARLINE) - 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400865 }
866 else
867 {
868 int i;
869
Dave Barach9b8ffd92016-07-08 08:13:45 -0400870 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
871 for (i = 0; i < cf->width - 1; i++)
872 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
873 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400874 }
875}
876
Chris Luke8e5b0412016-07-26 13:06:10 -0400877/** @brief Uses an ANSI escape sequence to move the cursor */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400878static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200879unix_cli_ansi_cursor (unix_cli_file_t * cf, clib_file_t * uf, u16 x, u16 y)
Chris Luke7afda3a2016-04-25 13:49:22 -0400880{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400881 u8 *str;
Chris Luke7afda3a2016-04-25 13:49:22 -0400882
Dave Barach9b8ffd92016-07-08 08:13:45 -0400883 str = format (0, "%s%d;%dH", CSI, y, x);
Chris Luke7afda3a2016-04-25 13:49:22 -0400884
Dave Barach9b8ffd92016-07-08 08:13:45 -0400885 unix_vlib_cli_output_cooked (cf, uf, str, vec_len (str));
Chris Luke7afda3a2016-04-25 13:49:22 -0400886
Dave Barach9b8ffd92016-07-08 08:13:45 -0400887 vec_free (str);
Chris Luke7afda3a2016-04-25 13:49:22 -0400888}
889
Chris Luke862623d2016-05-14 10:13:34 -0400890/** Redraw the currently displayed page of text.
891 * @param cf CLI session to redraw the pager buffer of.
892 * @param uf Unix file of the CLI session.
893 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400894static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200895unix_cli_pager_redraw (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke862623d2016-05-14 10:13:34 -0400896{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400897 unix_cli_pager_index_t *pi = NULL;
898 u8 *line = NULL;
Chris Luke862623d2016-05-14 10:13:34 -0400899 word i;
900
901 /* No active pager? Do nothing. */
902 if (!vec_len (cf->pager_index))
903 return;
904
905 if (cf->ansi_capable)
906 {
907 /* If we have ANSI, send the clear screen sequence */
908 unix_vlib_cli_output_cooked (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400909 (u8 *) ANSI_CLEAR,
910 sizeof (ANSI_CLEAR) - 1);
Chris Luke862623d2016-05-14 10:13:34 -0400911 }
912 else
913 {
914 /* Otherwise make sure we're on a blank line */
915 unix_cli_pager_prompt_erase (cf, uf);
916 }
917
918 /* (Re-)send the current page of content */
919 for (i = 0; i < cf->height - 1 &&
Dave Barach9b8ffd92016-07-08 08:13:45 -0400920 i + cf->pager_start < vec_len (cf->pager_index); i++)
Chris Luke862623d2016-05-14 10:13:34 -0400921 {
922 pi = &cf->pager_index[cf->pager_start + i];
923 line = cf->pager_vector[pi->line] + pi->offset;
924
925 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
926 }
927 /* if the last line didn't end in newline, add a newline */
928 if (pi && line[pi->length - 1] != '\n')
Dave Barach9b8ffd92016-07-08 08:13:45 -0400929 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke862623d2016-05-14 10:13:34 -0400930
931 unix_cli_pager_prompt (cf, uf);
932}
933
934/** @brief Process and add a line to the pager index.
935 * In normal operation this function will take the given character string
936 * found in @c line and with length @c len_or_index and iterates the over the
937 * contents, adding each line of text discovered within it to the
938 * pager index. Lines are identified by newlines ("<code>\\n</code>") and by
939 * strings longer than the width of the terminal.
940 *
941 * If instead @c line is @c NULL then @c len_or_index is taken to mean the
942 * index of an existing line in the pager buffer; this simply means that the
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700943 * input line does not need to be cloned since we already have it. This is
Chris Luke862623d2016-05-14 10:13:34 -0400944 * typical if we are reindexing the pager buffer.
945 *
946 * @param cf The CLI session whose pager we are adding to.
947 * @param line The string of text to be indexed into the pager buffer.
948 * If @c line is @c NULL then the mode of operation
949 * changes slightly; see the description above.
950 * @param len_or_index If @c line is a pointer to a string then this parameter
951 * indicates the length of that string; Otherwise this
952 * value provides the index in the pager buffer of an
953 * existing string to be indexed.
954 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400955static void
956unix_cli_pager_add_line (unix_cli_file_t * cf, u8 * line, word len_or_index)
Chris Luke862623d2016-05-14 10:13:34 -0400957{
Neale Ranns9c2c2432017-12-05 13:34:36 -0800958 u8 *p = NULL;
Chris Luke862623d2016-05-14 10:13:34 -0400959 word i, j, k;
960 word line_index, len;
961 u32 width = cf->width;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400962 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -0400963
964 if (line == NULL)
965 {
966 /* Use a line already in the pager buffer */
967 line_index = len_or_index;
Neale Ranns9c2c2432017-12-05 13:34:36 -0800968 if (cf->pager_vector != NULL)
969 p = cf->pager_vector[line_index];
Chris Luke862623d2016-05-14 10:13:34 -0400970 len = vec_len (p);
971 }
972 else
973 {
974 len = len_or_index;
975 /* Add a copy of the raw string to the pager buffer */
976 p = vec_new (u8, len);
977 clib_memcpy (p, line, len);
978
979 /* store in pager buffer */
980 line_index = vec_len (cf->pager_vector);
981 vec_add1 (cf->pager_vector, p);
982 }
983
984 i = 0;
985 while (i < len)
986 {
987 /* Find the next line, or run to terminal width, or run to EOL */
988 int l = len - i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400989 j = unix_vlib_findchr ((u8) '\n', p, l < width ? l : width);
Chris Luke862623d2016-05-14 10:13:34 -0400990
Dave Barach9b8ffd92016-07-08 08:13:45 -0400991 if (j < l && p[j] == '\n') /* incl \n */
992 j++;
Chris Luke862623d2016-05-14 10:13:34 -0400993
994 /* Add the line to the index */
995 k = vec_len (cf->pager_index);
996 vec_validate (cf->pager_index, k);
997 pi = &cf->pager_index[k];
998
999 pi->line = line_index;
1000 pi->offset = i;
1001 pi->length = j;
1002
1003 i += j;
1004 p += j;
1005 }
1006}
1007
1008/** @brief Reindex entire pager buffer.
1009 * Resets the current pager index and then re-adds the lines in the pager
1010 * buffer to the index.
1011 *
1012 * Additionally this function attempts to retain the current page start
1013 * line offset by searching for the same top-of-screen line in the new index.
1014 *
1015 * @param cf The CLI session whose pager buffer should be reindexed.
1016 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001017static void
1018unix_cli_pager_reindex (unix_cli_file_t * cf)
Chris Luke862623d2016-05-14 10:13:34 -04001019{
1020 word i, old_line, old_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001021 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -04001022
1023 /* If there is nothing in the pager buffer then make sure the index
1024 * is empty and move on.
1025 */
1026 if (cf->pager_vector == 0)
1027 {
1028 vec_reset_length (cf->pager_index);
1029 return;
1030 }
1031
1032 /* Retain a pointer to the current page start line so we can
1033 * find it later
1034 */
1035 pi = &cf->pager_index[cf->pager_start];
1036 old_line = pi->line;
1037 old_offset = pi->offset;
1038
1039 /* Re-add the buffered lines to the index */
1040 vec_reset_length (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001041 vec_foreach_index (i, cf->pager_vector)
1042 {
1043 unix_cli_pager_add_line (cf, NULL, i);
1044 }
Chris Luke862623d2016-05-14 10:13:34 -04001045
1046 /* Attempt to re-locate the previously stored page start line */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001047 vec_foreach_index (i, cf->pager_index)
1048 {
1049 pi = &cf->pager_index[i];
Chris Luke862623d2016-05-14 10:13:34 -04001050
Dave Barach9b8ffd92016-07-08 08:13:45 -04001051 if (pi->line == old_line &&
1052 (pi->offset <= old_offset || pi->offset + pi->length > old_offset))
1053 {
1054 /* Found it! */
1055 cf->pager_start = i;
1056 break;
1057 }
1058 }
Chris Luke862623d2016-05-14 10:13:34 -04001059
1060 /* In case the start line was not found (rare), ensure the pager start
1061 * index is within bounds
1062 */
1063 if (cf->pager_start >= vec_len (cf->pager_index))
1064 {
Chris Luke270b6de2016-05-19 14:23:25 -04001065 if (!cf->height || vec_len (cf->pager_index) < (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001066 cf->pager_start = 0;
Chris Luke270b6de2016-05-19 14:23:25 -04001067 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001068 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
Chris Luke862623d2016-05-14 10:13:34 -04001069 }
1070}
1071
1072/** VLIB CLI output function.
1073 *
1074 * If the terminal has a pager configured then this function takes care
1075 * of collating output into the pager buffer; ensuring only the first page
1076 * is displayed and any lines in excess of the first page are buffered.
1077 *
1078 * If the maximum number of index lines in the buffer is exceeded then the
1079 * pager is cancelled and the contents of the current buffer are sent to the
1080 * terminal.
1081 *
1082 * If there is no pager configured then the output is sent directly to the
1083 * terminal.
1084 *
1085 * @param cli_file_index Index of the CLI session where this output is
1086 * directed.
1087 * @param buffer String of printabe bytes to be output.
1088 * @param buffer_bytes The number of bytes in @c buffer to be output.
1089 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001090static void
1091unix_vlib_cli_output (uword cli_file_index, u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001092{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001093 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02001094 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001095 unix_cli_main_t *cm = &unix_cli_main;
1096 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02001097 clib_file_t *uf;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001098
Ed Warnickecb9cada2015-12-08 15:45:58 -07001099 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02001100 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001101
Chris Luke7afda3a2016-04-25 13:49:22 -04001102 if (cf->no_pager || um->cli_pager_buffer_limit == 0 || cf->height == 0)
1103 {
Chris Luke862623d2016-05-14 10:13:34 -04001104 unix_vlib_cli_output_cooked (cf, uf, buffer, buffer_bytes);
Chris Luke7afda3a2016-04-25 13:49:22 -04001105 }
1106 else
1107 {
Chris Luke862623d2016-05-14 10:13:34 -04001108 word row = vec_len (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001109 u8 *line;
1110 unix_cli_pager_index_t *pi;
Chris Luke7afda3a2016-04-25 13:49:22 -04001111
Chris Luke862623d2016-05-14 10:13:34 -04001112 /* Index and add the output lines to the pager buffer. */
1113 unix_cli_pager_add_line (cf, buffer, buffer_bytes);
1114
1115 /* Now iterate what was added to display the lines.
1116 * If we reach the bottom of the page, display a prompt.
1117 */
1118 while (row < vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001119 {
1120 if (row < cf->height - 1)
1121 {
1122 /* output this line */
1123 pi = &cf->pager_index[row];
1124 line = cf->pager_vector[pi->line] + pi->offset;
1125 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
Chris Luke862623d2016-05-14 10:13:34 -04001126
Dave Barach9b8ffd92016-07-08 08:13:45 -04001127 /* if the last line didn't end in newline, and we're at the
1128 * bottom of the page, add a newline */
1129 if (line[pi->length - 1] != '\n' && row == cf->height - 2)
1130 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1131 }
1132 else
1133 {
1134 /* Display the pager prompt every 10 lines */
1135 if (!(row % 10))
1136 unix_cli_pager_prompt (cf, uf);
1137 }
1138 row++;
1139 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001140
Chris Luke862623d2016-05-14 10:13:34 -04001141 /* Check if we went over the pager buffer limit */
1142 if (vec_len (cf->pager_index) > um->cli_pager_buffer_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001143 {
1144 /* Stop using the pager for the remainder of this CLI command */
1145 cf->no_pager = 2;
Chris Luke7afda3a2016-04-25 13:49:22 -04001146
Dave Barach9b8ffd92016-07-08 08:13:45 -04001147 /* If we likely printed the prompt, erase it */
1148 if (vec_len (cf->pager_index) > cf->height - 1)
1149 unix_cli_pager_prompt_erase (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04001150
Dave Barach9b8ffd92016-07-08 08:13:45 -04001151 /* Dump out the contents of the buffer */
1152 for (row = cf->pager_start + (cf->height - 1);
1153 row < vec_len (cf->pager_index); row++)
1154 {
1155 pi = &cf->pager_index[row];
1156 line = cf->pager_vector[pi->line] + pi->offset;
1157 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1158 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001159
Dave Barach9b8ffd92016-07-08 08:13:45 -04001160 unix_cli_pager_reset (cf);
1161 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001162 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001163}
1164
Chris Luke862623d2016-05-14 10:13:34 -04001165/** Identify whether a terminal type is ANSI capable.
1166 *
Chris Luke54ccf222016-07-25 16:38:11 -04001167 * Compares the string given in @c term with a list of terminal types known
Chris Luke862623d2016-05-14 10:13:34 -04001168 * to support ANSI escape sequences.
1169 *
1170 * This list contains, for example, @c xterm, @c screen and @c ansi.
1171 *
1172 * @param term A string with a terminal type in it.
Chris Luke54ccf222016-07-25 16:38:11 -04001173 * @param len The length of the string in @c term.
Chris Luke862623d2016-05-14 10:13:34 -04001174 *
1175 * @return @c 1 if the terminal type is recognized as supporting ANSI
1176 * terminal sequences; @c 0 otherwise.
1177 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001178static u8
Chris Luke03add7f2017-09-20 23:31:24 -04001179unix_cli_terminal_type_ansi (u8 * term, uword len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001180{
Chris Luke0aca5eb2016-04-25 13:48:54 -04001181 /* This may later be better done as a hash of some sort. */
1182#define _(a) do { \
1183 if (strncasecmp(a, (char *)term, (size_t)len) == 0) return 1; \
1184 } while(0)
1185
1186 _("xterm");
1187 _("xterm-color");
Dave Barach9b8ffd92016-07-08 08:13:45 -04001188 _("xterm-256color"); /* iTerm on Mac */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001189 _("screen");
Damjan Marion6e8ab162017-06-05 21:56:12 +02001190 _("screen-256color"); /* Screen and tmux */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 _("ansi"); /* Microsoft Telnet */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001192#undef _
1193
1194 return 0;
1195}
1196
Chris Luke03add7f2017-09-20 23:31:24 -04001197/** Identify whether a terminal type is non-interactive.
1198 *
1199 * Compares the string given in @c term with a list of terminal types known
1200 * to be non-interactive, as send by tools such as @c vppctl .
1201 *
1202 * This list contains, for example, @c vppctl.
1203 *
1204 * @param term A string with a terminal type in it.
1205 * @param len The length of the string in @c term.
1206 *
1207 * @return @c 1 if the terminal type is recognized as being non-interactive;
1208 * @c 0 otherwise.
1209 */
1210static u8
1211unix_cli_terminal_type_noninteractive (u8 * term, uword len)
1212{
1213 /* This may later be better done as a hash of some sort. */
1214#define _(a) do { \
1215 if (strncasecmp(a, (char *)term, (size_t)len) == 0) return 1; \
1216 } while(0)
1217
1218 _("vppctl");
1219#undef _
1220
1221 return 0;
1222}
1223
1224/** Set a session to be non-interactive. */
1225static void
1226unix_cli_set_session_noninteractive (unix_cli_file_t * cf)
1227{
1228 /* Non-interactive sessions don't get these */
1229 cf->is_interactive = 0;
1230 cf->no_pager = 1;
1231 cf->history_limit = 0;
1232 cf->has_history = 0;
1233 cf->line_mode = 1;
1234}
1235
Chris Luke8e5b0412016-07-26 13:06:10 -04001236/** @brief Emit initial welcome banner and prompt on a connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001237static void
1238unix_cli_file_welcome (unix_cli_main_t * cm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001239{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001240 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02001241 clib_file_main_t *fm = &file_main;
1242 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke572d8122016-04-25 13:49:07 -04001243 unix_cli_banner_t *banner;
1244 int i, len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001245
Chris Luke03add7f2017-09-20 23:31:24 -04001246 /* Mark the session as started if we get here */
1247 cf->started = 1;
1248
1249 if (!(cf->is_interactive)) /* No banner for non-interactive sessions */
1250 return;
1251
Chris Luke0aca5eb2016-04-25 13:48:54 -04001252 /*
1253 * Put the first bytes directly into the buffer so that further output is
1254 * queued until everything is ready. (oterwise initial prompt can appear
1255 * mid way through VPP initialization)
1256 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 unix_cli_add_pending_output (uf, cf, (u8 *) "\r", 1);
Chris Luke572d8122016-04-25 13:49:07 -04001258
Damjan Marion06d82262020-10-21 12:43:40 +02001259 if (!um->cli_no_banner && (um->flags & UNIX_FLAG_NOBANNER) == 0)
Chris Luke572d8122016-04-25 13:49:07 -04001260 {
Damjan Marion06d82262020-10-21 12:43:40 +02001261 if (cf->ansi_capable && (um->flags & UNIX_FLAG_NOCOLOR) == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001262 {
1263 banner = unix_cli_banner_color;
1264 len = ARRAY_LEN (unix_cli_banner_color);
1265 }
Chris Luke572d8122016-04-25 13:49:07 -04001266 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001267 {
1268 banner = unix_cli_banner;
1269 len = ARRAY_LEN (unix_cli_banner);
1270 }
Chris Luke572d8122016-04-25 13:49:07 -04001271
1272 for (i = 0; i < len; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001273 {
1274 unix_vlib_cli_output_cooked (cf, uf,
1275 banner[i].line, banner[i].length);
1276 }
1277 }
Chris Luke572d8122016-04-25 13:49:07 -04001278
1279 /* Prompt. */
Chris Luke7afda3a2016-04-25 13:49:22 -04001280 unix_cli_cli_prompt (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001281
Chris Luke0aca5eb2016-04-25 13:48:54 -04001282}
1283
Chris Luke6a3a4f72019-07-09 23:33:30 -04001284/**
1285 * @brief A failsafe manager that ensures CLI sessions issue an initial
1286 * prompt if TELNET negotiation fails.
1287 */
1288static uword
1289unix_cli_new_session_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1290 vlib_frame_t * f)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001291{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001292 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke6a3a4f72019-07-09 23:33:30 -04001293 uword event_type, *event_data = 0;
1294 f64 wait = 10.0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001295
Chris Luke6a3a4f72019-07-09 23:33:30 -04001296 while (1)
1297 {
1298 if (vec_len (cm->new_sessions) > 0)
1299 wait = vlib_process_wait_for_event_or_clock (vm, wait);
1300 else
1301 vlib_process_wait_for_event (vm);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001302
Chris Luke6a3a4f72019-07-09 23:33:30 -04001303 event_type = vlib_process_get_events (vm, &event_data);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001304
Chris Luke6a3a4f72019-07-09 23:33:30 -04001305 switch (event_type)
1306 {
1307 case ~0: /* no events => timeout */
1308 break;
1309
1310 case UNIX_CLI_NEW_SESSION_EVENT_ADD:
1311 {
1312 /* Add an identifier to the new session list */
1313 unix_cli_new_session_t ns;
1314
Vladislav Grishenko49ebbf72021-12-29 14:30:32 +05001315 /* Check the connection didn't close already */
1316 if (pool_is_free_index (cm->cli_file_pool, event_data[0]))
1317 break;
1318
Chris Luke6a3a4f72019-07-09 23:33:30 -04001319 ns.cf_index = event_data[0];
1320 ns.deadline = vlib_time_now (vm) + 1.0;
1321
1322 vec_add1 (cm->new_sessions, ns);
1323
1324 if (wait > 0.1)
1325 wait = 0.1; /* force a re-evaluation soon, but not too soon */
1326 }
1327 break;
1328
1329 default:
1330 clib_warning ("BUG: unknown event type 0x%wx", event_type);
1331 break;
1332 }
1333
1334 vec_reset_length (event_data);
1335
1336 if (vlib_process_suspend_time_is_zero (wait))
1337 {
1338 /* Scan the list looking for expired deadlines.
1339 * Emit needed prompts and remove from the list.
1340 * While scanning, look for the nearest new deadline
1341 * for the next iteration.
1342 * Since the list is ordered with newest sessions first
1343 * we can make assumptions about expired sessions being
1344 * contiguous at the beginning and the next deadline is the
1345 * next entry on the list, if any.
1346 */
1347 f64 now = vlib_time_now (vm);
1348 unix_cli_new_session_t *nsp;
1349 word index = 0;
1350
1351 wait = INFINITY;
1352
1353 vec_foreach (nsp, cm->new_sessions)
1354 {
1355 if (vlib_process_suspend_time_is_zero (nsp->deadline - now))
1356 {
1357 /* Deadline reached */
1358 unix_cli_file_t *cf;
1359
1360 /* Mark the highwater */
1361 index++;
1362
1363 /* Check the connection didn't close already */
1364 if (pool_is_free_index (cm->cli_file_pool, nsp->cf_index))
1365 continue;
1366
1367 cf = pool_elt_at_index (cm->cli_file_pool, nsp->cf_index);
1368
1369 if (!cf->started)
1370 unix_cli_file_welcome (cm, cf);
1371 }
1372 else
1373 {
1374 wait = nsp->deadline - now;
1375 break;
1376 }
1377 }
1378
1379 if (index)
1380 {
1381 /* We have sessions to remove */
1382 vec_delete (cm->new_sessions, index, 0);
1383 }
1384 }
1385 }
1386
1387 return 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001388}
1389
Chris Luke6a3a4f72019-07-09 23:33:30 -04001390
Chris Luke8e5b0412016-07-26 13:06:10 -04001391/** @brief A mostly no-op Telnet state machine.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001392 * Process Telnet command bytes in a way that ensures we're mostly
1393 * transparent to the Telnet protocol. That is, it's mostly a no-op.
1394 *
1395 * @return -1 if we need more bytes, otherwise a positive integer number of
1396 * bytes to consume from the input_vector, not including the initial
1397 * IAC byte.
1398 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001399static i32
1400unix_cli_process_telnet (unix_main_t * um,
1401 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001402 clib_file_t * uf, u8 * input_vector, uword len)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001403{
1404 /* Input_vector starts at IAC byte.
1405 * See if we have a complete message; if not, return -1 so we wait for more.
1406 * if we have a complete message, consume those bytes from the vector.
1407 */
1408 i32 consume = 0;
1409
1410 if (len == 1)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001412
1413 switch (input_vector[1])
Ed Warnickecb9cada2015-12-08 15:45:58 -07001414 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001415 case IAC:
1416 /* two IAC's in a row means to pass through 0xff.
1417 * since that makes no sense here, just consume it.
1418 */
1419 consume = 1;
1420 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001421
Dave Barach9b8ffd92016-07-08 08:13:45 -04001422 case WILL:
1423 case WONT:
1424 case DO:
1425 case DONT:
1426 /* Expect 3 bytes */
Chris Lukea9cf6af2018-09-05 21:00:52 -04001427 if (len < 3)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001428 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001429
Dave Barach9b8ffd92016-07-08 08:13:45 -04001430 consume = 2;
1431 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001432
Dave Barach9b8ffd92016-07-08 08:13:45 -04001433 case SB:
1434 {
1435 /* Sub option - search ahead for IAC SE to end it */
1436 i32 i;
1437 for (i = 3; i < len && i < UNIX_CLI_MAX_DEPTH_TELNET; i++)
1438 {
1439 if (input_vector[i - 1] == IAC && input_vector[i] == SE)
1440 {
1441 /* We have a complete message; see if we care about it */
1442 switch (input_vector[2])
1443 {
1444 case TELOPT_TTYPE:
1445 if (input_vector[3] != 0)
1446 break;
Chris Luke03add7f2017-09-20 23:31:24 -04001447 {
1448 /* See if the the terminal type is recognized */
1449 u8 *term = input_vector + 4;
1450 uword len = i - 5;
1451
1452 /* See if the terminal type is ANSI capable */
1453 cf->ansi_capable =
1454 unix_cli_terminal_type_ansi (term, len);
1455
1456 /* See if the terminal type indicates non-interactive */
1457 if (unix_cli_terminal_type_noninteractive (term, len))
1458 unix_cli_set_session_noninteractive (cf);
1459 }
1460
Dave Barach9b8ffd92016-07-08 08:13:45 -04001461 /* If session not started, we can release the pause */
1462 if (!cf->started)
1463 /* Send the welcome banner and initial prompt */
1464 unix_cli_file_welcome (&unix_cli_main, cf);
1465 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001466
Dave Barach9b8ffd92016-07-08 08:13:45 -04001467 case TELOPT_NAWS:
1468 /* Window size */
1469 if (i != 8) /* check message is correct size */
1470 break;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001471
Dave Barach9b8ffd92016-07-08 08:13:45 -04001472 cf->width =
1473 clib_net_to_host_u16 (*((u16 *) (input_vector + 3)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001474 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
1475 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
Chris Luke2d8bf302017-11-12 22:26:37 -05001476 if (cf->width == 0)
1477 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001478
Dave Barach9b8ffd92016-07-08 08:13:45 -04001479 cf->height =
1480 clib_net_to_host_u16 (*((u16 *) (input_vector + 5)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001481 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
1482 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
Chris Luke2d8bf302017-11-12 22:26:37 -05001483 if (cf->height == 0)
1484 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001485
Dave Barach9b8ffd92016-07-08 08:13:45 -04001486 /* reindex pager buffer */
1487 unix_cli_pager_reindex (cf);
1488 /* redraw page */
1489 unix_cli_pager_redraw (cf, uf);
1490 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04001491
Dave Barach9b8ffd92016-07-08 08:13:45 -04001492 default:
1493 break;
1494 }
1495 /* Consume it all */
1496 consume = i;
1497 break;
1498 }
1499 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001500
Dave Barach9b8ffd92016-07-08 08:13:45 -04001501 if (i == UNIX_CLI_MAX_DEPTH_TELNET)
1502 consume = 1; /* hit max search depth, advance one byte */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001503
Dave Barach9b8ffd92016-07-08 08:13:45 -04001504 if (consume == 0)
1505 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001506
Dave Barach9b8ffd92016-07-08 08:13:45 -04001507 break;
1508 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001509
Dave Barach9b8ffd92016-07-08 08:13:45 -04001510 case GA:
1511 case EL:
1512 case EC:
1513 case AO:
1514 case IP:
1515 case BREAK:
1516 case DM:
1517 case NOP:
1518 case SE:
1519 case EOR:
1520 case ABORT:
1521 case SUSP:
1522 case xEOF:
1523 /* Simple one-byte messages */
1524 consume = 1;
1525 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001526
Dave Barach9b8ffd92016-07-08 08:13:45 -04001527 case AYT:
1528 /* Are You There - trigger a visible response */
1529 consume = 1;
1530 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "fd.io VPP\n", 10);
1531 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001532
Dave Barach9b8ffd92016-07-08 08:13:45 -04001533 default:
1534 /* Unknown command! Eat the IAC byte */
1535 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001536 }
1537
Dave Barach9b8ffd92016-07-08 08:13:45 -04001538 return consume;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001539}
1540
Chris Luke8e5b0412016-07-26 13:06:10 -04001541/** @brief Process actionable input.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001542 * Based on the \c action process the input; this typically involves
1543 * searching the command history or editing the current command line.
1544 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001545static int
1546unix_cli_line_process_one (unix_cli_main_t * cm,
1547 unix_main_t * um,
1548 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001549 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001550 u8 input, unix_cli_parse_action_t action)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001551{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001552 u8 *prev;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001553 u8 *save = 0;
1554 u8 **possible_commands;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001555 int j, delta;
1556
1557 switch (action)
1558 {
1559 case UNIX_CLI_PARSE_ACTION_NOACTION:
1560 break;
1561
Chris Luke0aca5eb2016-04-25 13:48:54 -04001562 case UNIX_CLI_PARSE_ACTION_REVSEARCH:
1563 case UNIX_CLI_PARSE_ACTION_FWDSEARCH:
Chris Luke7afda3a2016-04-25 13:49:22 -04001564 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001565 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001566 if (cf->search_mode == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001567 {
1568 /* Erase the current command (if any) */
Chris Lukefc379d22018-06-05 23:50:19 -04001569 for (; cf->cursor > 0; cf->cursor--)
1570 {
1571 unix_vlib_cli_output_cursor_left (cf, uf);
1572 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1573 unix_vlib_cli_output_cursor_left (cf, uf);
1574 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001575
Dave Barach9b8ffd92016-07-08 08:13:45 -04001576 vec_reset_length (cf->search_key);
1577 vec_reset_length (cf->current_command);
Chris Lukefc379d22018-06-05 23:50:19 -04001578
Dave Barach9b8ffd92016-07-08 08:13:45 -04001579 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1580 cf->search_mode = -1;
1581 else
1582 cf->search_mode = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001583 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001584 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001585 {
1586 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1587 cf->search_mode = -1;
1588 else
1589 cf->search_mode = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001590
Dave Barach9b8ffd92016-07-08 08:13:45 -04001591 cf->excursion += cf->search_mode;
1592 goto search_again;
1593 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001594 break;
1595
1596 case UNIX_CLI_PARSE_ACTION_ERASELINELEFT:
1597 /* Erase the command from the cursor to the start */
1598
Chris Lukefc379d22018-06-05 23:50:19 -04001599 j = cf->cursor;
1600 /* Shimmy backwards to the new end of line position */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001601 delta = vec_len (cf->current_command) - cf->cursor;
Chris Lukefc379d22018-06-05 23:50:19 -04001602 for (; cf->cursor > delta; cf->cursor--)
1603 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001604 /* Zap from here to the end of what is currently displayed */
Chris Lukefc379d22018-06-05 23:50:19 -04001605 for (; cf->cursor < vec_len (cf->current_command); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001606 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001607 /* Get back to the start of the line */
Chris Lukefc379d22018-06-05 23:50:19 -04001608 for (; cf->cursor > 0; cf->cursor--)
1609 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001610
Chris Lukefc379d22018-06-05 23:50:19 -04001611 /* Delete the desired text from the command */
1612 memmove (cf->current_command, cf->current_command + j, delta);
Damjan Marion8bea5892022-04-04 22:40:45 +02001613 vec_set_len (cf->current_command, delta);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001614
1615 /* Print the new contents */
Chris Lukefc379d22018-06-05 23:50:19 -04001616 unix_vlib_cli_output_cooked (cf, uf, cf->current_command, delta);
1617 cf->cursor = delta; /* for backspace tracking */
1618
Chris Luke0aca5eb2016-04-25 13:48:54 -04001619 /* Shimmy back to the start */
Chris Lukefc379d22018-06-05 23:50:19 -04001620 for (; cf->cursor > 0; cf->cursor--)
1621 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001622
1623 cf->search_mode = 0;
1624 break;
1625
1626 case UNIX_CLI_PARSE_ACTION_ERASELINERIGHT:
1627 /* Erase the command from the cursor to the end */
1628
Chris Lukefc379d22018-06-05 23:50:19 -04001629 j = cf->cursor;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001630 /* Zap from cursor to end of what is currently displayed */
Chris Lukefc379d22018-06-05 23:50:19 -04001631 for (; cf->cursor < (vec_len (cf->current_command)); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001632 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001633 /* Get back to where we were */
Chris Lukefc379d22018-06-05 23:50:19 -04001634 for (; cf->cursor > j; cf->cursor--)
1635 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001636
1637 /* Truncate the line at the cursor */
Damjan Marion8bea5892022-04-04 22:40:45 +02001638 vec_set_len (cf->current_command, cf->cursor);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001639
1640 cf->search_mode = 0;
1641 break;
1642
Hiroki Shirokura67e4df12019-08-16 11:30:34 +00001643 case UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT:
1644 /* calculate num of caracter to be erased */
1645 delta = 0;
1646 while (cf->cursor > delta
1647 && cf->current_command[cf->cursor - delta - 1] == ' ')
1648 delta++;
1649 while (cf->cursor > delta
1650 && cf->current_command[cf->cursor - delta - 1] != ' ')
1651 delta++;
1652
1653 if (vec_len (cf->current_command))
1654 {
1655 if (cf->cursor > 0)
1656 {
1657 /* move cursor left delta times */
1658 for (j = delta; j > 0; j--, cf->cursor--)
1659 unix_vlib_cli_output_cursor_left (cf, uf);
1660 save = cf->current_command + cf->cursor;
1661
1662 /* redraw remainder of line */
1663 memmove (cf->current_command + cf->cursor,
1664 cf->current_command + cf->cursor + delta,
1665 _vec_len (cf->current_command) - cf->cursor - delta);
1666 unix_vlib_cli_output_cooked (cf, uf,
1667 cf->current_command + cf->cursor,
1668 _vec_len (cf->current_command) -
1669 cf->cursor);
1670 cf->cursor += _vec_len (cf->current_command) - cf->cursor;
1671
1672 /* print delta amount of blank spaces,
1673 * then finally fix the cursor position */
1674 for (j = delta; j > 0; j--, cf->cursor--)
1675 unix_vlib_cli_output_cursor_left (cf, uf);
1676 for (j = delta; j > 0; j--, cf->cursor++)
1677 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1678 for (; (cf->current_command + cf->cursor) > save; cf->cursor--)
1679 unix_vlib_cli_output_cursor_left (cf, uf);
Damjan Marion8bea5892022-04-04 22:40:45 +02001680 vec_dec_len (cf->current_command, delta);
Hiroki Shirokura67e4df12019-08-16 11:30:34 +00001681 }
1682 }
1683 cf->search_mode = 0;
1684 cf->excursion = 0;
1685 vec_reset_length (cf->search_key);
1686 break;
1687
Chris Luke0aca5eb2016-04-25 13:48:54 -04001688 case UNIX_CLI_PARSE_ACTION_LEFT:
1689 if (cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001690 {
Chris Lukefc379d22018-06-05 23:50:19 -04001691 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001692 cf->cursor--;
1693 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001694
1695 cf->search_mode = 0;
1696 break;
1697
1698 case UNIX_CLI_PARSE_ACTION_RIGHT:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001699 if (cf->cursor < vec_len (cf->current_command))
1700 {
1701 /* have to emit the character under the cursor */
1702 unix_vlib_cli_output_cooked (cf, uf,
1703 cf->current_command + cf->cursor, 1);
1704 cf->cursor++;
1705 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001706
1707 cf->search_mode = 0;
1708 break;
1709
1710 case UNIX_CLI_PARSE_ACTION_UP:
1711 case UNIX_CLI_PARSE_ACTION_DOWN:
Chris Luke7afda3a2016-04-25 13:49:22 -04001712 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001713 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001714 cf->search_mode = 0;
1715 /* Erase the command */
Chris Lukefc379d22018-06-05 23:50:19 -04001716 for (; cf->cursor < vec_len (cf->current_command); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001717 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Lukefc379d22018-06-05 23:50:19 -04001718 for (; cf->cursor > 0; cf->cursor--)
1719 {
1720 unix_vlib_cli_output_cursor_left (cf, uf);
1721 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1722 unix_vlib_cli_output_cursor_left (cf, uf);
1723 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001724 vec_reset_length (cf->current_command);
1725 if (vec_len (cf->command_history))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001726 {
1727 if (action == UNIX_CLI_PARSE_ACTION_UP)
1728 delta = -1;
1729 else
1730 delta = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001731
Dave Barach9b8ffd92016-07-08 08:13:45 -04001732 cf->excursion += delta;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001733
Dave Barach9b8ffd92016-07-08 08:13:45 -04001734 if (cf->excursion == vec_len (cf->command_history))
1735 {
1736 /* down-arrowed to last entry - want a blank line */
Damjan Marion8bea5892022-04-04 22:40:45 +02001737 vec_set_len (cf->current_command, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001738 }
1739 else if (cf->excursion < 0)
1740 {
1741 /* up-arrowed over the start to the end, want a blank line */
1742 cf->excursion = vec_len (cf->command_history);
Damjan Marion8bea5892022-04-04 22:40:45 +02001743 vec_set_len (cf->current_command, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001744 }
1745 else
1746 {
1747 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
1748 /* down-arrowed past end - wrap to start */
1749 cf->excursion = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001750
Dave Barach9b8ffd92016-07-08 08:13:45 -04001751 /* Print the command at the current position */
1752 prev = cf->command_history[cf->excursion];
1753 vec_validate (cf->current_command, vec_len (prev) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001754
Dave Barach9b8ffd92016-07-08 08:13:45 -04001755 clib_memcpy (cf->current_command, prev, vec_len (prev));
Damjan Marion8bea5892022-04-04 22:40:45 +02001756 vec_set_len (cf->current_command, vec_len (prev));
Dave Barach9b8ffd92016-07-08 08:13:45 -04001757 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
1758 vec_len (cf->current_command));
1759 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001760 }
Yoann Desmouceaux561ae0a2017-09-20 10:08:28 +02001761 cf->cursor = vec_len (cf->current_command);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001762 break;
1763
1764 case UNIX_CLI_PARSE_ACTION_HOME:
1765 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001766 {
Chris Lukefc379d22018-06-05 23:50:19 -04001767 for (; cf->cursor > 0; cf->cursor--)
1768 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001769 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001770
Chris Luke0aca5eb2016-04-25 13:48:54 -04001771 cf->search_mode = 0;
1772 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001773
Chris Luke0aca5eb2016-04-25 13:48:54 -04001774 case UNIX_CLI_PARSE_ACTION_END:
1775 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001776 cf->cursor < vec_len (cf->current_command))
1777 {
1778 unix_vlib_cli_output_cooked (cf, uf,
1779 cf->current_command + cf->cursor,
1780 vec_len (cf->current_command) -
1781 cf->cursor);
1782 cf->cursor = vec_len (cf->current_command);
1783 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001784
1785 cf->search_mode = 0;
1786 break;
1787
1788 case UNIX_CLI_PARSE_ACTION_WORDLEFT:
1789 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001790 {
Chris Lukefc379d22018-06-05 23:50:19 -04001791 unix_vlib_cli_output_cursor_left (cf, uf);
1792 cf->cursor--;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001793
Chris Lukefc379d22018-06-05 23:50:19 -04001794 while (cf->cursor && isspace (cf->current_command[cf->cursor]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001795 {
Chris Lukefc379d22018-06-05 23:50:19 -04001796 unix_vlib_cli_output_cursor_left (cf, uf);
1797 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001798 }
Chris Lukefc379d22018-06-05 23:50:19 -04001799 while (cf->cursor && !isspace (cf->current_command[cf->cursor]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001800 {
Chris Lukefc379d22018-06-05 23:50:19 -04001801 if (isspace (cf->current_command[cf->cursor - 1]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001802 break;
Chris Lukefc379d22018-06-05 23:50:19 -04001803 unix_vlib_cli_output_cursor_left (cf, uf);
1804 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001805 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001806
Dave Barach9b8ffd92016-07-08 08:13:45 -04001807 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001808
1809 cf->search_mode = 0;
1810 break;
1811
1812 case UNIX_CLI_PARSE_ACTION_WORDRIGHT:
1813 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001814 cf->cursor < vec_len (cf->current_command))
1815 {
1816 int e = vec_len (cf->current_command);
1817 j = cf->cursor;
1818 while (j < e && !isspace (cf->current_command[j]))
1819 j++;
1820 while (j < e && isspace (cf->current_command[j]))
1821 j++;
1822 unix_vlib_cli_output_cooked (cf, uf,
1823 cf->current_command + cf->cursor,
1824 j - cf->cursor);
1825 cf->cursor = j;
1826 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001827
1828 cf->search_mode = 0;
1829 break;
1830
1831
1832 case UNIX_CLI_PARSE_ACTION_ERASE:
1833 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001834 {
1835 if (cf->cursor == vec_len (cf->current_command))
1836 {
Chris Lukefc379d22018-06-05 23:50:19 -04001837 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001838 cf->cursor--;
Chris Lukefc379d22018-06-05 23:50:19 -04001839 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1840 cf->cursor++;
1841 unix_vlib_cli_output_cursor_left (cf, uf);
1842 cf->cursor--;
Damjan Marion8bea5892022-04-04 22:40:45 +02001843 vec_dec_len (cf->current_command, 1);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001844 }
1845 else if (cf->cursor > 0)
1846 {
1847 /* shift everything at & to the right of the cursor left by 1 */
1848 j = vec_len (cf->current_command) - cf->cursor;
1849 memmove (cf->current_command + cf->cursor - 1,
1850 cf->current_command + cf->cursor, j);
Damjan Marion8bea5892022-04-04 22:40:45 +02001851 vec_dec_len (cf->current_command, 1);
Chris Lukefc379d22018-06-05 23:50:19 -04001852
Dave Barach9b8ffd92016-07-08 08:13:45 -04001853 /* redraw the rest of the line */
Chris Lukefc379d22018-06-05 23:50:19 -04001854 unix_vlib_cli_output_cursor_left (cf, uf);
1855 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001856 unix_vlib_cli_output_cooked (cf, uf,
1857 cf->current_command + cf->cursor,
1858 j);
Chris Lukefc379d22018-06-05 23:50:19 -04001859 cf->cursor += j;
1860 /* erase last char */
1861 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1862 cf->cursor++;
1863
Dave Barach9b8ffd92016-07-08 08:13:45 -04001864 /* and shift the terminal cursor back where it should be */
Chris Lukefc379d22018-06-05 23:50:19 -04001865 j += 2; /* account for old string length and offset position */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001866 while (--j)
Chris Lukefc379d22018-06-05 23:50:19 -04001867 {
1868 unix_vlib_cli_output_cursor_left (cf, uf);
1869 cf->cursor--;
1870 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001871 }
1872 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001873 cf->search_mode = 0;
1874 cf->excursion = 0;
1875 vec_reset_length (cf->search_key);
1876 break;
1877
1878 case UNIX_CLI_PARSE_ACTION_ERASERIGHT:
1879 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001880 {
1881 if (cf->cursor < vec_len (cf->current_command))
1882 {
1883 /* shift everything to the right of the cursor left by 1 */
1884 j = vec_len (cf->current_command) - cf->cursor - 1;
1885 memmove (cf->current_command + cf->cursor,
1886 cf->current_command + cf->cursor + 1, j);
Damjan Marion8bea5892022-04-04 22:40:45 +02001887 vec_dec_len (cf->current_command, 1);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001888 /* redraw the rest of the line */
1889 unix_vlib_cli_output_cooked (cf, uf,
1890 cf->current_command + cf->cursor,
1891 j);
Chris Lukefc379d22018-06-05 23:50:19 -04001892 cf->cursor += j;
1893 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1894 cf->cursor++;
1895 unix_vlib_cli_output_cursor_left (cf, uf);
1896 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001897 /* and shift the terminal cursor back where it should be */
1898 if (j)
1899 {
Chris Lukefc379d22018-06-05 23:50:19 -04001900 unix_vlib_cli_output_cursor_left (cf, uf);
1901 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001902 while (--j)
Chris Lukefc379d22018-06-05 23:50:19 -04001903 {
1904 unix_vlib_cli_output_cursor_left (cf, uf);
1905 cf->cursor--;
1906 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001907 }
1908 }
1909 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001910 else if (input == 'D' - '@')
Dave Barach9b8ffd92016-07-08 08:13:45 -04001911 {
1912 /* ^D with no command entered = quit */
1913 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "quit\n", 5);
1914 vlib_process_signal_event (um->vlib_main,
1915 vlib_current_process (um->vlib_main),
1916 UNIX_CLI_PROCESS_EVENT_QUIT,
1917 cf - cm->cli_file_pool);
1918 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001919 cf->search_mode = 0;
1920 cf->excursion = 0;
1921 vec_reset_length (cf->search_key);
1922 break;
1923
1924 case UNIX_CLI_PARSE_ACTION_CLEAR:
1925 /* If we're in ANSI mode, clear the screen.
1926 * Then redraw the prompt and any existing command input, then put
1927 * the cursor back where it was in that line.
1928 */
1929 if (cf->ansi_capable)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001930 unix_vlib_cli_output_cooked (cf, uf,
1931 (u8 *) ANSI_CLEAR,
1932 sizeof (ANSI_CLEAR) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001933 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001934 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001935
1936 unix_vlib_cli_output_raw (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001937 cm->cli_prompt, vec_len (cm->cli_prompt));
Chris Lukefc379d22018-06-05 23:50:19 -04001938 unix_vlib_cli_output_cooked (cf, uf,
1939 cf->current_command,
1940 vec_len (cf->current_command));
1941 j = cf->cursor;
1942 cf->cursor = vec_len (cf->current_command);
1943 for (; cf->cursor > j; cf->cursor--)
1944 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001945
1946 break;
1947
Chris Luke7afda3a2016-04-25 13:49:22 -04001948 case UNIX_CLI_PARSE_ACTION_TAB:
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001949 if (cf->cursor < vec_len (cf->current_command))
1950 {
1951 /* if we are in the middle of a line, complete only if
1952 * the cursor points to whitespace */
1953 if (isspace (cf->current_command[cf->cursor]))
1954 {
1955 /* save and clear any input that is after the cursor */
1956 vec_resize (save, vec_len (cf->current_command) - cf->cursor);
1957 clib_memcpy (save, cf->current_command + cf->cursor,
1958 vec_len (cf->current_command) - cf->cursor);
Damjan Marion8bea5892022-04-04 22:40:45 +02001959 vec_set_len (cf->current_command, cf->cursor);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001960 }
1961 else
1962 {
1963 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
1964 break;
1965 }
1966 }
1967 possible_commands =
1968 vlib_cli_get_possible_completions (cf->current_command);
1969 if (vec_len (possible_commands) == 1)
1970 {
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001971 u8 *completed = possible_commands[0];
Chris Lukefc379d22018-06-05 23:50:19 -04001972 j = cf->cursor;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001973
1974 /* find the last word of current_command */
1975 while (j >= 1 && !isspace (cf->current_command[j - 1]))
1976 {
Chris Lukefc379d22018-06-05 23:50:19 -04001977 unix_vlib_cli_output_cursor_left (cf, uf);
1978 cf->cursor--;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001979 j--;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001980 }
Damjan Marion8bea5892022-04-04 22:40:45 +02001981 vec_set_len (cf->current_command, j);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001982
1983 /* replace it with the newly expanded command */
1984 vec_append (cf->current_command, completed);
1985
1986 /* echo to the terminal */
Chris Lukefc379d22018-06-05 23:50:19 -04001987 unix_vlib_cli_output_cooked (cf, uf, completed,
1988 vec_len (completed));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001989
1990 /* add one trailing space if needed */
1991 if (vec_len (save) == 0)
1992 {
1993 vec_add1 (cf->current_command, ' ');
Chris Lukefc379d22018-06-05 23:50:19 -04001994 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001995 }
1996
1997 cf->cursor = vec_len (cf->current_command);
1998
1999 }
2000 else if (vec_len (possible_commands) >= 2)
2001 {
2002 u8 **possible_command;
2003 uword max_command_len = 0, min_command_len = ~0;
Chris Lukefc379d22018-06-05 23:50:19 -04002004 u32 i;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002005
2006 vec_foreach (possible_command, possible_commands)
2007 {
2008 if (vec_len (*possible_command) > max_command_len)
Chris Lukefc379d22018-06-05 23:50:19 -04002009 max_command_len = vec_len (*possible_command);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002010 if (vec_len (*possible_command) < min_command_len)
Chris Lukefc379d22018-06-05 23:50:19 -04002011 min_command_len = vec_len (*possible_command);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002012 }
2013
2014 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2015
2016 i = 0;
2017 vec_foreach (possible_command, possible_commands)
2018 {
2019 if (i + max_command_len >= cf->width)
2020 {
2021 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2022 i = 0;
2023 }
Chris Lukefc379d22018-06-05 23:50:19 -04002024 unix_vlib_cli_output_cooked (cf, uf, *possible_command,
2025 vec_len (*possible_command));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002026 for (j = vec_len (*possible_command); j < max_command_len + 2;
2027 j++)
2028 {
Chris Lukefc379d22018-06-05 23:50:19 -04002029 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002030 }
2031 i += max_command_len + 2;
2032 }
2033
2034 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2035
2036 /* rewrite prompt */
2037 unix_cli_cli_prompt (cf, uf);
Chris Lukefc379d22018-06-05 23:50:19 -04002038 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
2039 vec_len (cf->current_command));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002040
2041 /* count length of last word */
2042 j = cf->cursor;
2043 i = 0;
2044 while (j >= 1 && !isspace (cf->current_command[j - 1]))
2045 {
2046 j--;
2047 i++;
2048 }
2049
2050 /* determine smallest common command */
2051 for (; i < min_command_len; i++)
2052 {
2053 u8 common = '\0';
2054 int stop = 0;
Chris Lukefc379d22018-06-05 23:50:19 -04002055
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002056 vec_foreach (possible_command, possible_commands)
2057 {
2058 if (common == '\0')
2059 {
2060 common = (*possible_command)[i];
2061 }
2062 else if (common != (*possible_command)[i])
2063 {
2064 stop = 1;
2065 break;
2066 }
2067 }
Chris Lukefc379d22018-06-05 23:50:19 -04002068
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002069 if (!stop)
2070 {
2071 vec_add1 (cf->current_command, common);
2072 cf->cursor++;
Chris Lukefc379d22018-06-05 23:50:19 -04002073 unix_vlib_cli_output_cooked (cf, uf, (u8 *) & common, 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002074 }
2075 else
2076 {
2077 break;
2078 }
2079 }
2080 }
2081 else
2082 {
2083 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
2084 }
2085
2086 if (vec_len (save) > 0)
2087 {
2088 /* restore remaining input if tab was hit in the middle of a line */
Chris Lukefc379d22018-06-05 23:50:19 -04002089 unix_vlib_cli_output_cooked (cf, uf, save, vec_len (save));
2090 cf->cursor += vec_len (save);
2091 for (j = 0; j < vec_len (save); j++, cf->cursor--)
2092 unix_vlib_cli_output_cursor_left (cf, uf);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002093 vec_append (cf->current_command, save);
2094 vec_free (save);
2095 }
2096 vec_free (possible_commands);
2097
2098 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04002099 case UNIX_CLI_PARSE_ACTION_YANK:
2100 /* TODO */
2101 break;
2102
2103
2104 case UNIX_CLI_PARSE_ACTION_PAGER_QUIT:
2105 pager_quit:
2106 unix_cli_pager_prompt_erase (cf, uf);
2107 unix_cli_pager_reset (cf);
2108 unix_cli_cli_prompt (cf, uf);
2109 break;
2110
2111 case UNIX_CLI_PARSE_ACTION_PAGER_NEXT:
2112 case UNIX_CLI_PARSE_ACTION_PAGER_PGDN:
2113 /* show next page of the buffer */
Chris Luke70a745d2018-06-10 10:47:50 -04002114 if (cf->height + cf->pager_start <= vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002115 {
2116 u8 *line = NULL;
2117 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002118
Dave Barach9b8ffd92016-07-08 08:13:45 -04002119 int m = cf->pager_start + (cf->height - 1);
2120 unix_cli_pager_prompt_erase (cf, uf);
2121 for (j = m;
2122 j < vec_len (cf->pager_index) && cf->pager_start < m;
2123 j++, cf->pager_start++)
2124 {
2125 pi = &cf->pager_index[j];
2126 line = cf->pager_vector[pi->line] + pi->offset;
2127 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2128 }
2129 /* if the last line didn't end in newline, add a newline */
2130 if (pi && line[pi->length - 1] != '\n')
2131 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2132 unix_cli_pager_prompt (cf, uf);
2133 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002134 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002135 {
2136 if (action == UNIX_CLI_PARSE_ACTION_PAGER_NEXT)
2137 /* no more in buffer, exit, but only if it was <space> */
2138 goto pager_quit;
2139 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002140 break;
2141
2142 case UNIX_CLI_PARSE_ACTION_PAGER_DN:
2143 case UNIX_CLI_PARSE_ACTION_PAGER_CRLF:
2144 /* display the next line of the buffer */
Chris Luke70a745d2018-06-10 10:47:50 -04002145 if (cf->height + cf->pager_start <= vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002146 {
2147 u8 *line;
2148 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -04002149
Dave Barach9b8ffd92016-07-08 08:13:45 -04002150 unix_cli_pager_prompt_erase (cf, uf);
2151 pi = &cf->pager_index[cf->pager_start + (cf->height - 1)];
2152 line = cf->pager_vector[pi->line] + pi->offset;
2153 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2154 cf->pager_start++;
2155 /* if the last line didn't end in newline, add a newline */
2156 if (line[pi->length - 1] != '\n')
2157 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2158 unix_cli_pager_prompt (cf, uf);
2159 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002160 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002161 {
2162 if (action == UNIX_CLI_PARSE_ACTION_PAGER_CRLF)
2163 /* no more in buffer, exit, but only if it was <enter> */
2164 goto pager_quit;
2165 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002166
2167 break;
2168
2169 case UNIX_CLI_PARSE_ACTION_PAGER_UP:
2170 /* scroll the page back one line */
2171 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002172 {
2173 u8 *line = NULL;
2174 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002175
Dave Barach9b8ffd92016-07-08 08:13:45 -04002176 cf->pager_start--;
2177 if (cf->ansi_capable)
2178 {
2179 pi = &cf->pager_index[cf->pager_start];
2180 line = cf->pager_vector[pi->line] + pi->offset;
2181 unix_cli_pager_prompt_erase (cf, uf);
2182 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SCROLLDN,
2183 sizeof (ANSI_SCROLLDN) - 1);
2184 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SAVECURSOR,
2185 sizeof (ANSI_SAVECURSOR) - 1);
2186 unix_cli_ansi_cursor (cf, uf, 1, 1);
2187 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_CLEARLINE,
2188 sizeof (ANSI_CLEARLINE) - 1);
2189 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2190 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_RESTCURSOR,
2191 sizeof (ANSI_RESTCURSOR) - 1);
2192 unix_cli_pager_prompt_erase (cf, uf);
2193 unix_cli_pager_prompt (cf, uf);
2194 }
2195 else
2196 {
2197 int m = cf->pager_start + (cf->height - 1);
2198 unix_cli_pager_prompt_erase (cf, uf);
2199 for (j = cf->pager_start;
2200 j < vec_len (cf->pager_index) && j < m; j++)
2201 {
2202 pi = &cf->pager_index[j];
2203 line = cf->pager_vector[pi->line] + pi->offset;
2204 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2205 }
2206 /* if the last line didn't end in newline, add a newline */
2207 if (pi && line[pi->length - 1] != '\n')
2208 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2209 unix_cli_pager_prompt (cf, uf);
2210 }
2211 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002212 break;
2213
2214 case UNIX_CLI_PARSE_ACTION_PAGER_TOP:
2215 /* back to the first page of the buffer */
2216 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002217 {
2218 u8 *line = NULL;
2219 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002220
Dave Barach9b8ffd92016-07-08 08:13:45 -04002221 cf->pager_start = 0;
2222 int m = cf->pager_start + (cf->height - 1);
2223 unix_cli_pager_prompt_erase (cf, uf);
2224 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
2225 j++)
2226 {
2227 pi = &cf->pager_index[j];
2228 line = cf->pager_vector[pi->line] + pi->offset;
2229 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2230 }
2231 /* if the last line didn't end in newline, add a newline */
2232 if (pi && line[pi->length - 1] != '\n')
2233 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2234 unix_cli_pager_prompt (cf, uf);
2235 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002236 break;
2237
2238 case UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM:
2239 /* skip to the last page of the buffer */
Chris Luke862623d2016-05-14 10:13:34 -04002240 if (cf->pager_start < vec_len (cf->pager_index) - (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002241 {
2242 u8 *line = NULL;
2243 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002244
Dave Barach9b8ffd92016-07-08 08:13:45 -04002245 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
2246 unix_cli_pager_prompt_erase (cf, uf);
2247 unix_cli_pager_message (cf, uf, "skipping", "\n");
2248 for (j = cf->pager_start; j < vec_len (cf->pager_index); j++)
2249 {
2250 pi = &cf->pager_index[j];
2251 line = cf->pager_vector[pi->line] + pi->offset;
2252 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2253 }
2254 /* if the last line didn't end in newline, add a newline */
2255 if (pi && line[pi->length - 1] != '\n')
2256 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2257 unix_cli_pager_prompt (cf, uf);
2258 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002259 break;
2260
2261 case UNIX_CLI_PARSE_ACTION_PAGER_PGUP:
2262 /* wander back one page in the buffer */
2263 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002264 {
2265 u8 *line = NULL;
2266 unix_cli_pager_index_t *pi = NULL;
2267 int m;
Chris Luke862623d2016-05-14 10:13:34 -04002268
Dave Barach9b8ffd92016-07-08 08:13:45 -04002269 if (cf->pager_start >= cf->height)
2270 cf->pager_start -= cf->height - 1;
2271 else
2272 cf->pager_start = 0;
2273 m = cf->pager_start + cf->height - 1;
2274 unix_cli_pager_prompt_erase (cf, uf);
2275 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
2276 j++)
2277 {
2278 pi = &cf->pager_index[j];
2279 line = cf->pager_vector[pi->line] + pi->offset;
2280 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2281 }
2282 /* if the last line didn't end in newline, add a newline */
2283 if (pi && line[pi->length - 1] != '\n')
2284 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2285 unix_cli_pager_prompt (cf, uf);
2286 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002287 break;
2288
Chris Luke862623d2016-05-14 10:13:34 -04002289 case UNIX_CLI_PARSE_ACTION_PAGER_REDRAW:
2290 /* Redraw the current pager screen */
2291 unix_cli_pager_redraw (cf, uf);
2292 break;
2293
Chris Luke7afda3a2016-04-25 13:49:22 -04002294 case UNIX_CLI_PARSE_ACTION_PAGER_SEARCH:
2295 /* search forwards in the buffer */
2296 break;
2297
2298
Chris Luke0aca5eb2016-04-25 13:48:54 -04002299 case UNIX_CLI_PARSE_ACTION_CRLF:
2300 crlf:
Chris Luke0aca5eb2016-04-25 13:48:54 -04002301 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2302
Chris Luke7afda3a2016-04-25 13:49:22 -04002303 if (cf->has_history && cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002304 {
2305 if (cf->command_history
2306 && vec_len (cf->command_history) >= cf->history_limit)
2307 {
2308 vec_free (cf->command_history[0]);
2309 vec_delete (cf->command_history, 1, 0);
2310 }
2311 /* Don't add blank lines to the cmd history */
2312 if (vec_len (cf->current_command))
2313 {
2314 /* Don't duplicate the previous command */
2315 j = vec_len (cf->command_history);
2316 if (j == 0 ||
2317 (vec_len (cf->current_command) !=
2318 vec_len (cf->command_history[j - 1])
2319 || memcmp (cf->current_command, cf->command_history[j - 1],
2320 vec_len (cf->current_command)) != 0))
2321 {
2322 /* copy the command to the history */
2323 u8 *c = 0;
2324 vec_append (c, cf->current_command);
2325 vec_add1 (cf->command_history, c);
2326 cf->command_number++;
2327 }
2328 }
2329 cf->excursion = vec_len (cf->command_history);
2330 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002331
Chris Luke0aca5eb2016-04-25 13:48:54 -04002332 cf->search_mode = 0;
2333 vec_reset_length (cf->search_key);
2334 cf->cursor = 0;
2335
2336 return 0;
2337
Chris Luke7afda3a2016-04-25 13:49:22 -04002338 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
2339 case UNIX_CLI_PARSE_ACTION_NOMATCH:
Chris Luke862623d2016-05-14 10:13:34 -04002340 if (vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002341 {
2342 /* no-op for now */
2343 }
Chris Lukefc379d22018-06-05 23:50:19 -04002344 else if (cf->has_history && cf->search_mode != 0 && isprint (input))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002345 {
2346 int k, limit, offset;
2347 u8 *item;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002348
Dave Barach9b8ffd92016-07-08 08:13:45 -04002349 vec_add1 (cf->search_key, input);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002350
Dave Barach9b8ffd92016-07-08 08:13:45 -04002351 search_again:
2352 for (j = 0; j < vec_len (cf->command_history); j++)
2353 {
2354 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
2355 cf->excursion = 0;
2356 else if (cf->excursion < 0)
2357 cf->excursion = vec_len (cf->command_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002358
Dave Barach9b8ffd92016-07-08 08:13:45 -04002359 item = cf->command_history[cf->excursion];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002360
Dave Barach9b8ffd92016-07-08 08:13:45 -04002361 limit = (vec_len (cf->search_key) > vec_len (item)) ?
2362 vec_len (item) : vec_len (cf->search_key);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002363
Dave Barach9b8ffd92016-07-08 08:13:45 -04002364 for (offset = 0; offset <= vec_len (item) - limit; offset++)
2365 {
2366 for (k = 0; k < limit; k++)
2367 {
2368 if (item[k + offset] != cf->search_key[k])
2369 goto next_offset;
2370 }
2371 goto found_at_offset;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002372
Dave Barach9b8ffd92016-07-08 08:13:45 -04002373 next_offset:
2374 ;
2375 }
2376 goto next;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002377
Dave Barach9b8ffd92016-07-08 08:13:45 -04002378 found_at_offset:
Chris Lukefc379d22018-06-05 23:50:19 -04002379 for (; cf->cursor > 0; cf->cursor--)
2380 {
2381 unix_vlib_cli_output_cursor_left (cf, uf);
2382 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
2383 unix_vlib_cli_output_cursor_left (cf, uf);
2384 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002385
Dave Barach9b8ffd92016-07-08 08:13:45 -04002386 vec_validate (cf->current_command, vec_len (item) - 1);
2387 clib_memcpy (cf->current_command, item, vec_len (item));
Damjan Marion8bea5892022-04-04 22:40:45 +02002388 vec_set_len (cf->current_command, vec_len (item));
Chris Luke93dcd1d2016-05-10 10:45:10 -04002389
Dave Barach9b8ffd92016-07-08 08:13:45 -04002390 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
2391 vec_len (cf->current_command));
2392 cf->cursor = vec_len (cf->current_command);
2393 goto found;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002394
Dave Barach9b8ffd92016-07-08 08:13:45 -04002395 next:
2396 cf->excursion += cf->search_mode;
2397 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002398
Dave Barach9b8ffd92016-07-08 08:13:45 -04002399 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\nNo match...", 12);
2400 vec_reset_length (cf->search_key);
2401 vec_reset_length (cf->current_command);
2402 cf->search_mode = 0;
2403 cf->cursor = 0;
2404 goto crlf;
2405 }
2406 else if (isprint (input)) /* skip any errant control codes */
2407 {
2408 if (cf->cursor == vec_len (cf->current_command))
2409 {
2410 /* Append to end */
2411 vec_add1 (cf->current_command, input);
2412 cf->cursor++;
Chris Luke7afda3a2016-04-25 13:49:22 -04002413
Dave Barach9b8ffd92016-07-08 08:13:45 -04002414 /* Echo the character back to the client */
Chris Lukefc379d22018-06-05 23:50:19 -04002415 unix_vlib_cli_output_cooked (cf, uf, &input, 1);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002416 }
2417 else
2418 {
2419 /* Insert at cursor: resize +1 byte, move everything over */
2420 j = vec_len (cf->current_command) - cf->cursor;
2421 vec_add1 (cf->current_command, (u8) 'A');
2422 memmove (cf->current_command + cf->cursor + 1,
2423 cf->current_command + cf->cursor, j);
2424 cf->current_command[cf->cursor] = input;
2425 /* Redraw the line */
2426 j++;
Chris Lukefc379d22018-06-05 23:50:19 -04002427 unix_vlib_cli_output_cooked (cf, uf,
2428 cf->current_command + cf->cursor,
2429 j);
2430 cf->cursor += j;
2431 j--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002432 /* Put terminal cursor back */
Chris Lukefc379d22018-06-05 23:50:19 -04002433 for (; j > 0; j--, cf->cursor--)
2434 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002435 }
2436 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002437 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002438 {
2439 /* no-op - not printable or otherwise not actionable */
2440 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002441
2442 found:
2443
2444 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04002445
2446 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2447 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002448 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04002449 return 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002450}
2451
Chris Luke8e5b0412016-07-26 13:06:10 -04002452/** @brief Process input bytes on a stream to provide line editing and
Chris Luke0aca5eb2016-04-25 13:48:54 -04002453 * command history in the CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002454static int
Damjan Marion56dd5432017-09-08 19:52:02 +02002455unix_cli_line_edit (unix_cli_main_t * cm, unix_main_t * um,
2456 clib_file_main_t * fm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04002457{
Damjan Marion56dd5432017-09-08 19:52:02 +02002458 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002459 int i;
2460
2461 for (i = 0; i < vec_len (cf->input_vector); i++)
2462 {
2463 unix_cli_parse_action_t action;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002464 i32 matched = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04002465 unix_cli_parse_actions_t *a;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002466
Chris Luke7afda3a2016-04-25 13:49:22 -04002467 /* If we're in the pager mode, search the pager actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002468 a =
2469 vec_len (cf->pager_index) ? unix_cli_parse_pager :
2470 unix_cli_parse_strings;
Chris Luke7afda3a2016-04-25 13:49:22 -04002471
Chris Luke93dcd1d2016-05-10 10:45:10 -04002472 /* See if the input buffer is some sort of control code */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002473 action = unix_cli_match_action (a, &cf->input_vector[i],
2474 vec_len (cf->input_vector) - i,
2475 &matched);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002476
2477 switch (action)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002478 {
2479 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
2480 if (i)
2481 {
2482 /* There was a partial match which means we need more bytes
2483 * than the input buffer currently has.
2484 * Since the bytes before here have been processed, shift
2485 * the remaining contents to the start of the input buffer.
2486 */
2487 vec_delete (cf->input_vector, i, 0);
2488 }
2489 return 1; /* wait for more */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002490
Dave Barach9b8ffd92016-07-08 08:13:45 -04002491 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2492 /* process telnet options */
2493 matched = unix_cli_process_telnet (um, cf, uf,
2494 cf->input_vector + i,
2495 vec_len (cf->input_vector) - i);
2496 if (matched < 0)
2497 {
Chris Luke03add7f2017-09-20 23:31:24 -04002498 /* There was a partial match which means we need more bytes
2499 * than the input buffer currently has.
2500 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002501 if (i)
2502 {
Chris Luke03add7f2017-09-20 23:31:24 -04002503 /*
Dave Barach9b8ffd92016-07-08 08:13:45 -04002504 * Since the bytes before here have been processed, shift
2505 * the remaining contents to the start of the input buffer.
2506 */
2507 vec_delete (cf->input_vector, i, 0);
2508 }
2509 return 1; /* wait for more */
2510 }
2511 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002512
Dave Barach9b8ffd92016-07-08 08:13:45 -04002513 default:
Chris Luke03add7f2017-09-20 23:31:24 -04002514 /* If telnet option processing switched us to line mode, get us
2515 * out of here!
2516 */
2517 if (cf->line_mode)
2518 {
2519 vec_delete (cf->input_vector, i, 0);
Benoît Ganne433a4982020-10-01 18:20:23 +02002520 vec_free (cf->current_command);
Chris Luke03add7f2017-09-20 23:31:24 -04002521 cf->current_command = cf->input_vector;
2522 return 0;
2523 }
2524
Dave Barach9b8ffd92016-07-08 08:13:45 -04002525 /* process the action */
2526 if (!unix_cli_line_process_one (cm, um, cf, uf,
2527 cf->input_vector[i], action))
2528 {
2529 /* CRLF found. Consume the bytes from the input_vector */
2530 vec_delete (cf->input_vector, i + matched, 0);
2531 /* And tell our caller to execute cf->input_command */
2532 return 0;
2533 }
2534 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002535
2536 i += matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002537 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002538
Dave Barach9b8ffd92016-07-08 08:13:45 -04002539 vec_reset_length (cf->input_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002540 return 1;
2541}
2542
Chris Luke8e5b0412016-07-26 13:06:10 -04002543/** @brief Process input to a CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002544static void
2545unix_cli_process_input (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002546{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002547 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002548 clib_file_main_t *fm = &file_main;
2549 clib_file_t *uf;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002550 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002551 unformat_input_t input;
2552 int vlib_parse_eval (u8 *);
2553
Chris Luke03add7f2017-09-20 23:31:24 -04002554 cm->current_input_file_index = cli_file_index;
2555
Chris Luke93dcd1d2016-05-10 10:45:10 -04002556more:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002557 /* Try vlibplex first. Someday... */
2558 if (0 && vlib_parse_eval (cf->input_vector) == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002559 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002560
Chris Luke03add7f2017-09-20 23:31:24 -04002561
Chris Luke93dcd1d2016-05-10 10:45:10 -04002562 if (cf->line_mode)
2563 {
2564 /* just treat whatever we got as a complete line of input */
2565 cf->current_command = cf->input_vector;
2566 }
2567 else
2568 {
2569 /* Line edit, echo, etc. */
Damjan Marion56dd5432017-09-08 19:52:02 +02002570 if (unix_cli_line_edit (cm, um, fm, cf))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002571 /* want more input */
2572 return;
Chris Luke93dcd1d2016-05-10 10:45:10 -04002573 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002574
2575 if (um->log_fd)
2576 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002577 static u8 *lv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002578 vec_reset_length (lv);
Andreas Schultz972dc172020-05-15 11:50:07 +02002579 lv = format (lv, "%U[%d]: %v", format_timeval,
2580 NULL /* current bat-format */, 0 /* current bat-time */,
Chris Luke03add7f2017-09-20 23:31:24 -04002581 cli_file_index, cf->current_command);
Fan Zhangce266ad2020-03-12 09:26:38 +00002582 if ((vec_len (cf->current_command) > 0) &&
2583 (cf->current_command[vec_len (cf->current_command) - 1] != '\n'))
Paul Vinciguerra8a023fd2020-03-01 00:47:17 -05002584 lv = format (lv, "\n");
Chris Luke03add7f2017-09-20 23:31:24 -04002585 int rv __attribute__ ((unused)) = write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002586 }
2587
Dave Barach961e3c82020-06-18 17:04:18 -04002588 /* Run the command through the macro processor */
2589 if (vec_len (cf->current_command))
2590 {
2591 u8 *expanded;
2592 vec_validate (cf->current_command, vec_len (cf->current_command));
2593 cf->current_command[vec_len (cf->current_command) - 1] = 0;
2594 /* The macro expander expects proper C-strings, not vectors */
Dave Barachb30b9542020-06-22 10:02:25 -04002595 expanded = (u8 *) clib_macro_eval (&cf->macro_main,
Dave Barach961e3c82020-06-18 17:04:18 -04002596 (i8 *) cf->current_command,
Dave Barachb30b9542020-06-22 10:02:25 -04002597 1 /* complain */ ,
2598 0 /* level */ ,
2599 8 /* max_level */ );
Dave Barach961e3c82020-06-18 17:04:18 -04002600 /* Macro processor NULL terminates the return */
Damjan Marion8bea5892022-04-04 22:40:45 +02002601 vec_dec_len (expanded, 1);
Dave Barach961e3c82020-06-18 17:04:18 -04002602 vec_reset_length (cf->current_command);
2603 vec_append (cf->current_command, expanded);
2604 vec_free (expanded);
2605 }
2606
Chris Luke03add7f2017-09-20 23:31:24 -04002607 /* Build an unformat structure around our command */
Chris Luke93dcd1d2016-05-10 10:45:10 -04002608 unformat_init_vector (&input, cf->current_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002609
2610 /* Remove leading white space from input. */
2611 (void) unformat (&input, "");
2612
Dave Barach9b8ffd92016-07-08 08:13:45 -04002613 cf->pager_start = 0; /* start a new pager session */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002614
2615 if (unformat_check_input (&input) != UNFORMAT_END_OF_INPUT)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002616 vlib_cli_input (um->vlib_main, &input, unix_vlib_cli_output,
2617 cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002618
Ed Warnickecb9cada2015-12-08 15:45:58 -07002619 /* Zero buffer since otherwise unformat_free will call vec_free on it. */
2620 input.buffer = 0;
2621
2622 unformat_free (&input);
2623
Chris Luke93dcd1d2016-05-10 10:45:10 -04002624 /* Re-fetch pointer since pool may have moved. */
2625 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002626 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke93dcd1d2016-05-10 10:45:10 -04002627
Ed Warnickecb9cada2015-12-08 15:45:58 -07002628done:
Chris Luke93dcd1d2016-05-10 10:45:10 -04002629 /* reset vector; we'll re-use it later */
2630 if (cf->line_mode)
Chris Luke03add7f2017-09-20 23:31:24 -04002631 {
2632 vec_reset_length (cf->input_vector);
2633 cf->current_command = 0;
2634 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002635 else
Chris Luke03add7f2017-09-20 23:31:24 -04002636 {
2637 vec_reset_length (cf->current_command);
2638 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002639
Chris Luke7afda3a2016-04-25 13:49:22 -04002640 if (cf->no_pager == 2)
2641 {
2642 /* Pager was programmatically disabled */
2643 unix_cli_pager_message (cf, uf, "pager buffer overflowed", "\n");
2644 cf->no_pager = um->cli_no_pager;
2645 }
2646
Dave Barach9b8ffd92016-07-08 08:13:45 -04002647 if (vec_len (cf->pager_index) == 0
2648 || vec_len (cf->pager_index) < cf->height)
Chris Luke7afda3a2016-04-25 13:49:22 -04002649 {
2650 /* There was no need for the pager */
2651 unix_cli_pager_reset (cf);
2652
2653 /* Prompt. */
2654 unix_cli_cli_prompt (cf, uf);
2655 }
2656 else
2657 {
2658 /* Display the pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002659 unix_cli_pager_prompt (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04002660 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002661
Dave Barach9b8ffd92016-07-08 08:13:45 -04002662 /* Any residual data in the input vector? */
2663 if (vec_len (cf->input_vector))
2664 goto more;
Chris Luke03add7f2017-09-20 23:31:24 -04002665
2666 /* For non-interactive sessions send a NUL byte.
2667 * Specifically this is because vppctl needs to see some traffic in
2668 * order to move on to closing the session. Commands with no output
2669 * would thus cause vppctl to hang indefinitely in non-interactive mode
2670 * since there is also no prompt sent after the command completes.
2671 */
2672 if (!cf->is_interactive)
2673 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\0", 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002674}
2675
Chris Luke54ccf222016-07-25 16:38:11 -04002676/** Destroy a CLI session.
2677 * @note If we destroy the @c stdin session this additionally signals
2678 * the shutdown of VPP.
2679 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002680static void
2681unix_cli_kill (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002682{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002683 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002684 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002685 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002686 clib_file_t *uf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002687 int i;
2688
Steve Shin0d5a1952018-06-29 09:40:20 -07002689 /* Validate cli_file_index */
2690 if (pool_is_free_index (cm->cli_file_pool, cli_file_index))
2691 return;
2692
Steven Luong17a67212021-08-20 19:14:16 -07002693 vec_foreach_index (i, cm->new_sessions)
2694 {
2695 unix_cli_new_session_t *ns = vec_elt_at_index (cm->new_sessions, i);
2696
2697 if (ns->cf_index == cli_file_index)
2698 {
Vladislav Grishenko49ebbf72021-12-29 14:30:32 +05002699 ns->cf_index = ~0;
Steven Luong17a67212021-08-20 19:14:16 -07002700 break;
2701 }
2702 }
2703
Ed Warnickecb9cada2015-12-08 15:45:58 -07002704 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002705 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002706
2707 /* Quit/EOF on stdin means quit program. */
Chris Luke03add7f2017-09-20 23:31:24 -04002708 if (uf->file_descriptor == STDIN_FILENO)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002709 clib_longjmp (&um->vlib_main->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI);
2710
2711 vec_free (cf->current_command);
2712 vec_free (cf->search_key);
2713
2714 for (i = 0; i < vec_len (cf->command_history); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002715 vec_free (cf->command_history[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002716
2717 vec_free (cf->command_history);
Dave Barach5f09efe2020-11-09 17:11:57 -05002718 vec_free (cf->input_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002719
Damjan Marion56dd5432017-09-08 19:52:02 +02002720 clib_file_del (fm, uf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002721
2722 unix_cli_file_free (cf);
Dave Barachb30b9542020-06-22 10:02:25 -04002723 clib_macro_free (&cf->macro_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002724 pool_put (cm->cli_file_pool, cf);
2725}
2726
Chris Luke54ccf222016-07-25 16:38:11 -04002727/** Handle system events. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002728static uword
2729unix_cli_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002730 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002731{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002732 unix_cli_main_t *cm = &unix_cli_main;
2733 uword i, *data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002734
2735 while (1)
2736 {
2737 unix_cli_process_event_type_t event_type;
2738 vlib_process_wait_for_event (vm);
2739 event_type = vlib_process_get_events (vm, &data);
2740
2741 switch (event_type)
2742 {
2743 case UNIX_CLI_PROCESS_EVENT_READ_READY:
2744 for (i = 0; i < vec_len (data); i++)
2745 unix_cli_process_input (cm, data[i]);
2746 break;
2747
2748 case UNIX_CLI_PROCESS_EVENT_QUIT:
2749 /* Kill this process. */
2750 for (i = 0; i < vec_len (data); i++)
2751 unix_cli_kill (cm, data[i]);
2752 goto done;
2753 }
2754
2755 if (data)
Damjan Marion8bea5892022-04-04 22:40:45 +02002756 vec_set_len (data, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002757 }
2758
Dave Barach9b8ffd92016-07-08 08:13:45 -04002759done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002760 vec_free (data);
2761
2762 vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED);
2763
2764 /* Add node index so we can re-use this process later. */
2765 vec_add1 (cm->unused_cli_process_node_indices, rt->node_index);
2766
2767 return 0;
2768}
2769
Chris Luke54ccf222016-07-25 16:38:11 -04002770/** Called when a CLI session file descriptor can be written to without
2771 * blocking. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002772static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002773unix_cli_write_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002774{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002775 unix_cli_main_t *cm = &unix_cli_main;
2776 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002777 int n;
2778
2779 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2780
2781 /* Flush output vector. */
Chris Luke03add7f2017-09-20 23:31:24 -04002782 if (cf->is_socket)
2783 /* If it's a socket we use MSG_NOSIGNAL to prevent SIGPIPE */
2784 n = send (uf->file_descriptor,
2785 cf->output_vector, vec_len (cf->output_vector), MSG_NOSIGNAL);
2786 else
2787 n = write (uf->file_descriptor,
2788 cf->output_vector, vec_len (cf->output_vector));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002789
2790 if (n < 0 && errno != EAGAIN)
Chris Luke03add7f2017-09-20 23:31:24 -04002791 {
2792 if (errno == EPIPE)
2793 {
2794 /* connection closed on us */
2795 unix_main_t *um = &unix_main;
2796 cf->has_epipe = 1;
2797 vlib_process_signal_event (um->vlib_main, cf->process_node_index,
2798 UNIX_CLI_PROCESS_EVENT_QUIT,
2799 uf->private_data);
2800 }
2801 else
2802 {
2803 return clib_error_return_unix (0, "write");
2804 }
2805 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002806
2807 else if (n > 0)
2808 unix_cli_del_pending_output (uf, cf, n);
2809
2810 return /* no error */ 0;
2811}
2812
Chris Luke54ccf222016-07-25 16:38:11 -04002813/** Called when a CLI session file descriptor has data to be read. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002814static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002815unix_cli_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002816{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002817 unix_main_t *um = &unix_main;
2818 unix_cli_main_t *cm = &unix_cli_main;
2819 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002820 uword l;
2821 int n, n_read, n_try;
2822
2823 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2824
2825 n = n_try = 4096;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002826 while (n == n_try)
2827 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002828 l = vec_len (cf->input_vector);
2829 vec_resize (cf->input_vector, l + n_try);
2830
2831 n = read (uf->file_descriptor, cf->input_vector + l, n_try);
2832
2833 /* Error? */
2834 if (n < 0 && errno != EAGAIN)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002835 return clib_error_return_unix (0, "read");
2836
Ed Warnickecb9cada2015-12-08 15:45:58 -07002837 n_read = n < 0 ? 0 : n;
Damjan Marion8bea5892022-04-04 22:40:45 +02002838 vec_set_len (cf->input_vector, l + n_read);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002839 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002840
Dave Barach9b8ffd92016-07-08 08:13:45 -04002841 if (!(n < 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002842 vlib_process_signal_event (um->vlib_main,
2843 cf->process_node_index,
2844 (n_read == 0
2845 ? UNIX_CLI_PROCESS_EVENT_QUIT
2846 : UNIX_CLI_PROCESS_EVENT_READ_READY),
2847 /* event data */ uf->private_data);
2848
2849 return /* no error */ 0;
2850}
2851
Chris Luke03add7f2017-09-20 23:31:24 -04002852/** Called when a CLI session file descriptor has an error condition. */
2853static clib_error_t *
2854unix_cli_error_detected (clib_file_t * uf)
2855{
2856 unix_main_t *um = &unix_main;
2857 unix_cli_main_t *cm = &unix_cli_main;
2858 unix_cli_file_t *cf;
2859
2860 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2861 cf->has_epipe = 1; /* prevent writes while the close is pending */
2862 vlib_process_signal_event (um->vlib_main,
2863 cf->process_node_index,
2864 UNIX_CLI_PROCESS_EVENT_QUIT,
2865 /* event data */ uf->private_data);
2866
2867 return /* no error */ 0;
2868}
2869
Chris Lukeb5850972016-05-03 16:34:59 -04002870/** Store a new CLI session.
2871 * @param name The name of the session.
2872 * @param fd The file descriptor for the session I/O.
2873 * @return The session ID.
2874 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002875static u32
2876unix_cli_file_add (unix_cli_main_t * cm, char *name, int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002877{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002878 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002879 clib_file_main_t *fm = &file_main;
Dave Barach52c33d62021-06-11 12:57:23 -04002880 vlib_node_main_t *nm = &vlib_get_main ()->node_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002881 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002882 clib_file_t template = { 0 };
Dave Barach9b8ffd92016-07-08 08:13:45 -04002883 vlib_main_t *vm = um->vlib_main;
Dave Barach06100392018-07-12 13:00:47 -04002884 vlib_node_t *n = 0;
Damjan Marionceab7882018-01-19 20:56:12 +01002885 u8 *file_desc = 0;
2886
2887 file_desc = format (0, "%s", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002888
2889 name = (char *) format (0, "unix-cli-%s", name);
2890
2891 if (vec_len (cm->unused_cli_process_node_indices) > 0)
2892 {
2893 uword l = vec_len (cm->unused_cli_process_node_indices);
Dave Barach06100392018-07-12 13:00:47 -04002894 int i;
2895 vlib_main_t *this_vlib_main;
2896 u8 *old_name = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002897
Dave Barach06100392018-07-12 13:00:47 -04002898 /*
2899 * Nodes are bulk-copied, so node name pointers are shared.
2900 * Find the cli node in all graph replicas, and give all of them
2901 * the same new name.
2902 * Then, throw away the old shared name-vector.
2903 */
Damjan Marion6ffb7c62021-03-26 13:06:13 +01002904 for (i = 0; i < vlib_get_n_threads (); i++)
Dave Barach06100392018-07-12 13:00:47 -04002905 {
Damjan Marion6ffb7c62021-03-26 13:06:13 +01002906 this_vlib_main = vlib_get_main_by_index (i);
Dave Barach06100392018-07-12 13:00:47 -04002907 if (this_vlib_main == 0)
2908 continue;
2909 n = vlib_get_node (this_vlib_main,
2910 cm->unused_cli_process_node_indices[l - 1]);
2911 old_name = n->name;
2912 n->name = (u8 *) name;
2913 }
Dave Barach52c33d62021-06-11 12:57:23 -04002914 ASSERT (old_name);
2915 hash_unset (nm->node_by_name, old_name);
2916 hash_set (nm->node_by_name, name, n->index);
Dave Barach06100392018-07-12 13:00:47 -04002917 vec_free (old_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002918
2919 vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING);
Damjan Marion8bea5892022-04-04 22:40:45 +02002920 vec_set_len (cm->unused_cli_process_node_indices, l - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002921 }
2922 else
2923 {
2924 static vlib_node_registration_t r = {
2925 .function = unix_cli_process,
2926 .type = VLIB_NODE_TYPE_PROCESS,
Chenmin Sun2fd44a02019-10-08 03:35:20 +08002927 .process_log2_n_stack_bytes = 18,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002928 };
2929
Dave Barach06100392018-07-12 13:00:47 -04002930 vlib_worker_thread_barrier_sync (vm);
2931
Damjan Marionf87acfa2022-03-23 17:36:56 +01002932 vlib_register_node (vm, &r, "%v", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002933 vec_free (name);
2934
2935 n = vlib_get_node (vm, r.index);
Dave Barach06100392018-07-12 13:00:47 -04002936 vlib_worker_thread_node_runtime_update ();
2937 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002938 }
2939
2940 pool_get (cm->cli_file_pool, cf);
Dave Barachb7b92992018-10-17 10:38:51 -04002941 clib_memset (cf, 0, sizeof (*cf));
Dave Barachb30b9542020-06-22 10:02:25 -04002942 clib_macro_init (&cf->macro_main);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002943
2944 template.read_function = unix_cli_read_ready;
2945 template.write_function = unix_cli_write_ready;
Chris Luke03add7f2017-09-20 23:31:24 -04002946 template.error_function = unix_cli_error_detected;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002947 template.file_descriptor = fd;
2948 template.private_data = cf - cm->cli_file_pool;
Damjan Marionceab7882018-01-19 20:56:12 +01002949 template.description = file_desc;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002950
2951 cf->process_node_index = n->index;
Damjan Marion56dd5432017-09-08 19:52:02 +02002952 cf->clib_file_index = clib_file_add (fm, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002953 cf->output_vector = 0;
2954 cf->input_vector = 0;
Dave Barach961e3c82020-06-18 17:04:18 -04002955 vec_validate (cf->current_command, 0);
Damjan Marion8bea5892022-04-04 22:40:45 +02002956 vec_set_len (cf->current_command, 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002957
Ed Warnickecb9cada2015-12-08 15:45:58 -07002958 vlib_start_process (vm, n->runtime_index);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002959
Dave Barach9b8ffd92016-07-08 08:13:45 -04002960 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002961 p->output_function = unix_vlib_cli_output;
2962 p->output_function_arg = cf - cm->cli_file_pool;
2963
Ed Warnickecb9cada2015-12-08 15:45:58 -07002964 return cf - cm->cli_file_pool;
2965}
2966
Chris Lukeb5850972016-05-03 16:34:59 -04002967/** Telnet listening socket has a new connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002968static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002969unix_cli_listen_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002970{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002971 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002972 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002973 unix_cli_main_t *cm = &unix_cli_main;
2974 clib_socket_t *s = &um->cli_listen_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002975 clib_socket_t client;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002976 char *client_name;
2977 clib_error_t *error;
2978 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002979 u32 cf_index;
Chris Lukea9cf6af2018-09-05 21:00:52 -04002980 int one;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002981
2982 error = clib_socket_accept (s, &client);
2983 if (error)
2984 return error;
2985
Chris Lukea9cf6af2018-09-05 21:00:52 -04002986 /* Disable Nagle, ignore any errors doing so eg on PF_LOCAL socket */
2987 one = 1;
Chris Lukec5cb6382018-09-06 15:37:28 -04002988 (void) setsockopt (client.fd, IPPROTO_TCP, TCP_NODELAY,
2989 (void *) &one, sizeof (one));
Chris Lukea9cf6af2018-09-05 21:00:52 -04002990
Ed Warnickecb9cada2015-12-08 15:45:58 -07002991 client_name = (char *) format (0, "%U%c", format_sockaddr, &client.peer, 0);
2992
2993 cf_index = unix_cli_file_add (cm, client_name, client.fd);
2994 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
Chris Luke03add7f2017-09-20 23:31:24 -04002995 cf->is_socket = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002996
2997 /* No longer need CLIB version of socket. */
2998 clib_socket_free (&client);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002999 vec_free (client_name);
3000
3001 /* if we're supposed to run telnet session in character mode (default) */
3002 if (um->cli_line_mode == 0)
3003 {
Chris Luke0aca5eb2016-04-25 13:48:54 -04003004 /*
3005 * Set telnet client character mode, echo on, suppress "go-ahead".
3006 * Technically these should be negotiated, but this works.
Ed Warnickecb9cada2015-12-08 15:45:58 -07003007 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04003008 u8 charmode_option[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003009 IAC, WONT, TELOPT_LINEMODE, /* server will do char-by-char */
3010 IAC, DONT, TELOPT_LINEMODE, /* client should do char-by-char */
3011 IAC, WILL, TELOPT_SGA, /* server willl supress GA */
3012 IAC, DO, TELOPT_SGA, /* client should supress Go Ahead */
3013 IAC, WILL, TELOPT_ECHO, /* server will do echo */
3014 IAC, DONT, TELOPT_ECHO, /* client should not echo */
3015 IAC, DO, TELOPT_TTYPE, /* client should tell us its term type */
3016 IAC, SB, TELOPT_TTYPE, 1, IAC, SE, /* now tell me ttype */
3017 IAC, DO, TELOPT_NAWS, /* client should tell us its window sz */
3018 IAC, SB, TELOPT_NAWS, 1, IAC, SE, /* now tell me window size */
Chris Luke0aca5eb2016-04-25 13:48:54 -04003019 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07003020
Chris Luke0aca5eb2016-04-25 13:48:54 -04003021 /* Enable history on this CLI */
Chris Luke7afda3a2016-04-25 13:49:22 -04003022 cf->history_limit = um->cli_history_limit;
3023 cf->has_history = cf->history_limit != 0;
3024
Chris Luke03add7f2017-09-20 23:31:24 -04003025 /* This is an interactive session until we decide otherwise */
3026 cf->is_interactive = 1;
3027
Chris Luke7afda3a2016-04-25 13:49:22 -04003028 /* Make sure this session is in line mode */
3029 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003030
3031 /* We need CRLF */
3032 cf->crlf_mode = 1;
3033
Chris Luke7afda3a2016-04-25 13:49:22 -04003034 /* Setup the pager */
3035 cf->no_pager = um->cli_no_pager;
3036
Chris Luke2d8bf302017-11-12 22:26:37 -05003037 /* Default terminal dimensions, should the terminal
3038 * fail to provide any.
3039 */
3040 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
3041 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
3042
Chris Luke0aca5eb2016-04-25 13:48:54 -04003043 /* Send the telnet options */
Chris Luke03add7f2017-09-20 23:31:24 -04003044 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003045 unix_vlib_cli_output_raw (cf, uf, charmode_option,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003046 ARRAY_LEN (charmode_option));
Chris Luke0aca5eb2016-04-25 13:48:54 -04003047
Chris Luke6a3a4f72019-07-09 23:33:30 -04003048 if (cm->new_session_process_node_index == ~0)
3049 {
3050 /* Create thw new session deadline process */
3051 cm->new_session_process_node_index =
3052 vlib_process_create (um->vlib_main, "unix-cli-new-session",
3053 unix_cli_new_session_process,
3054 16 /* log2_n_stack_bytes */ );
3055 }
3056
3057 /* In case the client doesn't negotiate terminal type, register
3058 * our session with a process that will emit the prompt if
3059 * a deadline passes */
3060 vlib_process_signal_event (um->vlib_main,
3061 cm->new_session_process_node_index,
3062 UNIX_CLI_NEW_SESSION_EVENT_ADD, cf_index);
3063
Ed Warnickecb9cada2015-12-08 15:45:58 -07003064 }
3065
3066 return error;
3067}
3068
Chris Lukeb5850972016-05-03 16:34:59 -04003069/** The system terminal has informed us that the window size
3070 * has changed.
3071 */
Chris Luke7afda3a2016-04-25 13:49:22 -04003072static void
3073unix_cli_resize_interrupt (int signum)
3074{
Damjan Marion56dd5432017-09-08 19:52:02 +02003075 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003076 unix_cli_main_t *cm = &unix_cli_main;
3077 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool,
3078 cm->stdin_cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02003079 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04003080 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003081 (void) signum;
Chris Luke7afda3a2016-04-25 13:49:22 -04003082
3083 /* Terminal resized, fetch the new size */
Chris Luke03add7f2017-09-20 23:31:24 -04003084 if (ioctl (STDIN_FILENO, TIOCGWINSZ, &ws) < 0)
Dave Barachb2a6e252016-07-27 10:00:58 -04003085 {
3086 /* "Should never happen..." */
3087 clib_unix_warning ("TIOCGWINSZ");
3088 /* We can't trust ws.XXX... */
3089 return;
3090 }
Chris Lukeb2bcad62017-09-18 08:51:22 -04003091
Chris Luke7afda3a2016-04-25 13:49:22 -04003092 cf->width = ws.ws_col;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003093 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
3094 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
Chris Luke2d8bf302017-11-12 22:26:37 -05003095 if (cf->width == 0)
3096 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003097
Chris Luke7afda3a2016-04-25 13:49:22 -04003098 cf->height = ws.ws_row;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003099 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
3100 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
Chris Luke2d8bf302017-11-12 22:26:37 -05003101 if (cf->height == 0)
3102 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Chris Luke862623d2016-05-14 10:13:34 -04003103
3104 /* Reindex the pager buffer */
3105 unix_cli_pager_reindex (cf);
3106
3107 /* Redraw the page */
3108 unix_cli_pager_redraw (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04003109}
3110
Chris Lukeb5850972016-05-03 16:34:59 -04003111/** Handle configuration directives in the @em unix section. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003112static clib_error_t *
3113unix_cli_config (vlib_main_t * vm, unformat_input_t * input)
3114{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003115 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02003116 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003117 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003118 int flags;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003119 clib_error_t *error = 0;
3120 unix_cli_file_t *cf;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003121 u32 cf_index;
3122 struct termios tio;
Chris Luke7afda3a2016-04-25 13:49:22 -04003123 struct sigaction sa;
3124 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003125 u8 *term;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003126
3127 /* We depend on unix flags being set. */
3128 if ((error = vlib_call_config_function (vm, unix_config)))
3129 return error;
3130
3131 if (um->flags & UNIX_FLAG_INTERACTIVE)
3132 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07003133 /* Set stdin to be non-blocking. */
Chris Luke03add7f2017-09-20 23:31:24 -04003134 if ((flags = fcntl (STDIN_FILENO, F_GETFL, 0)) < 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003135 flags = 0;
Chris Luke03add7f2017-09-20 23:31:24 -04003136 (void) fcntl (STDIN_FILENO, F_SETFL, flags | O_NONBLOCK);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003137
Chris Luke03add7f2017-09-20 23:31:24 -04003138 cf_index = unix_cli_file_add (cm, "stdin", STDIN_FILENO);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003139 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04003140 cm->stdin_cli_file_index = cf_index;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003141
3142 /* If stdin is a tty and we are using chacracter mode, enable
3143 * history on the CLI and set the tty line discipline accordingly. */
Chris Luke03add7f2017-09-20 23:31:24 -04003144 if (isatty (STDIN_FILENO) && um->cli_line_mode == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003145 {
3146 /* Capture terminal resize events */
Dave Barachb7b92992018-10-17 10:38:51 -04003147 clib_memset (&sa, 0, sizeof (sa));
Dave Barach9b8ffd92016-07-08 08:13:45 -04003148 sa.sa_handler = unix_cli_resize_interrupt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003149 if (sigaction (SIGWINCH, &sa, 0) < 0)
3150 clib_panic ("sigaction");
Chris Luke7afda3a2016-04-25 13:49:22 -04003151
Dave Barach9b8ffd92016-07-08 08:13:45 -04003152 /* Retrieve the current terminal size */
Dave Baracha6ef36b2020-02-11 10:29:13 -05003153 if (ioctl (STDIN_FILENO, TIOCGWINSZ, &ws) == 0)
3154 {
3155 cf->width = ws.ws_col;
3156 cf->height = ws.ws_row;
3157 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003158
Dave Barach9b8ffd92016-07-08 08:13:45 -04003159 if (cf->width == 0 || cf->height == 0)
Dave Barachb66201f2017-09-22 13:34:39 -04003160 {
3161 /*
3162 * We have a tty, but no size. Use defaults.
3163 * vpp "unix interactive" inside emacs + gdb ends up here.
3164 */
Chris Luke2d8bf302017-11-12 22:26:37 -05003165 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
3166 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Dave Barachb66201f2017-09-22 13:34:39 -04003167 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003168
Dave Barach9b8ffd92016-07-08 08:13:45 -04003169 /* Setup the history */
3170 cf->history_limit = um->cli_history_limit;
3171 cf->has_history = cf->history_limit != 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003172
Dave Barach9b8ffd92016-07-08 08:13:45 -04003173 /* Setup the pager */
3174 cf->no_pager = um->cli_no_pager;
Chris Luke7afda3a2016-04-25 13:49:22 -04003175
Chris Luke03add7f2017-09-20 23:31:24 -04003176 /* This is an interactive session until we decide otherwise */
3177 cf->is_interactive = 1;
3178
Dave Barach9b8ffd92016-07-08 08:13:45 -04003179 /* We're going to be in char by char mode */
3180 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003181
Dave Barach9b8ffd92016-07-08 08:13:45 -04003182 /* Save the original tty state so we can restore it later */
Chris Luke03add7f2017-09-20 23:31:24 -04003183 tcgetattr (STDIN_FILENO, &um->tio_stdin);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003184 um->tio_isset = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003185
Dave Barach9b8ffd92016-07-08 08:13:45 -04003186 /* Tweak the tty settings */
3187 tio = um->tio_stdin;
3188 /* echo off, canonical mode off, ext'd input processing off */
3189 tio.c_lflag &= ~(ECHO | ICANON | IEXTEN);
Chris Luke01dc6b92018-06-10 13:42:45 -04003190 /* disable XON/XOFF, so ^S invokes the history search */
3191 tio.c_iflag &= ~(IXON | IXOFF);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003192 tio.c_cc[VMIN] = 1; /* 1 byte at a time */
3193 tio.c_cc[VTIME] = 0; /* no timer */
Chris Luke01dc6b92018-06-10 13:42:45 -04003194 tio.c_cc[VSTOP] = _POSIX_VDISABLE; /* not ^S */
3195 tio.c_cc[VSTART] = _POSIX_VDISABLE; /* not ^Q */
Chris Luke03add7f2017-09-20 23:31:24 -04003196 tcsetattr (STDIN_FILENO, TCSAFLUSH, &tio);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003197
Dave Barach9b8ffd92016-07-08 08:13:45 -04003198 /* See if we can do ANSI/VT100 output */
3199 term = (u8 *) getenv ("TERM");
3200 if (term != NULL)
Chris Luke03add7f2017-09-20 23:31:24 -04003201 {
3202 int len = strlen ((char *) term);
3203 cf->ansi_capable = unix_cli_terminal_type_ansi (term, len);
3204 if (unix_cli_terminal_type_noninteractive (term, len))
3205 unix_cli_set_session_noninteractive (cf);
3206 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003207 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003208 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04003209 {
Chris Luke03add7f2017-09-20 23:31:24 -04003210 /* No tty, so make sure the session doesn't have tty-like features */
3211 unix_cli_set_session_noninteractive (cf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003212 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04003213
3214 /* Send banner and initial prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003215 unix_cli_file_welcome (cm, cf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003216 }
3217
Ed Warnickea25bd1c2016-04-01 22:43:37 -05003218 /* If we have socket config, LISTEN, otherwise, don't */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003219 clib_socket_t *s = &um->cli_listen_socket;
3220 if (s->config && s->config[0] != 0)
3221 {
3222 /* CLI listen. */
Damjan Marion56dd5432017-09-08 19:52:02 +02003223 clib_file_t template = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07003224
Damjan Marion57d963f2017-07-20 19:17:06 +02003225 /* mkdir of file socketu, only under /run */
3226 if (strncmp (s->config, "/run", 4) == 0)
Chris Luke475674e2017-07-05 18:02:53 -04003227 {
Damjan Marion57d963f2017-07-20 19:17:06 +02003228 u8 *tmp = format (0, "%s", s->config);
3229 int i = vec_len (tmp);
3230 while (i && tmp[--i] != '/')
3231 ;
3232
YohanPipereau71dd9d52019-06-06 16:34:14 +02003233 tmp[i] = '\0';
Damjan Marion57d963f2017-07-20 19:17:06 +02003234
3235 if (i)
3236 vlib_unix_recursive_mkdir ((char *) tmp);
3237 vec_free (tmp);
Chris Luke475674e2017-07-05 18:02:53 -04003238 }
3239
Damjan Marionf49921f2017-09-11 16:52:11 +02003240 s->flags = CLIB_SOCKET_F_IS_SERVER | /* listen, don't connect */
3241 CLIB_SOCKET_F_ALLOW_GROUP_WRITE; /* PF_LOCAL socket only */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003242 error = clib_socket_init (s);
Ed Warnickea25bd1c2016-04-01 22:43:37 -05003243
Dave Barach9b8ffd92016-07-08 08:13:45 -04003244 if (error)
3245 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003246
Dave Barach9b8ffd92016-07-08 08:13:45 -04003247 template.read_function = unix_cli_listen_read_ready;
3248 template.file_descriptor = s->fd;
Damjan Marionceab7882018-01-19 20:56:12 +01003249 template.description = format (0, "cli listener %s", s->config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003250
Damjan Marion56dd5432017-09-08 19:52:02 +02003251 clib_file_add (fm, &template);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003252 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003253
3254 /* Set CLI prompt. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003255 if (!cm->cli_prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003256 cm->cli_prompt = format (0, "VLIB: ");
3257
3258 return 0;
3259}
3260
Chris Luke90f52bf2016-09-12 08:55:13 -04003261/*?
3262 * This module has no configurable parameters.
3263?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07003264VLIB_CONFIG_FUNCTION (unix_cli_config, "unix-cli");
3265
Chris Luke54ccf222016-07-25 16:38:11 -04003266/** Called when VPP is shutting down, this restores the system
3267 * terminal state if previously saved.
Chris Lukeb5850972016-05-03 16:34:59 -04003268 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04003269static clib_error_t *
3270unix_cli_exit (vlib_main_t * vm)
3271{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003272 unix_main_t *um = &unix_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003273
3274 /* If stdin is a tty and we saved the tty state, reset the tty state */
Chris Luke03add7f2017-09-20 23:31:24 -04003275 if (isatty (STDIN_FILENO) && um->tio_isset)
3276 tcsetattr (STDIN_FILENO, TCSAFLUSH, &um->tio_stdin);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003277
3278 return 0;
3279}
3280
3281VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_cli_exit);
3282
Chris Lukeb5850972016-05-03 16:34:59 -04003283/** Set the CLI prompt.
Chris Luke54ccf222016-07-25 16:38:11 -04003284 * @param prompt The C string to set the prompt to.
Chris Lukeb5850972016-05-03 16:34:59 -04003285 * @note This setting is global; it impacts all current
3286 * and future CLI sessions.
3287 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003288void
3289vlib_unix_cli_set_prompt (char *prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003290{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003291 char *fmt = (prompt[strlen (prompt) - 1] == ' ') ? "%s" : "%s ";
3292 unix_cli_main_t *cm = &unix_cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003293 if (cm->cli_prompt)
3294 vec_free (cm->cli_prompt);
3295 cm->cli_prompt = format (0, fmt, prompt);
3296}
3297
Benoît Gannea58be822020-05-11 16:27:29 +02003298static unix_cli_file_t *
Benoît Ganne10a22a62020-05-15 16:12:23 +02003299unix_cli_file_if_exists (unix_cli_main_t * cm)
3300{
3301 if (!cm->cli_file_pool)
3302 return 0;
3303 return pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3304}
3305
3306static unix_cli_file_t *
Benoît Gannea58be822020-05-11 16:27:29 +02003307unix_cli_file_if_interactive (unix_cli_main_t * cm)
3308{
3309 unix_cli_file_t *cf;
Benoît Ganne10a22a62020-05-15 16:12:23 +02003310 if ((cf = unix_cli_file_if_exists (cm)) && !cf->is_interactive)
Benoît Gannea58be822020-05-11 16:27:29 +02003311 return 0;
3312 return cf;
3313}
3314
Chris Lukeb5850972016-05-03 16:34:59 -04003315/** CLI command to quit the terminal session.
3316 * @note If this is a stdin session then this will
3317 * shutdown VPP also.
3318 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003319static clib_error_t *
3320unix_cli_quit (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003321 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003322{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003323 unix_cli_main_t *cm = &unix_cli_main;
Benoît Gannea58be822020-05-11 16:27:29 +02003324 unix_cli_file_t *cf;
3325
Benoît Ganne10a22a62020-05-15 16:12:23 +02003326 if (!(cf = unix_cli_file_if_exists (cm)))
3327 return clib_error_return (0, "invalid session");
Chris Luke03add7f2017-09-20 23:31:24 -04003328
3329 /* Cosmetic: suppress the final prompt from appearing before we die */
3330 cf->is_interactive = 0;
3331 cf->started = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003332
3333 vlib_process_signal_event (vm,
3334 vlib_current_process (vm),
3335 UNIX_CLI_PROCESS_EVENT_QUIT,
3336 cm->current_input_file_index);
3337 return 0;
3338}
3339
Chris Luke54ccf222016-07-25 16:38:11 -04003340/*?
3341 * Terminates the current CLI session.
3342 *
3343 * If VPP is running in @em interactive mode and this is the console session
3344 * (that is, the session on @c stdin) then this will also terminate VPP.
3345?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003346/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003347VLIB_CLI_COMMAND (unix_cli_quit_command, static) = {
3348 .path = "quit",
3349 .short_help = "Exit CLI",
3350 .function = unix_cli_quit,
3351};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003352/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003353
Florin Coras33d16292018-03-16 09:13:37 -07003354/* *INDENT-OFF* */
3355VLIB_CLI_COMMAND (unix_cli_q_command, static) = {
3356 .path = "q",
3357 .short_help = "Exit CLI",
3358 .function = unix_cli_quit,
3359};
3360/* *INDENT-ON* */
3361
Chris Lukeb5850972016-05-03 16:34:59 -04003362/** CLI command to execute a VPP command script. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003363static clib_error_t *
3364unix_cli_exec (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003365 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003366{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003367 char *file_name;
Damjan Marion3153f002022-05-14 00:14:02 +02003368 int fd, rv = 0;
3369 unformat_input_t sub_input, in;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003370 clib_error_t *error;
Damjan Marion3153f002022-05-14 00:14:02 +02003371 clib_macro_main_t *mm = 0;
Dave Barach85866e72020-11-09 10:30:06 -05003372 unix_cli_main_t *cm = &unix_cli_main;
3373 unix_cli_file_t *cf;
3374 u8 *file_data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003375 file_name = 0;
3376 fd = -1;
3377 error = 0;
Dave Barach85866e72020-11-09 10:30:06 -05003378 struct stat s;
3379
Ed Warnickecb9cada2015-12-08 15:45:58 -07003380
Dave Barach9b8ffd92016-07-08 08:13:45 -04003381 if (!unformat (input, "%s", &file_name))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003382 {
3383 error = clib_error_return (0, "expecting file name, got `%U'",
3384 format_unformat_error, input);
3385 goto done;
3386 }
3387
3388 fd = open (file_name, O_RDONLY);
3389 if (fd < 0)
3390 {
3391 error = clib_error_return_unix (0, "failed to open `%s'", file_name);
3392 goto done;
3393 }
3394
3395 /* Make sure its a regular file. */
Dave Barach85866e72020-11-09 10:30:06 -05003396 if (fstat (fd, &s) < 0)
3397 {
3398 error = clib_error_return_unix (0, "failed to stat `%s'", file_name);
3399 goto done;
3400 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003401
Dave Barach85866e72020-11-09 10:30:06 -05003402 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
3403 {
3404 error = clib_error_return (0, "not a regular file `%s'", file_name);
3405 goto done;
3406 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003407
Damjan Marion3153f002022-05-14 00:14:02 +02003408 if (s.st_size < 1)
3409 {
3410 error = clib_error_return (0, "empty file `%s'", file_name);
3411 goto done;
3412 }
3413
Dave Barach85866e72020-11-09 10:30:06 -05003414 /* Read the file */
Damjan Marion3153f002022-05-14 00:14:02 +02003415 vec_validate (file_data, s.st_size - 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003416
Dave Barach85866e72020-11-09 10:30:06 -05003417 if (read (fd, file_data, s.st_size) != s.st_size)
3418 {
3419 error = clib_error_return_unix (0, "Failed to read %d bytes from '%s'",
3420 s.st_size, file_name);
3421 vec_free (file_data);
3422 goto done;
3423 }
3424
Dave Barach85866e72020-11-09 10:30:06 -05003425 unformat_init_vector (&sub_input, file_data);
3426
Damjan Marion3153f002022-05-14 00:14:02 +02003427 /* Initial config process? Use the global macro table. */
3428 if (pool_is_free_index (cm->cli_file_pool, cm->current_input_file_index))
3429 mm = &cm->macro_main;
3430 else
Dave Barach85866e72020-11-09 10:30:06 -05003431 {
Damjan Marion3153f002022-05-14 00:14:02 +02003432 /* Otherwise, use the per-cli-process macro table */
3433 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3434 mm = &cf->macro_main;
Dave Barach85866e72020-11-09 10:30:06 -05003435 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003436
Damjan Marion3153f002022-05-14 00:14:02 +02003437 while (rv == 0 && unformat_user (&sub_input, unformat_vlib_cli_line, &in))
3438 {
3439 /* Run the file contents through the macro processor */
3440 if (vec_len (in.buffer) > 1)
3441 {
3442 u8 *expanded;
3443
3444 /* The macro expander expects a c string... */
3445 vec_add1 (in.buffer, 0);
3446
3447 expanded =
3448 (u8 *) clib_macro_eval (mm, (i8 *) in.buffer, 1 /* complain */,
3449 0 /* level */, 8 /* max_level */);
3450 /* Macro processor NULL terminates the return */
3451 vec_dec_len (expanded, 1);
3452 vec_reset_length (in.buffer);
3453 vec_append (in.buffer, expanded);
3454 vec_free (expanded);
3455 }
3456
3457 if ((rv = vlib_cli_input (vm, &in, 0, 0)) != 0)
3458 error = clib_error_return (0, "CLI line error: %U",
3459 format_unformat_error, &in);
3460 unformat_free (&in);
3461 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003462 unformat_free (&sub_input);
3463
Dave Barach9b8ffd92016-07-08 08:13:45 -04003464done:
Dave Baracha6ef36b2020-02-11 10:29:13 -05003465 if (fd >= 0)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003466 close (fd);
3467 vec_free (file_name);
3468
3469 return error;
3470}
3471
Chris Luke54ccf222016-07-25 16:38:11 -04003472/*?
Billy McFall28cf3b72018-01-15 17:54:52 -05003473 * Executes a sequence of CLI commands which are read from a file. If
Nathan Skrzypczakecd6b1a2021-09-29 15:35:31 +02003474 * a command is unrecognized or otherwise invalid then the usual CLI
Chris Luke54ccf222016-07-25 16:38:11 -04003475 * feedback will be generated, however execution of subsequent commands
3476 * from the file will continue.
Billy McFall28cf3b72018-01-15 17:54:52 -05003477 *
3478 * The VPP code is indifferent to the file location. However, if SELinux
3479 * is enabled, then the file needs to have an SELinux label the VPP
3480 * process is allowed to access. For example, if a file is created in
3481 * '<em>/usr/share/vpp/</em>', it will be allowed. However, files manually
3482 * created in '/tmp/' or '/home/<user>/' will not be accessible by the VPP
3483 * process when SELinux is enabled.
3484 *
3485 * @cliexpar
3486 * Sample file:
3487 * @clistart
3488 * <b><em>$ cat /usr/share/vpp/scripts/gigup.txt</em></b>
3489 * set interface state GigabitEthernet0/8/0 up
3490 * set interface state GigabitEthernet0/9/0 up
3491 * @cliend
3492 * Example of how to execute a set of CLI commands from a file:
3493 * @cliexcmd{exec /usr/share/vpp/scripts/gigup.txt}
Chris Luke54ccf222016-07-25 16:38:11 -04003494?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003495/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003496VLIB_CLI_COMMAND (cli_exec, static) = {
3497 .path = "exec",
Billy McFall28cf3b72018-01-15 17:54:52 -05003498 .short_help = "exec <filename>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003499 .function = unix_cli_exec,
Dave Barachb2ef4dd2016-03-23 08:56:01 -04003500 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003501};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003502/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003503
Chris Lukeb5850972016-05-03 16:34:59 -04003504/** CLI command to show various unix error statistics. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003505static clib_error_t *
3506unix_show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003507 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003508{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003509 unix_main_t *um = &unix_main;
3510 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003511 int i, n_errors_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003512 unix_error_history_t *unix_errors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003513
3514 n_errors_to_show = 1 << 30;
3515
3516 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3517 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003518 if (!unformat (input, "%d", &n_errors_to_show))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003519 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003520 error =
3521 clib_error_return (0,
3522 "expecting integer number of errors to show, got `%U'",
3523 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003524 goto done;
3525 }
3526 }
3527
Dave Barach9b8ffd92016-07-08 08:13:45 -04003528 n_errors_to_show =
3529 clib_min (ARRAY_LEN (um->error_history), n_errors_to_show);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003530
Dave Barach9b8ffd92016-07-08 08:13:45 -04003531 i =
3532 um->error_history_index >
3533 0 ? um->error_history_index - 1 : ARRAY_LEN (um->error_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003534
3535 while (n_errors_to_show > 0)
3536 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003537 unix_error_history_t *eh = um->error_history + i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003538
Dave Barach9b8ffd92016-07-08 08:13:45 -04003539 if (!eh->error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003540 break;
3541
3542 vec_add1 (unix_errors, eh[0]);
3543 n_errors_to_show -= 1;
3544 if (i == 0)
3545 i = ARRAY_LEN (um->error_history) - 1;
3546 else
3547 i--;
3548 }
3549
3550 if (vec_len (unix_errors) == 0)
3551 vlib_cli_output (vm, "no Unix errors so far");
3552 else
3553 {
3554 vlib_cli_output (vm, "%Ld total errors seen", um->n_total_errors);
3555 for (i = vec_len (unix_errors) - 1; i >= 0; i--)
3556 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003557 unix_error_history_t *eh = vec_elt_at_index (unix_errors, i);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003558 vlib_cli_output (vm, "%U: %U",
3559 format_time_interval, "h:m:s:u", eh->time,
3560 format_clib_error, eh->error);
3561 }
3562 vlib_cli_output (vm, "%U: time now",
3563 format_time_interval, "h:m:s:u", vlib_time_now (vm));
3564 }
3565
Dave Barach9b8ffd92016-07-08 08:13:45 -04003566done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003567 vec_free (unix_errors);
3568 return error;
3569}
3570
Dave Barach9b8ffd92016-07-08 08:13:45 -04003571/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003572VLIB_CLI_COMMAND (cli_unix_show_errors, static) = {
Damjan Marionceab7882018-01-19 20:56:12 +01003573 .path = "show unix errors",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003574 .short_help = "Show Unix system call error history",
3575 .function = unix_show_errors,
3576};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003577/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003578
Damjan Marionceab7882018-01-19 20:56:12 +01003579/** CLI command to show various unix error statistics. */
3580static clib_error_t *
3581unix_show_files (vlib_main_t * vm,
3582 unformat_input_t * input, vlib_cli_command_t * cmd)
3583{
3584 clib_error_t *error = 0;
3585 clib_file_main_t *fm = &file_main;
3586 clib_file_t *f;
3587 char path[PATH_MAX];
3588 u8 *s = 0;
3589
3590 vlib_cli_output (vm, "%3s %6s %12s %12s %12s %-32s %s", "FD", "Thread",
3591 "Read", "Write", "Error", "File Name", "Description");
3592
3593 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01003594 pool_foreach (f, fm->file_pool)
Damjan Marionceab7882018-01-19 20:56:12 +01003595 {
3596 int rv;
3597 s = format (s, "/proc/self/fd/%d%c", f->file_descriptor, 0);
3598 rv = readlink((char *) s, path, PATH_MAX - 1);
3599
3600 path[rv < 0 ? 0 : rv] = 0;
3601
3602 vlib_cli_output (vm, "%3d %6d %12d %12d %12d %-32s %v",
3603 f->file_descriptor, f->polling_thread_index,
3604 f->read_events, f->write_events, f->error_events,
3605 path, f->description);
3606 vec_reset_length (s);
Damjan Marionb2c31b62020-12-13 21:47:40 +01003607 }
Damjan Marionceab7882018-01-19 20:56:12 +01003608 /* *INDENT-ON* */
3609 vec_free (s);
3610
3611 return error;
3612}
3613
3614/* *INDENT-OFF* */
3615VLIB_CLI_COMMAND (cli_unix_show_files, static) = {
3616 .path = "show unix files",
3617 .short_help = "Show Unix files in use",
3618 .function = unix_show_files,
3619};
3620/* *INDENT-ON* */
3621
Chris Lukeb5850972016-05-03 16:34:59 -04003622/** CLI command to show session command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003623static clib_error_t *
Chris Luke6b90fe32016-04-25 13:49:15 -04003624unix_cli_show_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003625 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke6b90fe32016-04-25 13:49:15 -04003626{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003627 unix_cli_main_t *cm = &unix_cli_main;
3628 unix_cli_file_t *cf;
Chris Luke6b90fe32016-04-25 13:49:15 -04003629 int i, j;
3630
Benoît Gannea58be822020-05-11 16:27:29 +02003631 if (!(cf = unix_cli_file_if_interactive (cm)))
Chris Luke03add7f2017-09-20 23:31:24 -04003632 return clib_error_return (0, "invalid for non-interactive sessions");
3633
Chris Luke7afda3a2016-04-25 13:49:22 -04003634 if (cf->has_history && cf->history_limit)
Chris Luke6b90fe32016-04-25 13:49:15 -04003635 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003636 i = 1 + cf->command_number - vec_len (cf->command_history);
Chris Luke7afda3a2016-04-25 13:49:22 -04003637 for (j = 0; j < vec_len (cf->command_history); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003638 vlib_cli_output (vm, "%d %v\n", i + j, cf->command_history[j]);
Chris Luke7afda3a2016-04-25 13:49:22 -04003639 }
3640 else
3641 {
3642 vlib_cli_output (vm, "History not enabled.\n");
Chris Luke6b90fe32016-04-25 13:49:15 -04003643 }
3644
3645 return 0;
3646}
3647
Chris Luke54ccf222016-07-25 16:38:11 -04003648/*?
3649 * Displays the command history for the current session, if any.
3650?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003651/* *INDENT-OFF* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003652VLIB_CLI_COMMAND (cli_unix_cli_show_history, static) = {
3653 .path = "history",
3654 .short_help = "Show current session command history",
3655 .function = unix_cli_show_history,
3656};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003657/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003658
Chris Lukeb5850972016-05-03 16:34:59 -04003659/** CLI command to show terminal status. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003660static clib_error_t *
3661unix_cli_show_terminal (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003662 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003663{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003664 unix_main_t *um = &unix_main;
3665 unix_cli_main_t *cm = &unix_cli_main;
3666 unix_cli_file_t *cf;
3667 vlib_node_t *n;
Chris Luke7afda3a2016-04-25 13:49:22 -04003668
Benoît Ganne10a22a62020-05-15 16:12:23 +02003669 if (!(cf = unix_cli_file_if_exists (cm)))
3670 return clib_error_return (0, "invalid session");
Benoît Gannea58be822020-05-11 16:27:29 +02003671
Chris Luke7afda3a2016-04-25 13:49:22 -04003672 n = vlib_get_node (vm, cf->process_node_index);
3673
3674 vlib_cli_output (vm, "Terminal name: %v\n", n->name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003675 vlib_cli_output (vm, "Terminal mode: %s\n", cf->line_mode ?
3676 "line-by-line" : "char-by-char");
Chris Luke7afda3a2016-04-25 13:49:22 -04003677 vlib_cli_output (vm, "Terminal width: %d\n", cf->width);
3678 vlib_cli_output (vm, "Terminal height: %d\n", cf->height);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003679 vlib_cli_output (vm, "ANSI capable: %s\n",
3680 cf->ansi_capable ? "yes" : "no");
Chris Luke03add7f2017-09-20 23:31:24 -04003681 vlib_cli_output (vm, "Interactive: %s\n",
3682 cf->is_interactive ? "yes" : "no");
Chris Luke7afda3a2016-04-25 13:49:22 -04003683 vlib_cli_output (vm, "History enabled: %s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003684 cf->has_history ? "yes" : "no", !cf->has_history
3685 || cf->history_limit ? "" :
3686 " (disabled by history limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04003687 if (cf->has_history)
3688 vlib_cli_output (vm, "History limit: %d\n", cf->history_limit);
3689 vlib_cli_output (vm, "Pager enabled: %s%s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003690 cf->no_pager ? "no" : "yes",
3691 cf->no_pager
3692 || cf->height ? "" : " (disabled by terminal height)",
3693 cf->no_pager
3694 || um->cli_pager_buffer_limit ? "" :
3695 " (disabled by buffer limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04003696 if (!cf->no_pager)
3697 vlib_cli_output (vm, "Pager limit: %d\n", um->cli_pager_buffer_limit);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003698 vlib_cli_output (vm, "CRLF mode: %s\n",
3699 cf->crlf_mode ? "CR+LF" : "LF");
Chris Luke7afda3a2016-04-25 13:49:22 -04003700
3701 return 0;
3702}
3703
Chris Luke54ccf222016-07-25 16:38:11 -04003704/*?
3705 * Displays various information about the state of the current terminal
3706 * session.
3707 *
3708 * @cliexpar
3709 * @cliexstart{show terminal}
3710 * Terminal name: unix-cli-stdin
3711 * Terminal mode: char-by-char
3712 * Terminal width: 123
3713 * Terminal height: 48
3714 * ANSI capable: yes
Chris Luke03add7f2017-09-20 23:31:24 -04003715 * Interactive: yes
Chris Luke54ccf222016-07-25 16:38:11 -04003716 * History enabled: yes
3717 * History limit: 50
3718 * Pager enabled: yes
3719 * Pager limit: 100000
3720 * CRLF mode: LF
3721 * @cliexend
3722?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003723/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003724VLIB_CLI_COMMAND (cli_unix_cli_show_terminal, static) = {
3725 .path = "show terminal",
3726 .short_help = "Show current session terminal settings",
3727 .function = unix_cli_show_terminal,
3728};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003729/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003730
Chris Luke03add7f2017-09-20 23:31:24 -04003731/** CLI command to display a list of CLI sessions. */
3732static clib_error_t *
3733unix_cli_show_cli_sessions (vlib_main_t * vm,
3734 unformat_input_t * input,
3735 vlib_cli_command_t * cmd)
3736{
Chris Luke03add7f2017-09-20 23:31:24 -04003737 unix_cli_main_t *cm = &unix_cli_main;
3738 clib_file_main_t *fm = &file_main;
3739 unix_cli_file_t *cf;
3740 clib_file_t *uf;
3741 vlib_node_t *n;
3742
3743 vlib_cli_output (vm, "%-5s %-5s %-20s %s", "PNI", "FD", "Name", "Flags");
3744
3745#define fl(x, y) ( (x) ? toupper((y)) : tolower((y)) )
3746 /* *INDENT-OFF* */
Damjan Marionb2c31b62020-12-13 21:47:40 +01003747 pool_foreach (cf, cm->cli_file_pool) {
Chris Luke03add7f2017-09-20 23:31:24 -04003748 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
3749 n = vlib_get_node (vm, cf->process_node_index);
3750 vlib_cli_output (vm,
3751 "%-5d %-5d %-20v %c%c%c%c%c\n",
3752 cf->process_node_index,
3753 uf->file_descriptor,
3754 n->name,
3755 fl (cf->is_interactive, 'i'),
3756 fl (cf->is_socket, 's'),
3757 fl (cf->line_mode, 'l'),
3758 fl (cf->has_epipe, 'p'),
3759 fl (cf->ansi_capable, 'a'));
Damjan Marionb2c31b62020-12-13 21:47:40 +01003760 }
Chris Luke03add7f2017-09-20 23:31:24 -04003761 /* *INDENT-ON* */
3762#undef fl
3763
3764 return 0;
3765}
3766
3767/*?
3768 * Displays a summary of all the current CLI sessions.
3769 *
3770 * Typically used to diagnose connection issues with the CLI
3771 * socket.
3772 *
3773 * @cliexpar
3774 * @cliexstart{show cli-sessions}
3775 * PNI FD Name Flags
3776 * 343 0 unix-cli-stdin IslpA
3777 * 344 7 unix-cli-local:20 ISlpA
3778 * 346 8 unix-cli-local:21 iSLpa
3779 * @cliexend
3780
3781 * In this example we have the debug console of the running process
3782 * on stdin/out, we have an interactive socket session and we also
3783 * have a non-interactive socket session.
3784 *
3785 * Fields:
3786 *
3787 * - @em PNI: Process node index.
3788 * - @em FD: Unix file descriptor.
3789 * - @em Name: Name of the session.
3790 * - @em Flags: Various flags that describe the state of the session.
3791 *
3792 * @em Flags have the following meanings; lower-case typically negates
3793 * upper-case:
3794 *
3795 * - @em I Interactive session.
3796 * - @em S Connected by socket.
3797 * - @em s Not a socket, likely stdin.
3798 * - @em L Line-by-line mode.
3799 * - @em l Char-by-char mode.
3800 * - @em P EPIPE detected on connection; it will close soon.
3801 * - @em A ANSI-capable terminal.
3802?*/
3803/* *INDENT-OFF* */
3804VLIB_CLI_COMMAND (cli_unix_cli_show_cli_sessions, static) = {
3805 .path = "show cli-sessions",
3806 .short_help = "Show current CLI sessions",
3807 .function = unix_cli_show_cli_sessions,
3808};
3809/* *INDENT-ON* */
3810
Chris Lukeb5850972016-05-03 16:34:59 -04003811/** CLI command to set terminal pager settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003812static clib_error_t *
3813unix_cli_set_terminal_pager (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003814 unformat_input_t * input,
3815 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003816{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003817 unix_main_t *um = &unix_main;
3818 unix_cli_main_t *cm = &unix_cli_main;
3819 unix_cli_file_t *cf;
3820 unformat_input_t _line_input, *line_input = &_line_input;
Billy McFalla9a20e72017-02-15 11:39:12 -05003821 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003822
Benoît Gannea58be822020-05-11 16:27:29 +02003823 if (!(cf = unix_cli_file_if_interactive (cm)))
Chris Luke03add7f2017-09-20 23:31:24 -04003824 return clib_error_return (0, "invalid for non-interactive sessions");
3825
Dave Barach9b8ffd92016-07-08 08:13:45 -04003826 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003827 return 0;
3828
Chris Luke7afda3a2016-04-25 13:49:22 -04003829 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3830 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003831 if (unformat (line_input, "on"))
3832 cf->no_pager = 0;
3833 else if (unformat (line_input, "off"))
3834 cf->no_pager = 1;
3835 else if (unformat (line_input, "limit %u", &um->cli_pager_buffer_limit))
3836 vlib_cli_output (vm,
3837 "Pager limit set to %u lines; note, this is global.\n",
3838 um->cli_pager_buffer_limit);
3839 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003840 {
3841 error = clib_error_return (0, "unknown parameter: `%U`",
3842 format_unformat_error, line_input);
3843 goto done;
3844 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003845 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003846
Billy McFalla9a20e72017-02-15 11:39:12 -05003847done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003848 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003849
Billy McFalla9a20e72017-02-15 11:39:12 -05003850 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003851}
3852
Chris Luke54ccf222016-07-25 16:38:11 -04003853/*?
3854 * Enables or disables the terminal pager for this session. Generally
3855 * this defaults to enabled.
3856 *
3857 * Additionally allows the pager buffer size to be set; though note that
3858 * this value is set globally and not per session.
3859?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003860/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003861VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_pager, static) = {
3862 .path = "set terminal pager",
3863 .short_help = "set terminal pager [on|off] [limit <lines>]",
3864 .function = unix_cli_set_terminal_pager,
3865};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003866/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003867
Chris Lukeb5850972016-05-03 16:34:59 -04003868/** CLI command to set terminal history settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003869static clib_error_t *
3870unix_cli_set_terminal_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003871 unformat_input_t * input,
3872 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003873{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003874 unix_cli_main_t *cm = &unix_cli_main;
3875 unix_cli_file_t *cf;
3876 unformat_input_t _line_input, *line_input = &_line_input;
Chris Luke7afda3a2016-04-25 13:49:22 -04003877 u32 limit;
Billy McFalla9a20e72017-02-15 11:39:12 -05003878 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003879
Benoît Gannea58be822020-05-11 16:27:29 +02003880 if (!(cf = unix_cli_file_if_interactive (cm)))
Chris Luke03add7f2017-09-20 23:31:24 -04003881 return clib_error_return (0, "invalid for non-interactive sessions");
3882
Dave Barach9b8ffd92016-07-08 08:13:45 -04003883 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003884 return 0;
3885
Chris Luke7afda3a2016-04-25 13:49:22 -04003886 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3887 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003888 if (unformat (line_input, "on"))
3889 cf->has_history = 1;
3890 else if (unformat (line_input, "off"))
3891 cf->has_history = 0;
3892 else if (unformat (line_input, "limit %u", &cf->history_limit))
3893 ;
3894 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003895 {
3896 error = clib_error_return (0, "unknown parameter: `%U`",
3897 format_unformat_error, line_input);
3898 goto done;
3899 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003900
Chris Luke5022c6c2019-05-17 10:17:16 -04003901 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003902
Chris Luke5022c6c2019-05-17 10:17:16 -04003903 /* If we reduced history size, or turned it off, purge the history */
3904 limit = cf->has_history ? cf->history_limit : 0;
3905 if (limit < vec_len (cf->command_history))
3906 {
3907 u32 i;
3908
3909 /* How many items to remove from the start of history */
3910 limit = vec_len (cf->command_history) - limit;
3911
3912 for (i = 0; i < limit; i++)
3913 vec_free (cf->command_history[i]);
3914
3915 vec_delete (cf->command_history, limit, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003916 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003917
Billy McFalla9a20e72017-02-15 11:39:12 -05003918done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003919 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003920
Billy McFalla9a20e72017-02-15 11:39:12 -05003921 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003922}
3923
Chris Luke54ccf222016-07-25 16:38:11 -04003924/*?
3925 * Enables or disables the command history function of the current
3926 * terminal. Generally this defaults to enabled.
3927 *
3928 * This command also allows the maximum size of the history buffer for
3929 * this session to be altered.
3930?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003931/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003932VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_history, static) = {
3933 .path = "set terminal history",
3934 .short_help = "set terminal history [on|off] [limit <lines>]",
3935 .function = unix_cli_set_terminal_history,
3936};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003937/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003938
Chris Lukeb5850972016-05-03 16:34:59 -04003939/** CLI command to set terminal ANSI settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003940static clib_error_t *
3941unix_cli_set_terminal_ansi (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003942 unformat_input_t * input,
3943 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003944{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003945 unix_cli_main_t *cm = &unix_cli_main;
3946 unix_cli_file_t *cf;
Chris Luke7afda3a2016-04-25 13:49:22 -04003947
Benoît Gannea58be822020-05-11 16:27:29 +02003948 if (!(cf = unix_cli_file_if_interactive (cm)))
Chris Luke03add7f2017-09-20 23:31:24 -04003949 return clib_error_return (0, "invalid for non-interactive sessions");
3950
Chris Luke7afda3a2016-04-25 13:49:22 -04003951 if (unformat (input, "on"))
3952 cf->ansi_capable = 1;
3953 else if (unformat (input, "off"))
3954 cf->ansi_capable = 0;
3955 else
3956 return clib_error_return (0, "unknown parameter: `%U`",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003957 format_unformat_error, input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003958
3959 return 0;
3960}
3961
Chris Luke54ccf222016-07-25 16:38:11 -04003962/*?
3963 * Enables or disables the use of ANSI control sequences by this terminal.
3964 * The default will vary based on terminal detection at the start of the
3965 * session.
3966 *
3967 * ANSI control sequences are used in a small number of places to provide,
3968 * for example, color text output and to control the cursor in the pager.
3969?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003970/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003971VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_ansi, static) = {
3972 .path = "set terminal ansi",
3973 .short_help = "set terminal ansi [on|off]",
3974 .function = unix_cli_set_terminal_ansi,
3975};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003976/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003977
Paul Vinciguerrabfd7d292019-10-26 22:25:49 -04003978
3979#define MAX_CLI_WAIT 86400
3980/** CLI command to wait <sec> seconds. Useful for exec script. */
3981static clib_error_t *
3982unix_wait_cmd (vlib_main_t * vm,
3983 unformat_input_t * input, vlib_cli_command_t * cmd)
3984{
3985 unformat_input_t _line_input, *line_input = &_line_input;
3986 f64 sec = 1.0;
3987
3988 if (!unformat_user (input, unformat_line_input, line_input))
3989 return 0;
3990
3991 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3992 {
3993 if (unformat (line_input, "%f", &sec))
3994 ;
3995 else
3996 return clib_error_return (0, "unknown parameter: `%U`",
3997 format_unformat_error, input);
3998 }
3999
4000 if (sec <= 0 || sec > MAX_CLI_WAIT || floor (sec * 1000) / 1000 != sec)
4001 return clib_error_return (0,
4002 "<sec> must be a positive value and less than 86400 (one day) with no more than msec precision.");
4003
4004 vlib_process_wait_for_event_or_clock (vm, sec);
4005 vlib_cli_output (vm, "waited %.3f sec.", sec);
4006
4007 unformat_free (line_input);
4008 return 0;
4009}
4010/* *INDENT-OFF* */
4011VLIB_CLI_COMMAND (cli_unix_wait_cmd, static) = {
4012 .path = "wait",
4013 .short_help = "wait <sec>",
4014 .function = unix_wait_cmd,
4015};
4016/* *INDENT-ON* */
4017
Chris Luke6b90fe32016-04-25 13:49:15 -04004018static clib_error_t *
Dave Barach961e3c82020-06-18 17:04:18 -04004019echo_cmd (vlib_main_t * vm,
4020 unformat_input_t * input, vlib_cli_command_t * cmd)
4021{
4022 unformat_input_t _line_input, *line_input = &_line_input;
4023
4024 /* Get a line of input. */
4025 if (!unformat_user (input, unformat_line_input, line_input))
4026 {
4027 vlib_cli_output (vm, "");
4028 return 0;
4029 }
4030
4031 vlib_cli_output (vm, "%v", line_input->buffer);
4032
4033 unformat_free (line_input);
4034 return 0;
4035}
4036
4037/* *INDENT-OFF* */
4038VLIB_CLI_COMMAND (cli_unix_echo_cmd, static) = {
4039 .path = "echo",
4040 .short_help = "echo <rest-of-line>",
4041 .function = echo_cmd,
4042};
4043/* *INDENT-ON* */
4044
4045static clib_error_t *
4046define_cmd_fn (vlib_main_t * vm,
4047 unformat_input_t * input, vlib_cli_command_t * cmd)
4048{
4049 u8 *macro_name;
4050 unformat_input_t _line_input, *line_input = &_line_input;
Dave Barachb30b9542020-06-22 10:02:25 -04004051 clib_macro_main_t *mm = get_macro_main ();
Dave Barach961e3c82020-06-18 17:04:18 -04004052 clib_error_t *error;
4053
4054 if (!unformat (input, "%s", &macro_name))
4055 return clib_error_return (0, "missing variable name...");
4056
4057 /* Remove white space */
4058 (void) unformat (input, "");
4059
4060 /* Get a line of input. */
4061 if (!unformat_user (input, unformat_line_input, line_input))
4062 {
4063 error = clib_error_return (0, "missing value for '%s'...", macro_name);
4064 vec_free (macro_name);
4065 return error;
4066 }
4067 /* the macro expander expects c-strings, not vectors... */
4068 vec_add1 (line_input->buffer, 0);
Dave Barachb30b9542020-06-22 10:02:25 -04004069 clib_macro_set_value (mm, (char *) macro_name, (char *) line_input->buffer);
Dave Barach961e3c82020-06-18 17:04:18 -04004070 vec_free (macro_name);
4071 unformat_free (line_input);
4072 return 0;
4073}
4074
4075/* *INDENT-OFF* */
4076VLIB_CLI_COMMAND (define_cmd, static) = {
4077 .path = "define",
4078 .short_help = "define <variable-name> <value>",
4079 .function = define_cmd_fn,
4080};
4081
4082/* *INDENT-ON* */
4083
4084static clib_error_t *
4085undefine_cmd_fn (vlib_main_t * vm,
4086 unformat_input_t * input, vlib_cli_command_t * cmd)
4087{
4088 u8 *macro_name;
Dave Barachb30b9542020-06-22 10:02:25 -04004089 clib_macro_main_t *mm = get_macro_main ();
Dave Barach961e3c82020-06-18 17:04:18 -04004090
4091 if (!unformat (input, "%s", &macro_name))
4092 return clib_error_return (0, "missing variable name...");
4093
Dave Barachb30b9542020-06-22 10:02:25 -04004094 if (clib_macro_unset (mm, (char *) macro_name))
Dave Barach961e3c82020-06-18 17:04:18 -04004095 vlib_cli_output (vm, "%s wasn't set...", macro_name);
4096
4097 vec_free (macro_name);
4098 return 0;
4099}
4100
4101/* *INDENT-OFF* */
4102VLIB_CLI_COMMAND (undefine_cmd, static) = {
4103 .path = "undefine",
4104 .short_help = "undefine <variable-name>",
4105 .function = undefine_cmd_fn,
4106};
4107/* *INDENT-ON* */
4108
4109static clib_error_t *
4110show_macro_cmd_fn (vlib_main_t * vm,
4111 unformat_input_t * input, vlib_cli_command_t * cmd)
4112{
Dave Barachb30b9542020-06-22 10:02:25 -04004113 clib_macro_main_t *mm = get_macro_main ();
Dave Barach961e3c82020-06-18 17:04:18 -04004114 int evaluate = 1;
4115
4116 if (unformat (input, "noevaluate %=", &evaluate, 0))
4117 ;
4118 else if (unformat (input, "noeval %=", &evaluate, 0))
4119 ;
4120
Dave Barachb30b9542020-06-22 10:02:25 -04004121 vlib_cli_output (vm, "%U", format_clib_macro_main, mm, evaluate);
Dave Barach961e3c82020-06-18 17:04:18 -04004122 return 0;
4123}
4124
4125/* *INDENT-OFF* */
4126VLIB_CLI_COMMAND (show_macro, static) = {
4127 .path = "show macro",
4128 .short_help = "show macro [noevaluate]",
4129 .function = show_macro_cmd_fn,
4130};
4131/* *INDENT-ON* */
4132
4133static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07004134unix_cli_init (vlib_main_t * vm)
4135{
Chris Luke6a3a4f72019-07-09 23:33:30 -04004136 unix_cli_main_t *cm = &unix_cli_main;
4137
4138 /* Breadcrumb to indicate the new session process
4139 * has not been started */
4140 cm->new_session_process_node_index = ~0;
Dave Barach961e3c82020-06-18 17:04:18 -04004141 clib_macro_init (&cm->macro_main);
Dave Barachb30b9542020-06-22 10:02:25 -04004142
Ed Warnickecb9cada2015-12-08 15:45:58 -07004143 return 0;
4144}
4145
4146VLIB_INIT_FUNCTION (unix_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04004147
4148/*
4149 * fd.io coding-style-patch-verification: ON
4150 *
4151 * Local Variables:
4152 * eval: (c-set-style "gnu")
4153 * End:
4154 */