blob: 640d5bc69c35a181e6852fc93885ecc57efbc32a [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>
Ed Warnickecb9cada2015-12-08 15:45:58 -070064
Chris Lukeb5850972016-05-03 16:34:59 -040065/** ANSI escape code. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040066#define ESC "\x1b"
67
Chris Lukeb5850972016-05-03 16:34:59 -040068/** ANSI Control Sequence Introducer. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040069#define CSI ESC "["
70
Chris Lukeb5850972016-05-03 16:34:59 -040071/** ANSI clear screen. */
Chris Luke7afda3a2016-04-25 13:49:22 -040072#define ANSI_CLEAR CSI "2J" CSI "1;1H"
Chris Lukeb5850972016-05-03 16:34:59 -040073/** ANSI reset color settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -040074#define ANSI_RESET CSI "0m"
Chris Lukeb5850972016-05-03 16:34:59 -040075/** ANSI Start bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040076#define ANSI_BOLD CSI "1m"
Chris Lukeb5850972016-05-03 16:34:59 -040077/** ANSI Stop bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040078#define ANSI_DIM CSI "2m"
Chris Lukeb5850972016-05-03 16:34:59 -040079/** ANSI Start dark red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040080#define ANSI_DRED ANSI_DIM CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040081/** ANSI Start bright red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040082#define ANSI_BRED ANSI_BOLD CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040083/** ANSI clear line cursor is on. */
Chris Luke7afda3a2016-04-25 13:49:22 -040084#define ANSI_CLEARLINE CSI "2K"
Chris Lukeb5850972016-05-03 16:34:59 -040085/** ANSI scroll screen down one line. */
Chris Luke7afda3a2016-04-25 13:49:22 -040086#define ANSI_SCROLLDN CSI "1T"
Chris Lukeb5850972016-05-03 16:34:59 -040087/** ANSI save cursor position. */
Chris Luke7afda3a2016-04-25 13:49:22 -040088#define ANSI_SAVECURSOR CSI "s"
Chris Lukeb5850972016-05-03 16:34:59 -040089/** ANSI restore cursor position if previously saved. */
Chris Luke7afda3a2016-04-25 13:49:22 -040090#define ANSI_RESTCURSOR CSI "u"
Chris Luke0aca5eb2016-04-25 13:48:54 -040091
92/** Maximum depth into a byte stream from which to compile a Telnet
Chris Luke2d8bf302017-11-12 22:26:37 -050093 * protocol message. This is a safety measure. */
Chris Luke1aed76f2016-04-29 08:14:38 -040094#define UNIX_CLI_MAX_DEPTH_TELNET 24
Chris Luke0aca5eb2016-04-25 13:48:54 -040095
Chris Lukeb2bcad62017-09-18 08:51:22 -040096/** Maximum terminal width we will accept */
97#define UNIX_CLI_MAX_TERMINAL_WIDTH 512
Chris Lukeb2bcad62017-09-18 08:51:22 -040098/** Maximum terminal height we will accept */
99#define UNIX_CLI_MAX_TERMINAL_HEIGHT 512
Chris Luke2d8bf302017-11-12 22:26:37 -0500100/** Default terminal height */
101#define UNIX_CLI_DEFAULT_TERMINAL_HEIGHT 24
102/** Default terminal width */
103#define UNIX_CLI_DEFAULT_TERMINAL_WIDTH 80
Chris Luke0aca5eb2016-04-25 13:48:54 -0400104
Chris Lukeb5850972016-05-03 16:34:59 -0400105/** A CLI banner line. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400106typedef struct
107{
108 u8 *line; /**< The line to print. */
109 u32 length; /**< The length of the line without terminating NUL. */
Chris Luke572d8122016-04-25 13:49:07 -0400110} unix_cli_banner_t;
111
112#define _(a) { .line = (u8 *)(a), .length = sizeof(a) - 1 }
113/** Plain welcome banner. */
114static unix_cli_banner_t unix_cli_banner[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400115 _(" _______ _ _ _____ ___ \n"),
116 _(" __/ __/ _ \\ (_)__ | | / / _ \\/ _ \\\n"),
117 _(" _/ _// // / / / _ \\ | |/ / ___/ ___/\n"),
118 _(" /_/ /____(_)_/\\___/ |___/_/ /_/ \n"),
119 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400120};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400121
Chris Luke572d8122016-04-25 13:49:07 -0400122/** ANSI color welcome banner. */
123static unix_cli_banner_t unix_cli_banner_color[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400124 _(ANSI_BRED " _______ _ " ANSI_RESET " _ _____ ___ \n"),
125 _(ANSI_BRED " __/ __/ _ \\ (_)__ " ANSI_RESET " | | / / _ \\/ _ \\\n"),
126 _(ANSI_BRED " _/ _// // / / / _ \\" ANSI_RESET " | |/ / ___/ ___/\n"),
127 _(ANSI_BRED " /_/ /____(_)_/\\___/" ANSI_RESET " |___/_/ /_/ \n"),
128 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400129};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400130
Chris Luke572d8122016-04-25 13:49:07 -0400131#undef _
132
Chris Luke862623d2016-05-14 10:13:34 -0400133/** Pager line index */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400134typedef struct
135{
Chris Luke862623d2016-05-14 10:13:34 -0400136 /** Index into pager_vector */
137 u32 line;
138
139 /** Offset of the string in the line */
140 u32 offset;
141
142 /** Length of the string in the line */
143 u32 length;
144} unix_cli_pager_index_t;
145
Chris Luke572d8122016-04-25 13:49:07 -0400146
Chris Luke0aca5eb2016-04-25 13:48:54 -0400147/** Unix CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400148typedef struct
149{
Chris Lukeb5850972016-05-03 16:34:59 -0400150 /** The file index held by unix.c */
Damjan Marion56dd5432017-09-08 19:52:02 +0200151 u32 clib_file_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
Chris Lukeb5850972016-05-03 16:34:59 -0400153 /** Vector of output pending write to file descriptor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400154 u8 *output_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155
Chris Lukeb5850972016-05-03 16:34:59 -0400156 /** Vector of input saved by Unix input node to be processed by
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157 CLI process. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400158 u8 *input_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159
Chris Luke54ccf222016-07-25 16:38:11 -0400160 /** This session has command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 u8 has_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400162 /** Array of vectors of commands in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400163 u8 **command_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400164 /** The command currently pointed at by the history cursor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165 u8 *current_command;
Chris Luke54ccf222016-07-25 16:38:11 -0400166 /** How far from the end of the history array the user has browsed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167 i32 excursion;
Chris Luke6b90fe32016-04-25 13:49:15 -0400168
Chris Lukeb5850972016-05-03 16:34:59 -0400169 /** Maximum number of history entries this session will store. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700170 u32 history_limit;
Chris Luke6b90fe32016-04-25 13:49:15 -0400171
Chris Lukeb5850972016-05-03 16:34:59 -0400172 /** Current command line counter */
Chris Luke6b90fe32016-04-25 13:49:15 -0400173 u32 command_number;
174
Chris Luke54ccf222016-07-25 16:38:11 -0400175 /** The string being searched for in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400176 u8 *search_key;
Chris Luke54ccf222016-07-25 16:38:11 -0400177 /** If non-zero then the CLI is searching in the history array.
178 * - @c -1 means search backwards.
179 * - @c 1 means search forwards.
180 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181 int search_mode;
182
Chris Lukeb5850972016-05-03 16:34:59 -0400183 /** Position of the insert cursor on the current input line */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400184 u32 cursor;
185
Chris Lukeb5850972016-05-03 16:34:59 -0400186 /** Line mode or char mode */
Chris Luke7afda3a2016-04-25 13:49:22 -0400187 u8 line_mode;
188
Chris Lukeb5850972016-05-03 16:34:59 -0400189 /** Set if the CRLF mode wants CR + LF */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400190 u8 crlf_mode;
191
Chris Lukeb5850972016-05-03 16:34:59 -0400192 /** Can we do ANSI output? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400193 u8 ansi_capable;
194
Chris Lukeb5850972016-05-03 16:34:59 -0400195 /** Has the session started? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400196 u8 started;
197
Chris Lukeb5850972016-05-03 16:34:59 -0400198 /** Disable the pager? */
Chris Luke7afda3a2016-04-25 13:49:22 -0400199 u8 no_pager;
200
Chris Luke03add7f2017-09-20 23:31:24 -0400201 /** Whether the session is interactive or not.
202 * Controls things like initial banner, the CLI prompt etc. */
203 u8 is_interactive;
204
205 /** Whether the session is attached to a socket. */
206 u8 is_socket;
207
208 /** If EPIPE has been detected, prevent further write-related
209 * activity on the descriptor.
210 */
211 u8 has_epipe;
212
Chris Lukeb5850972016-05-03 16:34:59 -0400213 /** Pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400214 u8 **pager_vector;
Chris Luke7afda3a2016-04-25 13:49:22 -0400215
Chris Luke862623d2016-05-14 10:13:34 -0400216 /** Index of line fragments in the pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400217 unix_cli_pager_index_t *pager_index;
Chris Luke7afda3a2016-04-25 13:49:22 -0400218
Chris Lukeb5850972016-05-03 16:34:59 -0400219 /** Line number of top of page */
Chris Luke7afda3a2016-04-25 13:49:22 -0400220 u32 pager_start;
221
Chris Lukeb5850972016-05-03 16:34:59 -0400222 /** Terminal width */
223 u32 width;
Chris Luke7afda3a2016-04-25 13:49:22 -0400224
Chris Lukeb5850972016-05-03 16:34:59 -0400225 /** Terminal height */
226 u32 height;
227
228 /** Process node identifier */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229 u32 process_node_index;
Chris Lukefc379d22018-06-05 23:50:19 -0400230
231 /** The current direction of cursor travel.
232 * This is important since when advancing left-to-right, at the
233 * right hand edge of the console the terminal typically defers
234 * wrapping the cursor to the next line until a character is
235 * actually displayed.
236 * This messes up our heuristic for whether to use ANSI to return
237 * the cursor to the end of the line and instead we have to
238 * nudge the cursor to the next line.
239 * A Value of @c 0 means we're advancing left-to-right; @c 1 means
240 * the opposite.
241 */
242 u8 cursor_direction;
243
Ed Warnickecb9cada2015-12-08 15:45:58 -0700244} unix_cli_file_t;
245
Chris Lukeb5850972016-05-03 16:34:59 -0400246/** Resets the pager buffer and other data.
247 * @param f The CLI session whose pager needs to be reset.
248 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700249always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400250unix_cli_pager_reset (unix_cli_file_t * f)
Chris Luke7afda3a2016-04-25 13:49:22 -0400251{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400252 u8 **p;
Chris Luke7afda3a2016-04-25 13:49:22 -0400253
Chris Luke862623d2016-05-14 10:13:34 -0400254 f->pager_start = 0;
255
256 vec_free (f->pager_index);
257 f->pager_index = 0;
258
Chris Luke7afda3a2016-04-25 13:49:22 -0400259 vec_foreach (p, f->pager_vector)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400260 {
261 vec_free (*p);
262 }
Chris Luke862623d2016-05-14 10:13:34 -0400263 vec_free (f->pager_vector);
Chris Luke7afda3a2016-04-25 13:49:22 -0400264 f->pager_vector = 0;
265}
266
Chris Lukeb5850972016-05-03 16:34:59 -0400267/** Release storage used by a CLI session.
268 * @param f The CLI session whose storage needs to be released.
269 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400270always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700271unix_cli_file_free (unix_cli_file_t * f)
272{
273 vec_free (f->output_vector);
274 vec_free (f->input_vector);
Chris Luke862623d2016-05-14 10:13:34 -0400275 unix_cli_pager_reset (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700276}
277
Chris Lukeb5850972016-05-03 16:34:59 -0400278/** CLI actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400279typedef enum
280{
Chris Luke54ccf222016-07-25 16:38:11 -0400281 UNIX_CLI_PARSE_ACTION_NOACTION = 0, /**< No action */
282 UNIX_CLI_PARSE_ACTION_CRLF, /**< Carriage return, newline or enter */
283 UNIX_CLI_PARSE_ACTION_TAB, /**< Tab key */
284 UNIX_CLI_PARSE_ACTION_ERASE, /**< Erase cursor left */
285 UNIX_CLI_PARSE_ACTION_ERASERIGHT, /**< Erase cursor right */
286 UNIX_CLI_PARSE_ACTION_UP, /**< Up arrow */
287 UNIX_CLI_PARSE_ACTION_DOWN, /**< Down arrow */
288 UNIX_CLI_PARSE_ACTION_LEFT, /**< Left arrow */
289 UNIX_CLI_PARSE_ACTION_RIGHT, /**< Right arrow */
290 UNIX_CLI_PARSE_ACTION_HOME, /**< Home key (jump to start of line) */
291 UNIX_CLI_PARSE_ACTION_END, /**< End key (jump to end of line) */
292 UNIX_CLI_PARSE_ACTION_WORDLEFT, /**< Jump cursor to start of left word */
293 UNIX_CLI_PARSE_ACTION_WORDRIGHT, /**< Jump cursor to start of right word */
294 UNIX_CLI_PARSE_ACTION_ERASELINELEFT, /**< Erase line to left of cursor */
295 UNIX_CLI_PARSE_ACTION_ERASELINERIGHT, /**< Erase line to right & including cursor */
Hiroki Shirokura67e4df12019-08-16 11:30:34 +0000296 UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT, /**< Erase word left */
Chris Luke54ccf222016-07-25 16:38:11 -0400297 UNIX_CLI_PARSE_ACTION_CLEAR, /**< Clear the terminal */
298 UNIX_CLI_PARSE_ACTION_REVSEARCH, /**< Search backwards in command history */
299 UNIX_CLI_PARSE_ACTION_FWDSEARCH, /**< Search forwards in command history */
300 UNIX_CLI_PARSE_ACTION_YANK, /**< Undo last erase action */
301 UNIX_CLI_PARSE_ACTION_TELNETIAC, /**< Telnet control code */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400302
Chris Luke54ccf222016-07-25 16:38:11 -0400303 UNIX_CLI_PARSE_ACTION_PAGER_CRLF, /**< Enter pressed (CR, CRLF, LF, etc) */
304 UNIX_CLI_PARSE_ACTION_PAGER_QUIT, /**< Exit the pager session */
305 UNIX_CLI_PARSE_ACTION_PAGER_NEXT, /**< Scroll to next page */
306 UNIX_CLI_PARSE_ACTION_PAGER_DN, /**< Scroll to next line */
307 UNIX_CLI_PARSE_ACTION_PAGER_UP, /**< Scroll to previous line */
308 UNIX_CLI_PARSE_ACTION_PAGER_TOP, /**< Scroll to first line */
309 UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM, /**< Scroll to last line */
310 UNIX_CLI_PARSE_ACTION_PAGER_PGDN, /**< Scroll to next page */
311 UNIX_CLI_PARSE_ACTION_PAGER_PGUP, /**< Scroll to previous page */
312 UNIX_CLI_PARSE_ACTION_PAGER_REDRAW, /**< Clear and redraw the page on the terminal */
313 UNIX_CLI_PARSE_ACTION_PAGER_SEARCH, /**< Search the pager buffer */
Chris Luke7afda3a2016-04-25 13:49:22 -0400314
Chris Luke54ccf222016-07-25 16:38:11 -0400315 UNIX_CLI_PARSE_ACTION_PARTIALMATCH, /**< Action parser found a partial match */
316 UNIX_CLI_PARSE_ACTION_NOMATCH /**< Action parser did not find any match */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400317} unix_cli_parse_action_t;
318
Chris Luke8e5b0412016-07-26 13:06:10 -0400319/** @brief Mapping of input buffer strings to action values.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400320 * @note This won't work as a hash since we need to be able to do
321 * partial matches on the string.
322 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400323typedef struct
324{
325 u8 *input; /**< Input string to match. */
326 u32 len; /**< Length of input without final NUL. */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400327 unix_cli_parse_action_t action; /**< Action to take when matched. */
328} unix_cli_parse_actions_t;
329
Chris Lukeb5850972016-05-03 16:34:59 -0400330/** @brief Given a capital ASCII letter character return a @c NUL terminated
Chris Luke0aca5eb2016-04-25 13:48:54 -0400331 * string with the control code for that letter.
Chris Lukeb5850972016-05-03 16:34:59 -0400332 *
333 * @param c An ASCII character.
334 * @return A @c NUL terminated string of type @c u8[].
335 *
336 * @par Example
337 * @c CTL('A') returns <code>{ 0x01, 0x00 }</code> as a @c u8[].
Chris Luke0aca5eb2016-04-25 13:48:54 -0400338 */
339#define CTL(c) (u8[]){ (c) - '@', 0 }
340
341#define _(a,b) { .input = (u8 *)(a), .len = sizeof(a) - 1, .action = (b) }
Chris Lukeb5850972016-05-03 16:34:59 -0400342/**
343 * Patterns to match on a CLI input stream.
344 * @showinitializer
345 */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400346static unix_cli_parse_actions_t unix_cli_parse_strings[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400347 /* Line handling */
348 _("\r\n", UNIX_CLI_PARSE_ACTION_CRLF), /* Must be before '\r' */
349 _("\n", UNIX_CLI_PARSE_ACTION_CRLF),
350 _("\r\0", UNIX_CLI_PARSE_ACTION_CRLF), /* Telnet does this */
351 _("\r", UNIX_CLI_PARSE_ACTION_CRLF),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400352
Dave Barach9b8ffd92016-07-08 08:13:45 -0400353 /* Unix shell control codes */
354 _(CTL ('B'), UNIX_CLI_PARSE_ACTION_LEFT),
355 _(CTL ('F'), UNIX_CLI_PARSE_ACTION_RIGHT),
356 _(CTL ('P'), UNIX_CLI_PARSE_ACTION_UP),
357 _(CTL ('N'), UNIX_CLI_PARSE_ACTION_DOWN),
358 _(CTL ('A'), UNIX_CLI_PARSE_ACTION_HOME),
359 _(CTL ('E'), UNIX_CLI_PARSE_ACTION_END),
360 _(CTL ('D'), UNIX_CLI_PARSE_ACTION_ERASERIGHT),
361 _(CTL ('U'), UNIX_CLI_PARSE_ACTION_ERASELINELEFT),
362 _(CTL ('K'), UNIX_CLI_PARSE_ACTION_ERASELINERIGHT),
Hiroki Shirokura67e4df12019-08-16 11:30:34 +0000363 _(CTL ('W'), UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT),
Dave Barach9b8ffd92016-07-08 08:13:45 -0400364 _(CTL ('Y'), UNIX_CLI_PARSE_ACTION_YANK),
365 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_CLEAR),
366 _(ESC "b", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* Alt-B */
367 _(ESC "f", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* Alt-F */
368 _("\b", UNIX_CLI_PARSE_ACTION_ERASE), /* ^H */
369 _("\x7f", UNIX_CLI_PARSE_ACTION_ERASE), /* Backspace */
370 _("\t", UNIX_CLI_PARSE_ACTION_TAB), /* ^I */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400371
Dave Barach9b8ffd92016-07-08 08:13:45 -0400372 /* VT100 Normal mode - Broadest support */
373 _(CSI "A", UNIX_CLI_PARSE_ACTION_UP),
374 _(CSI "B", UNIX_CLI_PARSE_ACTION_DOWN),
375 _(CSI "C", UNIX_CLI_PARSE_ACTION_RIGHT),
376 _(CSI "D", UNIX_CLI_PARSE_ACTION_LEFT),
377 _(CSI "H", UNIX_CLI_PARSE_ACTION_HOME),
378 _(CSI "F", UNIX_CLI_PARSE_ACTION_END),
379 _(CSI "3~", UNIX_CLI_PARSE_ACTION_ERASERIGHT), /* Delete */
380 _(CSI "1;5D", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* C-Left */
381 _(CSI "1;5C", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* C-Right */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400382
383 /* VT100 Application mode - Some Gnome Terminal functions use these */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 _(ESC "OA", UNIX_CLI_PARSE_ACTION_UP),
385 _(ESC "OB", UNIX_CLI_PARSE_ACTION_DOWN),
386 _(ESC "OC", UNIX_CLI_PARSE_ACTION_RIGHT),
387 _(ESC "OD", UNIX_CLI_PARSE_ACTION_LEFT),
388 _(ESC "OH", UNIX_CLI_PARSE_ACTION_HOME),
389 _(ESC "OF", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400390
Dave Barach9b8ffd92016-07-08 08:13:45 -0400391 /* ANSI X3.41-1974 - sent by Microsoft Telnet and PuTTY */
392 _(CSI "1~", UNIX_CLI_PARSE_ACTION_HOME),
393 _(CSI "4~", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400394
Dave Barach9b8ffd92016-07-08 08:13:45 -0400395 /* Emacs-ish history search */
396 _(CTL ('S'), UNIX_CLI_PARSE_ACTION_FWDSEARCH),
397 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_REVSEARCH),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400398
Dave Barach9b8ffd92016-07-08 08:13:45 -0400399 /* Other protocol things */
400 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
401 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
402 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400403};
Chris Lukeb5850972016-05-03 16:34:59 -0400404
405/**
406 * Patterns to match when a CLI session is in the pager.
407 * @showinitializer
408 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400409static unix_cli_parse_actions_t unix_cli_parse_pager[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400410 /* Line handling */
411 _("\r\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Must be before '\r' */
412 _("\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
413 _("\r\0", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Telnet does this */
414 _("\r", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
Chris Luke7afda3a2016-04-25 13:49:22 -0400415
Dave Barach9b8ffd92016-07-08 08:13:45 -0400416 /* Pager commands */
417 _(" ", UNIX_CLI_PARSE_ACTION_PAGER_NEXT),
418 _("q", UNIX_CLI_PARSE_ACTION_PAGER_QUIT),
419 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
420 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
421 _("/", UNIX_CLI_PARSE_ACTION_PAGER_SEARCH),
Chris Luke7afda3a2016-04-25 13:49:22 -0400422
Dave Barach9b8ffd92016-07-08 08:13:45 -0400423 /* VT100 */
424 _(CSI "A", UNIX_CLI_PARSE_ACTION_PAGER_UP),
425 _(CSI "B", UNIX_CLI_PARSE_ACTION_PAGER_DN),
426 _(CSI "H", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
427 _(CSI "F", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400428
Dave Barach9b8ffd92016-07-08 08:13:45 -0400429 /* VT100 Application mode */
430 _(ESC "OA", UNIX_CLI_PARSE_ACTION_PAGER_UP),
431 _(ESC "OB", UNIX_CLI_PARSE_ACTION_PAGER_DN),
432 _(ESC "OH", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
433 _(ESC "OF", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400434
Dave Barach9b8ffd92016-07-08 08:13:45 -0400435 /* ANSI X3.41-1974 */
436 _(CSI "1~", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
437 _(CSI "4~", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
438 _(CSI "5~", UNIX_CLI_PARSE_ACTION_PAGER_PGUP),
439 _(CSI "6~", UNIX_CLI_PARSE_ACTION_PAGER_PGDN),
Chris Luke7afda3a2016-04-25 13:49:22 -0400440
Dave Barach9b8ffd92016-07-08 08:13:45 -0400441 /* Other protocol things */
442 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
443 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
444 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke7afda3a2016-04-25 13:49:22 -0400445};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400446
Chris Luke0aca5eb2016-04-25 13:48:54 -0400447#undef _
448
Chris Lukeb5850972016-05-03 16:34:59 -0400449/** CLI session events. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400450typedef enum
451{
Chris Lukeb5850972016-05-03 16:34:59 -0400452 UNIX_CLI_PROCESS_EVENT_READ_READY, /**< A file descriptor has data to be read. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400453 UNIX_CLI_PROCESS_EVENT_QUIT, /**< A CLI session wants to close. */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400454} unix_cli_process_event_type_t;
455
Chris Luke6a3a4f72019-07-09 23:33:30 -0400456/** CLI session telnet negotiation timer events. */
457typedef enum
458{
459 UNIX_CLI_NEW_SESSION_EVENT_ADD, /**< Add a CLI session to the new session list */
460} unix_cli_timeout_event_type_t;
461
462/** Each new session is stored on a list with a deadline after which
463 * a prompt is issued, in case the session TELNET negotiation fails to
464 * complete. */
465typedef struct
466{
467 uword cf_index; /**< Session index of the new session. */
468 f64 deadline; /**< Deadline after which the new session must have a prompt. */
469} unix_cli_new_session_t;
470
Chris Lukeb5850972016-05-03 16:34:59 -0400471/** CLI global state. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400472typedef struct
473{
Chris Lukeb5850972016-05-03 16:34:59 -0400474 /** Prompt string for CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400475 u8 *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700476
Chris Lukeb5850972016-05-03 16:34:59 -0400477 /** Vec pool of CLI sessions. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400478 unix_cli_file_t *cli_file_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700479
Chris Lukeb5850972016-05-03 16:34:59 -0400480 /** Vec pool of unused session indices. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400481 u32 *unused_cli_process_node_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Chris Lukeb5850972016-05-03 16:34:59 -0400483 /** The session index of the stdin cli */
Chris Luke7afda3a2016-04-25 13:49:22 -0400484 u32 stdin_cli_file_index;
485
Chris Lukeb5850972016-05-03 16:34:59 -0400486 /** File pool index of current input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487 u32 current_input_file_index;
Chris Luke6a3a4f72019-07-09 23:33:30 -0400488
489 /** New session process node identifier */
490 u32 new_session_process_node_index;
491
492 /** List of new sessions */
493 unix_cli_new_session_t *new_sessions;
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
Chris Luke0aca5eb2016-04-25 13:48:54 -0400499/**
Chris Luke8e5b0412016-07-26 13:06:10 -0400500 * @brief Search for a byte sequence in the action list.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400501 *
Chris Lukeb5850972016-05-03 16:34:59 -0400502 * Searches the @ref unix_cli_parse_actions_t list in @a a for a match with
503 * the bytes in @a input of maximum length @a ilen bytes.
504 * When a match is made @a *matched indicates how many bytes were matched.
505 * Returns a value from the enum @ref unix_cli_parse_action_t to indicate
506 * whether no match was found, a partial match was found or a complete
507 * match was found and what action, if any, should be taken.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400508 *
Chris Lukeb5850972016-05-03 16:34:59 -0400509 * @param[in] a Actions list to search within.
510 * @param[in] input String fragment to search for.
511 * @param[in] ilen Length of the string in 'input'.
512 * @param[out] matched Pointer to an integer that will contain the number
513 * of bytes matched when a complete match is found.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400514 *
Chris Lukeb5850972016-05-03 16:34:59 -0400515 * @return Action from @ref unix_cli_parse_action_t that the string fragment
Chris Luke0aca5eb2016-04-25 13:48:54 -0400516 * matches.
Chris Lukeb5850972016-05-03 16:34:59 -0400517 * @ref UNIX_CLI_PARSE_ACTION_PARTIALMATCH is returned when the
518 * whole input string matches the start of at least one action.
519 * @ref UNIX_CLI_PARSE_ACTION_NOMATCH is returned when there is no
Chris Luke0aca5eb2016-04-25 13:48:54 -0400520 * match at all.
521 */
522static unix_cli_parse_action_t
Dave Barach9b8ffd92016-07-08 08:13:45 -0400523unix_cli_match_action (unix_cli_parse_actions_t * a,
524 u8 * input, u32 ilen, i32 * matched)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400525{
Chris Luke0aca5eb2016-04-25 13:48:54 -0400526 u8 partial = 0;
527
528 while (a->input)
529 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400530 if (ilen >= a->len)
531 {
532 /* see if the start of the input buffer exactly matches the current
533 * action string. */
534 if (memcmp (input, a->input, a->len) == 0)
535 {
536 *matched = a->len;
537 return a->action;
538 }
539 }
540 else
541 {
542 /* if the first ilen characters match, flag this as a partial -
543 * meaning keep collecting bytes in case of a future match */
544 if (memcmp (input, a->input, ilen) == 0)
545 partial = 1;
546 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400547
Dave Barach9b8ffd92016-07-08 08:13:45 -0400548 /* check next action */
549 a++;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400550 }
551
552 return partial ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400553 UNIX_CLI_PARSE_ACTION_PARTIALMATCH : UNIX_CLI_PARSE_ACTION_NOMATCH;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400554}
555
556
Chris Luke54ccf222016-07-25 16:38:11 -0400557/** Add bytes to the output vector and then flagg the I/O system that bytes
558 * are available to be sent.
559 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700560static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200561unix_cli_add_pending_output (clib_file_t * uf,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700562 unix_cli_file_t * cf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400563 u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700564{
Damjan Marion56dd5432017-09-08 19:52:02 +0200565 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700566
567 vec_add (cf->output_vector, buffer, buffer_bytes);
568 if (vec_len (cf->output_vector) > 0)
569 {
570 int skip_update = 0 != (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
571 uf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400572 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200573 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700574 }
575}
576
Chris Luke54ccf222016-07-25 16:38:11 -0400577/** Delete all bytes from the output vector and flag the I/O system
578 * that no more bytes are available to be sent.
579 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700580static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200581unix_cli_del_pending_output (clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400582 unix_cli_file_t * cf, uword n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583{
Damjan Marion56dd5432017-09-08 19:52:02 +0200584 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700585
586 vec_delete (cf->output_vector, n_bytes, 0);
587 if (vec_len (cf->output_vector) <= 0)
588 {
589 int skip_update = 0 == (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
590 uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400591 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200592 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700593 }
594}
595
Chris Luke8e5b0412016-07-26 13:06:10 -0400596/** @brief A bit like strchr with a buffer length limit.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400597 * Search a buffer for the first instance of a character up to the limit of
598 * the buffer length. If found then return the position of that character.
599 *
600 * The key departure from strchr is that if the character is not found then
601 * return the buffer length.
602 *
603 * @param chr The byte value to search for.
604 * @param str The buffer in which to search for the value.
605 * @param len The depth into the buffer to search.
606 *
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700607 * @return The index of the first occurrence of \c chr. If \c chr is not
Chris Luke0aca5eb2016-04-25 13:48:54 -0400608 * found then \c len instead.
609 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400610always_inline word
611unix_vlib_findchr (u8 chr, u8 * str, word len)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400612{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400613 word i = 0;
614 for (i = 0; i < len; i++, str++)
615 {
616 if (*str == chr)
617 return i;
618 }
619 return len;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400620}
621
Chris Luke8e5b0412016-07-26 13:06:10 -0400622/** @brief Send a buffer to the CLI stream if possible, enqueue it otherwise.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400623 * Attempts to write given buffer to the file descriptor of the given
624 * Unix CLI session. If that session already has data in the output buffer
625 * or if the write attempt tells us to try again later then the given buffer
626 * is appended to the pending output buffer instead.
627 *
628 * This is typically called only from \c unix_vlib_cli_output_cooked since
629 * that is where CRLF handling occurs or from places where we explicitly do
630 * not want cooked handling.
631 *
632 * @param cf Unix CLI session of the desired stream to write to.
633 * @param uf The Unix file structure of the desired stream to write to.
634 * @param buffer Pointer to the buffer that needs to be written.
635 * @param buffer_bytes The number of bytes from \c buffer to write.
636 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637static void
638unix_vlib_cli_output_raw (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200639 clib_file_t * uf, u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400640{
641 int n = 0;
642
Chris Luke03add7f2017-09-20 23:31:24 -0400643 if (cf->has_epipe) /* don't try writing anything */
644 return;
645
Chris Luke0aca5eb2016-04-25 13:48:54 -0400646 if (vec_len (cf->output_vector) == 0)
Chris Luke03add7f2017-09-20 23:31:24 -0400647 {
648 if (cf->is_socket)
649 /* If it's a socket we use MSG_NOSIGNAL to prevent SIGPIPE */
650 n = send (uf->file_descriptor, buffer, buffer_bytes, MSG_NOSIGNAL);
651 else
652 n = write (uf->file_descriptor, buffer, buffer_bytes);
653 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400654
655 if (n < 0 && errno != EAGAIN)
656 {
Chris Luke03add7f2017-09-20 23:31:24 -0400657 if (errno == EPIPE)
658 {
659 /* connection closed on us */
660 unix_main_t *um = &unix_main;
661 cf->has_epipe = 1;
662 vlib_process_signal_event (um->vlib_main, cf->process_node_index,
663 UNIX_CLI_PROCESS_EVENT_QUIT,
664 uf->private_data);
665 }
666 else
667 {
668 clib_unix_warning ("write");
669 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400670 }
671 else if ((word) n < (word) buffer_bytes)
672 {
673 /* We got EAGAIN or we already have stuff in the buffer;
674 * queue up whatever didn't get sent for later. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400675 if (n < 0)
676 n = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400677 unix_cli_add_pending_output (uf, cf, buffer + n, buffer_bytes - n);
678 }
679}
680
Chris Luke8e5b0412016-07-26 13:06:10 -0400681/** @brief Process a buffer for CRLF handling before outputting it to the CLI.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400682 *
683 * @param cf Unix CLI session of the desired stream to write to.
684 * @param uf The Unix file structure of the desired stream to write to.
685 * @param buffer Pointer to the buffer that needs to be written.
686 * @param buffer_bytes The number of bytes from \c buffer to write.
687 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400688static void
689unix_vlib_cli_output_cooked (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200690 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691 u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400692{
693 word end = 0, start = 0;
694
695 while (end < buffer_bytes)
696 {
697 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400698 {
699 /* iterate the line on \n's so we can insert a \r before it */
700 end = unix_vlib_findchr ('\n',
701 buffer + start,
702 buffer_bytes - start) + start;
703 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400704 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705 {
706 /* otherwise just send the whole buffer */
707 end = buffer_bytes;
708 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400709
Dave Barach9b8ffd92016-07-08 08:13:45 -0400710 unix_vlib_cli_output_raw (cf, uf, buffer + start, end - start);
Chris Luke0aca5eb2016-04-25 13:48:54 -0400711
712 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400713 {
714 if (end < buffer_bytes)
715 {
716 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\r\n", 2);
717 end++; /* skip the \n that we already sent */
718 }
719 start = end;
720 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400721 }
Chris Lukefc379d22018-06-05 23:50:19 -0400722
723 /* Use the last character to determine the last direction of the cursor. */
724 if (buffer_bytes > 0)
725 cf->cursor_direction = (buffer[buffer_bytes - 1] == (u8) '\b');
726}
727
728/** @brief Moves the terminal cursor one character to the left, with
729 * special handling when it reaches the left edge of the terminal window.
730 *
731 * Ordinarily we can simply send a '\b' to move the cursor left, however
732 * most terminals will not reverse-wrap to the end of the previous line
733 * if the cursor is in the left-most column. To counter this we must
734 * check the cursor position + prompt length modulo terminal width and
735 * if available use some other means, such as ANSI terminal escape
736 * sequences, to move the cursor.
737 *
738 * @param cf Unix CLI session of the desired stream to write to.
739 * @param uf The Unix file structure of the desired stream to write to.
740 */
741static void
742unix_vlib_cli_output_cursor_left (unix_cli_file_t * cf, clib_file_t * uf)
743{
744 unix_cli_main_t *cm = &unix_cli_main;
745 static u8 *ansi = 0; /* assumes no reentry */
746 u32 position;
747
748 if (!cf->is_interactive || !cf->ansi_capable || !cf->width)
749 {
750 /* No special handling for dumb terminals */
751 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
752 return;
753 }
754
755 position = ((u32) vec_len (cm->cli_prompt) + cf->cursor) % cf->width;
756
757 if (position != 0)
758 {
759 /* No special handling required if we're not at the left edge */
760 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
761 return;
762 }
763
764 if (!cf->cursor_direction)
765 {
766 /* Special handling for when we are at the left edge but
767 * the cursor was going left-to-right, but in this situation
768 * xterm-like terminals actually hide the cursor off the right
769 * edge. A \b here seems to jump one char too many, so let's
770 * force the cursor onto the next line instead.
771 */
772 if (cf->cursor < vec_len (cf->current_command))
773 unix_vlib_cli_output_cooked (cf, uf, &cf->current_command[cf->cursor],
774 1);
775 else
776 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
777 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
778 }
779
780 /* Relocate the cursor at the right hand edge one line above */
781 ansi = format (ansi, CSI "A" CSI "%dC", cf->width - 1);
782 unix_vlib_cli_output_cooked (cf, uf, ansi, vec_len (ansi));
783 vec_reset_length (ansi); /* keep the vec around for next time */
784 cf->cursor_direction = 1; /* going backwards now */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400785}
786
Chris Luke8e5b0412016-07-26 13:06:10 -0400787/** @brief Output the CLI prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400788static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200789unix_cli_cli_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400790{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400791 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke7afda3a2016-04-25 13:49:22 -0400792
Chris Luke03add7f2017-09-20 23:31:24 -0400793 if (cf->is_interactive) /* Only interactive sessions get a prompt */
794 unix_vlib_cli_output_raw (cf, uf, cm->cli_prompt,
795 vec_len (cm->cli_prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400796}
797
Chris Luke8e5b0412016-07-26 13:06:10 -0400798/** @brief Output a pager prompt and show number of buffered lines */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400799static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200800unix_cli_pager_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400801{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400802 u8 *prompt;
Chris Luke270b6de2016-05-19 14:23:25 -0400803 u32 h;
804
805 h = cf->pager_start + (cf->height - 1);
806 if (h > vec_len (cf->pager_index))
807 h = vec_len (cf->pager_index);
Chris Luke7afda3a2016-04-25 13:49:22 -0400808
Dave Barach9b8ffd92016-07-08 08:13:45 -0400809 prompt = format (0, "\r%s-- more -- (%d-%d/%d)%s",
810 cf->ansi_capable ? ANSI_BOLD : "",
811 cf->pager_start + 1,
812 h,
813 vec_len (cf->pager_index),
814 cf->ansi_capable ? ANSI_RESET : "");
Chris Luke7afda3a2016-04-25 13:49:22 -0400815
Dave Barach9b8ffd92016-07-08 08:13:45 -0400816 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400817
Dave Barach9b8ffd92016-07-08 08:13:45 -0400818 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400819}
820
Chris Luke8e5b0412016-07-26 13:06:10 -0400821/** @brief Output a pager "skipping" message */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400822static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200823unix_cli_pager_message (unix_cli_file_t * cf, clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400824 char *message, char *postfix)
Chris Luke7afda3a2016-04-25 13:49:22 -0400825{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400826 u8 *prompt;
Chris Luke7afda3a2016-04-25 13:49:22 -0400827
Dave Barach9b8ffd92016-07-08 08:13:45 -0400828 prompt = format (0, "\r%s-- %s --%s%s",
829 cf->ansi_capable ? ANSI_BOLD : "",
830 message, cf->ansi_capable ? ANSI_RESET : "", postfix);
Chris Luke7afda3a2016-04-25 13:49:22 -0400831
Dave Barach9b8ffd92016-07-08 08:13:45 -0400832 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400833
Dave Barach9b8ffd92016-07-08 08:13:45 -0400834 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400835}
836
Chris Luke8e5b0412016-07-26 13:06:10 -0400837/** @brief Erase the printed pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400838static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200839unix_cli_pager_prompt_erase (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400840{
841 if (cf->ansi_capable)
842 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400843 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
844 unix_vlib_cli_output_cooked (cf, uf,
845 (u8 *) ANSI_CLEARLINE,
846 sizeof (ANSI_CLEARLINE) - 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400847 }
848 else
849 {
850 int i;
851
Dave Barach9b8ffd92016-07-08 08:13:45 -0400852 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
853 for (i = 0; i < cf->width - 1; i++)
854 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
855 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400856 }
857}
858
Chris Luke8e5b0412016-07-26 13:06:10 -0400859/** @brief Uses an ANSI escape sequence to move the cursor */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400860static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200861unix_cli_ansi_cursor (unix_cli_file_t * cf, clib_file_t * uf, u16 x, u16 y)
Chris Luke7afda3a2016-04-25 13:49:22 -0400862{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400863 u8 *str;
Chris Luke7afda3a2016-04-25 13:49:22 -0400864
Dave Barach9b8ffd92016-07-08 08:13:45 -0400865 str = format (0, "%s%d;%dH", CSI, y, x);
Chris Luke7afda3a2016-04-25 13:49:22 -0400866
Dave Barach9b8ffd92016-07-08 08:13:45 -0400867 unix_vlib_cli_output_cooked (cf, uf, str, vec_len (str));
Chris Luke7afda3a2016-04-25 13:49:22 -0400868
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 vec_free (str);
Chris Luke7afda3a2016-04-25 13:49:22 -0400870}
871
Chris Luke862623d2016-05-14 10:13:34 -0400872/** Redraw the currently displayed page of text.
873 * @param cf CLI session to redraw the pager buffer of.
874 * @param uf Unix file of the CLI session.
875 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400876static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200877unix_cli_pager_redraw (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke862623d2016-05-14 10:13:34 -0400878{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400879 unix_cli_pager_index_t *pi = NULL;
880 u8 *line = NULL;
Chris Luke862623d2016-05-14 10:13:34 -0400881 word i;
882
883 /* No active pager? Do nothing. */
884 if (!vec_len (cf->pager_index))
885 return;
886
887 if (cf->ansi_capable)
888 {
889 /* If we have ANSI, send the clear screen sequence */
890 unix_vlib_cli_output_cooked (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400891 (u8 *) ANSI_CLEAR,
892 sizeof (ANSI_CLEAR) - 1);
Chris Luke862623d2016-05-14 10:13:34 -0400893 }
894 else
895 {
896 /* Otherwise make sure we're on a blank line */
897 unix_cli_pager_prompt_erase (cf, uf);
898 }
899
900 /* (Re-)send the current page of content */
901 for (i = 0; i < cf->height - 1 &&
Dave Barach9b8ffd92016-07-08 08:13:45 -0400902 i + cf->pager_start < vec_len (cf->pager_index); i++)
Chris Luke862623d2016-05-14 10:13:34 -0400903 {
904 pi = &cf->pager_index[cf->pager_start + i];
905 line = cf->pager_vector[pi->line] + pi->offset;
906
907 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
908 }
909 /* if the last line didn't end in newline, add a newline */
910 if (pi && line[pi->length - 1] != '\n')
Dave Barach9b8ffd92016-07-08 08:13:45 -0400911 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke862623d2016-05-14 10:13:34 -0400912
913 unix_cli_pager_prompt (cf, uf);
914}
915
916/** @brief Process and add a line to the pager index.
917 * In normal operation this function will take the given character string
918 * found in @c line and with length @c len_or_index and iterates the over the
919 * contents, adding each line of text discovered within it to the
920 * pager index. Lines are identified by newlines ("<code>\\n</code>") and by
921 * strings longer than the width of the terminal.
922 *
923 * If instead @c line is @c NULL then @c len_or_index is taken to mean the
924 * index of an existing line in the pager buffer; this simply means that the
Paul Vinciguerra8feeaff2019-03-27 11:25:48 -0700925 * input line does not need to be cloned since we already have it. This is
Chris Luke862623d2016-05-14 10:13:34 -0400926 * typical if we are reindexing the pager buffer.
927 *
928 * @param cf The CLI session whose pager we are adding to.
929 * @param line The string of text to be indexed into the pager buffer.
930 * If @c line is @c NULL then the mode of operation
931 * changes slightly; see the description above.
932 * @param len_or_index If @c line is a pointer to a string then this parameter
933 * indicates the length of that string; Otherwise this
934 * value provides the index in the pager buffer of an
935 * existing string to be indexed.
936 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400937static void
938unix_cli_pager_add_line (unix_cli_file_t * cf, u8 * line, word len_or_index)
Chris Luke862623d2016-05-14 10:13:34 -0400939{
Neale Ranns9c2c2432017-12-05 13:34:36 -0800940 u8 *p = NULL;
Chris Luke862623d2016-05-14 10:13:34 -0400941 word i, j, k;
942 word line_index, len;
943 u32 width = cf->width;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400944 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -0400945
946 if (line == NULL)
947 {
948 /* Use a line already in the pager buffer */
949 line_index = len_or_index;
Neale Ranns9c2c2432017-12-05 13:34:36 -0800950 if (cf->pager_vector != NULL)
951 p = cf->pager_vector[line_index];
Chris Luke862623d2016-05-14 10:13:34 -0400952 len = vec_len (p);
953 }
954 else
955 {
956 len = len_or_index;
957 /* Add a copy of the raw string to the pager buffer */
958 p = vec_new (u8, len);
959 clib_memcpy (p, line, len);
960
961 /* store in pager buffer */
962 line_index = vec_len (cf->pager_vector);
963 vec_add1 (cf->pager_vector, p);
964 }
965
966 i = 0;
967 while (i < len)
968 {
969 /* Find the next line, or run to terminal width, or run to EOL */
970 int l = len - i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400971 j = unix_vlib_findchr ((u8) '\n', p, l < width ? l : width);
Chris Luke862623d2016-05-14 10:13:34 -0400972
Dave Barach9b8ffd92016-07-08 08:13:45 -0400973 if (j < l && p[j] == '\n') /* incl \n */
974 j++;
Chris Luke862623d2016-05-14 10:13:34 -0400975
976 /* Add the line to the index */
977 k = vec_len (cf->pager_index);
978 vec_validate (cf->pager_index, k);
979 pi = &cf->pager_index[k];
980
981 pi->line = line_index;
982 pi->offset = i;
983 pi->length = j;
984
985 i += j;
986 p += j;
987 }
988}
989
990/** @brief Reindex entire pager buffer.
991 * Resets the current pager index and then re-adds the lines in the pager
992 * buffer to the index.
993 *
994 * Additionally this function attempts to retain the current page start
995 * line offset by searching for the same top-of-screen line in the new index.
996 *
997 * @param cf The CLI session whose pager buffer should be reindexed.
998 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400999static void
1000unix_cli_pager_reindex (unix_cli_file_t * cf)
Chris Luke862623d2016-05-14 10:13:34 -04001001{
1002 word i, old_line, old_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001003 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -04001004
1005 /* If there is nothing in the pager buffer then make sure the index
1006 * is empty and move on.
1007 */
1008 if (cf->pager_vector == 0)
1009 {
1010 vec_reset_length (cf->pager_index);
1011 return;
1012 }
1013
1014 /* Retain a pointer to the current page start line so we can
1015 * find it later
1016 */
1017 pi = &cf->pager_index[cf->pager_start];
1018 old_line = pi->line;
1019 old_offset = pi->offset;
1020
1021 /* Re-add the buffered lines to the index */
1022 vec_reset_length (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001023 vec_foreach_index (i, cf->pager_vector)
1024 {
1025 unix_cli_pager_add_line (cf, NULL, i);
1026 }
Chris Luke862623d2016-05-14 10:13:34 -04001027
1028 /* Attempt to re-locate the previously stored page start line */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001029 vec_foreach_index (i, cf->pager_index)
1030 {
1031 pi = &cf->pager_index[i];
Chris Luke862623d2016-05-14 10:13:34 -04001032
Dave Barach9b8ffd92016-07-08 08:13:45 -04001033 if (pi->line == old_line &&
1034 (pi->offset <= old_offset || pi->offset + pi->length > old_offset))
1035 {
1036 /* Found it! */
1037 cf->pager_start = i;
1038 break;
1039 }
1040 }
Chris Luke862623d2016-05-14 10:13:34 -04001041
1042 /* In case the start line was not found (rare), ensure the pager start
1043 * index is within bounds
1044 */
1045 if (cf->pager_start >= vec_len (cf->pager_index))
1046 {
Chris Luke270b6de2016-05-19 14:23:25 -04001047 if (!cf->height || vec_len (cf->pager_index) < (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001048 cf->pager_start = 0;
Chris Luke270b6de2016-05-19 14:23:25 -04001049 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001050 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
Chris Luke862623d2016-05-14 10:13:34 -04001051 }
1052}
1053
1054/** VLIB CLI output function.
1055 *
1056 * If the terminal has a pager configured then this function takes care
1057 * of collating output into the pager buffer; ensuring only the first page
1058 * is displayed and any lines in excess of the first page are buffered.
1059 *
1060 * If the maximum number of index lines in the buffer is exceeded then the
1061 * pager is cancelled and the contents of the current buffer are sent to the
1062 * terminal.
1063 *
1064 * If there is no pager configured then the output is sent directly to the
1065 * terminal.
1066 *
1067 * @param cli_file_index Index of the CLI session where this output is
1068 * directed.
1069 * @param buffer String of printabe bytes to be output.
1070 * @param buffer_bytes The number of bytes in @c buffer to be output.
1071 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001072static void
1073unix_vlib_cli_output (uword cli_file_index, u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001074{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001075 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02001076 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001077 unix_cli_main_t *cm = &unix_cli_main;
1078 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02001079 clib_file_t *uf;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001080
Ed Warnickecb9cada2015-12-08 15:45:58 -07001081 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02001082 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07001083
Chris Luke7afda3a2016-04-25 13:49:22 -04001084 if (cf->no_pager || um->cli_pager_buffer_limit == 0 || cf->height == 0)
1085 {
Chris Luke862623d2016-05-14 10:13:34 -04001086 unix_vlib_cli_output_cooked (cf, uf, buffer, buffer_bytes);
Chris Luke7afda3a2016-04-25 13:49:22 -04001087 }
1088 else
1089 {
Chris Luke862623d2016-05-14 10:13:34 -04001090 word row = vec_len (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001091 u8 *line;
1092 unix_cli_pager_index_t *pi;
Chris Luke7afda3a2016-04-25 13:49:22 -04001093
Chris Luke862623d2016-05-14 10:13:34 -04001094 /* Index and add the output lines to the pager buffer. */
1095 unix_cli_pager_add_line (cf, buffer, buffer_bytes);
1096
1097 /* Now iterate what was added to display the lines.
1098 * If we reach the bottom of the page, display a prompt.
1099 */
1100 while (row < vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001101 {
1102 if (row < cf->height - 1)
1103 {
1104 /* output this line */
1105 pi = &cf->pager_index[row];
1106 line = cf->pager_vector[pi->line] + pi->offset;
1107 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
Chris Luke862623d2016-05-14 10:13:34 -04001108
Dave Barach9b8ffd92016-07-08 08:13:45 -04001109 /* if the last line didn't end in newline, and we're at the
1110 * bottom of the page, add a newline */
1111 if (line[pi->length - 1] != '\n' && row == cf->height - 2)
1112 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1113 }
1114 else
1115 {
1116 /* Display the pager prompt every 10 lines */
1117 if (!(row % 10))
1118 unix_cli_pager_prompt (cf, uf);
1119 }
1120 row++;
1121 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001122
Chris Luke862623d2016-05-14 10:13:34 -04001123 /* Check if we went over the pager buffer limit */
1124 if (vec_len (cf->pager_index) > um->cli_pager_buffer_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001125 {
1126 /* Stop using the pager for the remainder of this CLI command */
1127 cf->no_pager = 2;
Chris Luke7afda3a2016-04-25 13:49:22 -04001128
Dave Barach9b8ffd92016-07-08 08:13:45 -04001129 /* If we likely printed the prompt, erase it */
1130 if (vec_len (cf->pager_index) > cf->height - 1)
1131 unix_cli_pager_prompt_erase (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04001132
Dave Barach9b8ffd92016-07-08 08:13:45 -04001133 /* Dump out the contents of the buffer */
1134 for (row = cf->pager_start + (cf->height - 1);
1135 row < vec_len (cf->pager_index); row++)
1136 {
1137 pi = &cf->pager_index[row];
1138 line = cf->pager_vector[pi->line] + pi->offset;
1139 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1140 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001141
Dave Barach9b8ffd92016-07-08 08:13:45 -04001142 unix_cli_pager_reset (cf);
1143 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001144 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001145}
1146
Chris Luke862623d2016-05-14 10:13:34 -04001147/** Identify whether a terminal type is ANSI capable.
1148 *
Chris Luke54ccf222016-07-25 16:38:11 -04001149 * Compares the string given in @c term with a list of terminal types known
Chris Luke862623d2016-05-14 10:13:34 -04001150 * to support ANSI escape sequences.
1151 *
1152 * This list contains, for example, @c xterm, @c screen and @c ansi.
1153 *
1154 * @param term A string with a terminal type in it.
Chris Luke54ccf222016-07-25 16:38:11 -04001155 * @param len The length of the string in @c term.
Chris Luke862623d2016-05-14 10:13:34 -04001156 *
1157 * @return @c 1 if the terminal type is recognized as supporting ANSI
1158 * terminal sequences; @c 0 otherwise.
1159 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001160static u8
Chris Luke03add7f2017-09-20 23:31:24 -04001161unix_cli_terminal_type_ansi (u8 * term, uword len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001162{
Chris Luke0aca5eb2016-04-25 13:48:54 -04001163 /* This may later be better done as a hash of some sort. */
1164#define _(a) do { \
1165 if (strncasecmp(a, (char *)term, (size_t)len) == 0) return 1; \
1166 } while(0)
1167
1168 _("xterm");
1169 _("xterm-color");
Dave Barach9b8ffd92016-07-08 08:13:45 -04001170 _("xterm-256color"); /* iTerm on Mac */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001171 _("screen");
Damjan Marion6e8ab162017-06-05 21:56:12 +02001172 _("screen-256color"); /* Screen and tmux */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001173 _("ansi"); /* Microsoft Telnet */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001174#undef _
1175
1176 return 0;
1177}
1178
Chris Luke03add7f2017-09-20 23:31:24 -04001179/** Identify whether a terminal type is non-interactive.
1180 *
1181 * Compares the string given in @c term with a list of terminal types known
1182 * to be non-interactive, as send by tools such as @c vppctl .
1183 *
1184 * This list contains, for example, @c vppctl.
1185 *
1186 * @param term A string with a terminal type in it.
1187 * @param len The length of the string in @c term.
1188 *
1189 * @return @c 1 if the terminal type is recognized as being non-interactive;
1190 * @c 0 otherwise.
1191 */
1192static u8
1193unix_cli_terminal_type_noninteractive (u8 * term, uword len)
1194{
1195 /* This may later be better done as a hash of some sort. */
1196#define _(a) do { \
1197 if (strncasecmp(a, (char *)term, (size_t)len) == 0) return 1; \
1198 } while(0)
1199
1200 _("vppctl");
1201#undef _
1202
1203 return 0;
1204}
1205
1206/** Set a session to be non-interactive. */
1207static void
1208unix_cli_set_session_noninteractive (unix_cli_file_t * cf)
1209{
1210 /* Non-interactive sessions don't get these */
1211 cf->is_interactive = 0;
1212 cf->no_pager = 1;
1213 cf->history_limit = 0;
1214 cf->has_history = 0;
1215 cf->line_mode = 1;
1216}
1217
Chris Luke8e5b0412016-07-26 13:06:10 -04001218/** @brief Emit initial welcome banner and prompt on a connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001219static void
1220unix_cli_file_welcome (unix_cli_main_t * cm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001221{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001222 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02001223 clib_file_main_t *fm = &file_main;
1224 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke572d8122016-04-25 13:49:07 -04001225 unix_cli_banner_t *banner;
1226 int i, len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001227
Chris Luke03add7f2017-09-20 23:31:24 -04001228 /* Mark the session as started if we get here */
1229 cf->started = 1;
1230
1231 if (!(cf->is_interactive)) /* No banner for non-interactive sessions */
1232 return;
1233
Chris Luke0aca5eb2016-04-25 13:48:54 -04001234 /*
1235 * Put the first bytes directly into the buffer so that further output is
1236 * queued until everything is ready. (oterwise initial prompt can appear
1237 * mid way through VPP initialization)
1238 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001239 unix_cli_add_pending_output (uf, cf, (u8 *) "\r", 1);
Chris Luke572d8122016-04-25 13:49:07 -04001240
1241 if (!um->cli_no_banner)
1242 {
1243 if (cf->ansi_capable)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001244 {
1245 banner = unix_cli_banner_color;
1246 len = ARRAY_LEN (unix_cli_banner_color);
1247 }
Chris Luke572d8122016-04-25 13:49:07 -04001248 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001249 {
1250 banner = unix_cli_banner;
1251 len = ARRAY_LEN (unix_cli_banner);
1252 }
Chris Luke572d8122016-04-25 13:49:07 -04001253
1254 for (i = 0; i < len; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001255 {
1256 unix_vlib_cli_output_cooked (cf, uf,
1257 banner[i].line, banner[i].length);
1258 }
1259 }
Chris Luke572d8122016-04-25 13:49:07 -04001260
1261 /* Prompt. */
Chris Luke7afda3a2016-04-25 13:49:22 -04001262 unix_cli_cli_prompt (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001263
Chris Luke0aca5eb2016-04-25 13:48:54 -04001264}
1265
Chris Luke6a3a4f72019-07-09 23:33:30 -04001266/**
1267 * @brief A failsafe manager that ensures CLI sessions issue an initial
1268 * prompt if TELNET negotiation fails.
1269 */
1270static uword
1271unix_cli_new_session_process (vlib_main_t * vm, vlib_node_runtime_t * rt,
1272 vlib_frame_t * f)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001273{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001274 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke6a3a4f72019-07-09 23:33:30 -04001275 uword event_type, *event_data = 0;
1276 f64 wait = 10.0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001277
Chris Luke6a3a4f72019-07-09 23:33:30 -04001278 while (1)
1279 {
1280 if (vec_len (cm->new_sessions) > 0)
1281 wait = vlib_process_wait_for_event_or_clock (vm, wait);
1282 else
1283 vlib_process_wait_for_event (vm);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001284
Chris Luke6a3a4f72019-07-09 23:33:30 -04001285 event_type = vlib_process_get_events (vm, &event_data);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001286
Chris Luke6a3a4f72019-07-09 23:33:30 -04001287 switch (event_type)
1288 {
1289 case ~0: /* no events => timeout */
1290 break;
1291
1292 case UNIX_CLI_NEW_SESSION_EVENT_ADD:
1293 {
1294 /* Add an identifier to the new session list */
1295 unix_cli_new_session_t ns;
1296
1297 ns.cf_index = event_data[0];
1298 ns.deadline = vlib_time_now (vm) + 1.0;
1299
1300 vec_add1 (cm->new_sessions, ns);
1301
1302 if (wait > 0.1)
1303 wait = 0.1; /* force a re-evaluation soon, but not too soon */
1304 }
1305 break;
1306
1307 default:
1308 clib_warning ("BUG: unknown event type 0x%wx", event_type);
1309 break;
1310 }
1311
1312 vec_reset_length (event_data);
1313
1314 if (vlib_process_suspend_time_is_zero (wait))
1315 {
1316 /* Scan the list looking for expired deadlines.
1317 * Emit needed prompts and remove from the list.
1318 * While scanning, look for the nearest new deadline
1319 * for the next iteration.
1320 * Since the list is ordered with newest sessions first
1321 * we can make assumptions about expired sessions being
1322 * contiguous at the beginning and the next deadline is the
1323 * next entry on the list, if any.
1324 */
1325 f64 now = vlib_time_now (vm);
1326 unix_cli_new_session_t *nsp;
1327 word index = 0;
1328
1329 wait = INFINITY;
1330
1331 vec_foreach (nsp, cm->new_sessions)
1332 {
1333 if (vlib_process_suspend_time_is_zero (nsp->deadline - now))
1334 {
1335 /* Deadline reached */
1336 unix_cli_file_t *cf;
1337
1338 /* Mark the highwater */
1339 index++;
1340
1341 /* Check the connection didn't close already */
1342 if (pool_is_free_index (cm->cli_file_pool, nsp->cf_index))
1343 continue;
1344
1345 cf = pool_elt_at_index (cm->cli_file_pool, nsp->cf_index);
1346
1347 if (!cf->started)
1348 unix_cli_file_welcome (cm, cf);
1349 }
1350 else
1351 {
1352 wait = nsp->deadline - now;
1353 break;
1354 }
1355 }
1356
1357 if (index)
1358 {
1359 /* We have sessions to remove */
1360 vec_delete (cm->new_sessions, index, 0);
1361 }
1362 }
1363 }
1364
1365 return 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001366}
1367
Chris Luke6a3a4f72019-07-09 23:33:30 -04001368
Chris Luke8e5b0412016-07-26 13:06:10 -04001369/** @brief A mostly no-op Telnet state machine.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001370 * Process Telnet command bytes in a way that ensures we're mostly
1371 * transparent to the Telnet protocol. That is, it's mostly a no-op.
1372 *
1373 * @return -1 if we need more bytes, otherwise a positive integer number of
1374 * bytes to consume from the input_vector, not including the initial
1375 * IAC byte.
1376 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001377static i32
1378unix_cli_process_telnet (unix_main_t * um,
1379 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001380 clib_file_t * uf, u8 * input_vector, uword len)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001381{
1382 /* Input_vector starts at IAC byte.
1383 * See if we have a complete message; if not, return -1 so we wait for more.
1384 * if we have a complete message, consume those bytes from the vector.
1385 */
1386 i32 consume = 0;
1387
1388 if (len == 1)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001389 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001390
1391 switch (input_vector[1])
Ed Warnickecb9cada2015-12-08 15:45:58 -07001392 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001393 case IAC:
1394 /* two IAC's in a row means to pass through 0xff.
1395 * since that makes no sense here, just consume it.
1396 */
1397 consume = 1;
1398 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001399
Dave Barach9b8ffd92016-07-08 08:13:45 -04001400 case WILL:
1401 case WONT:
1402 case DO:
1403 case DONT:
1404 /* Expect 3 bytes */
Chris Lukea9cf6af2018-09-05 21:00:52 -04001405 if (len < 3)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001406 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001407
Dave Barach9b8ffd92016-07-08 08:13:45 -04001408 consume = 2;
1409 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001410
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411 case SB:
1412 {
1413 /* Sub option - search ahead for IAC SE to end it */
1414 i32 i;
1415 for (i = 3; i < len && i < UNIX_CLI_MAX_DEPTH_TELNET; i++)
1416 {
1417 if (input_vector[i - 1] == IAC && input_vector[i] == SE)
1418 {
1419 /* We have a complete message; see if we care about it */
1420 switch (input_vector[2])
1421 {
1422 case TELOPT_TTYPE:
1423 if (input_vector[3] != 0)
1424 break;
Chris Luke03add7f2017-09-20 23:31:24 -04001425 {
1426 /* See if the the terminal type is recognized */
1427 u8 *term = input_vector + 4;
1428 uword len = i - 5;
1429
1430 /* See if the terminal type is ANSI capable */
1431 cf->ansi_capable =
1432 unix_cli_terminal_type_ansi (term, len);
1433
1434 /* See if the terminal type indicates non-interactive */
1435 if (unix_cli_terminal_type_noninteractive (term, len))
1436 unix_cli_set_session_noninteractive (cf);
1437 }
1438
Dave Barach9b8ffd92016-07-08 08:13:45 -04001439 /* If session not started, we can release the pause */
1440 if (!cf->started)
1441 /* Send the welcome banner and initial prompt */
1442 unix_cli_file_welcome (&unix_cli_main, cf);
1443 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001444
Dave Barach9b8ffd92016-07-08 08:13:45 -04001445 case TELOPT_NAWS:
1446 /* Window size */
1447 if (i != 8) /* check message is correct size */
1448 break;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001449
Dave Barach9b8ffd92016-07-08 08:13:45 -04001450 cf->width =
1451 clib_net_to_host_u16 (*((u16 *) (input_vector + 3)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001452 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
1453 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
Chris Luke2d8bf302017-11-12 22:26:37 -05001454 if (cf->width == 0)
1455 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001456
Dave Barach9b8ffd92016-07-08 08:13:45 -04001457 cf->height =
1458 clib_net_to_host_u16 (*((u16 *) (input_vector + 5)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001459 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
1460 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
Chris Luke2d8bf302017-11-12 22:26:37 -05001461 if (cf->height == 0)
1462 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001463
Dave Barach9b8ffd92016-07-08 08:13:45 -04001464 /* reindex pager buffer */
1465 unix_cli_pager_reindex (cf);
1466 /* redraw page */
1467 unix_cli_pager_redraw (cf, uf);
1468 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04001469
Dave Barach9b8ffd92016-07-08 08:13:45 -04001470 default:
1471 break;
1472 }
1473 /* Consume it all */
1474 consume = i;
1475 break;
1476 }
1477 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001478
Dave Barach9b8ffd92016-07-08 08:13:45 -04001479 if (i == UNIX_CLI_MAX_DEPTH_TELNET)
1480 consume = 1; /* hit max search depth, advance one byte */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001481
Dave Barach9b8ffd92016-07-08 08:13:45 -04001482 if (consume == 0)
1483 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001484
Dave Barach9b8ffd92016-07-08 08:13:45 -04001485 break;
1486 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001487
Dave Barach9b8ffd92016-07-08 08:13:45 -04001488 case GA:
1489 case EL:
1490 case EC:
1491 case AO:
1492 case IP:
1493 case BREAK:
1494 case DM:
1495 case NOP:
1496 case SE:
1497 case EOR:
1498 case ABORT:
1499 case SUSP:
1500 case xEOF:
1501 /* Simple one-byte messages */
1502 consume = 1;
1503 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001504
Dave Barach9b8ffd92016-07-08 08:13:45 -04001505 case AYT:
1506 /* Are You There - trigger a visible response */
1507 consume = 1;
1508 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "fd.io VPP\n", 10);
1509 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001510
Dave Barach9b8ffd92016-07-08 08:13:45 -04001511 default:
1512 /* Unknown command! Eat the IAC byte */
1513 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001514 }
1515
Dave Barach9b8ffd92016-07-08 08:13:45 -04001516 return consume;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001517}
1518
Chris Luke8e5b0412016-07-26 13:06:10 -04001519/** @brief Process actionable input.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001520 * Based on the \c action process the input; this typically involves
1521 * searching the command history or editing the current command line.
1522 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001523static int
1524unix_cli_line_process_one (unix_cli_main_t * cm,
1525 unix_main_t * um,
1526 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001527 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001528 u8 input, unix_cli_parse_action_t action)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001529{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001530 u8 *prev;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001531 u8 *save = 0;
1532 u8 **possible_commands;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001533 int j, delta;
1534
1535 switch (action)
1536 {
1537 case UNIX_CLI_PARSE_ACTION_NOACTION:
1538 break;
1539
Chris Luke0aca5eb2016-04-25 13:48:54 -04001540 case UNIX_CLI_PARSE_ACTION_REVSEARCH:
1541 case UNIX_CLI_PARSE_ACTION_FWDSEARCH:
Chris Luke7afda3a2016-04-25 13:49:22 -04001542 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001543 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001544 if (cf->search_mode == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001545 {
1546 /* Erase the current command (if any) */
Chris Lukefc379d22018-06-05 23:50:19 -04001547 for (; cf->cursor > 0; cf->cursor--)
1548 {
1549 unix_vlib_cli_output_cursor_left (cf, uf);
1550 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1551 unix_vlib_cli_output_cursor_left (cf, uf);
1552 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001553
Dave Barach9b8ffd92016-07-08 08:13:45 -04001554 vec_reset_length (cf->search_key);
1555 vec_reset_length (cf->current_command);
Chris Lukefc379d22018-06-05 23:50:19 -04001556
Dave Barach9b8ffd92016-07-08 08:13:45 -04001557 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1558 cf->search_mode = -1;
1559 else
1560 cf->search_mode = 1;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001561 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001562 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001563 {
1564 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1565 cf->search_mode = -1;
1566 else
1567 cf->search_mode = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001568
Dave Barach9b8ffd92016-07-08 08:13:45 -04001569 cf->excursion += cf->search_mode;
1570 goto search_again;
1571 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001572 break;
1573
1574 case UNIX_CLI_PARSE_ACTION_ERASELINELEFT:
1575 /* Erase the command from the cursor to the start */
1576
Chris Lukefc379d22018-06-05 23:50:19 -04001577 j = cf->cursor;
1578 /* Shimmy backwards to the new end of line position */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001579 delta = vec_len (cf->current_command) - cf->cursor;
Chris Lukefc379d22018-06-05 23:50:19 -04001580 for (; cf->cursor > delta; cf->cursor--)
1581 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001582 /* Zap from here to the end of what is currently displayed */
Chris Lukefc379d22018-06-05 23:50:19 -04001583 for (; cf->cursor < vec_len (cf->current_command); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001584 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001585 /* Get back to the start of the line */
Chris Lukefc379d22018-06-05 23:50:19 -04001586 for (; cf->cursor > 0; cf->cursor--)
1587 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001588
Chris Lukefc379d22018-06-05 23:50:19 -04001589 /* Delete the desired text from the command */
1590 memmove (cf->current_command, cf->current_command + j, delta);
1591 _vec_len (cf->current_command) = delta;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001592
1593 /* Print the new contents */
Chris Lukefc379d22018-06-05 23:50:19 -04001594 unix_vlib_cli_output_cooked (cf, uf, cf->current_command, delta);
1595 cf->cursor = delta; /* for backspace tracking */
1596
Chris Luke0aca5eb2016-04-25 13:48:54 -04001597 /* Shimmy back to the start */
Chris Lukefc379d22018-06-05 23:50:19 -04001598 for (; cf->cursor > 0; cf->cursor--)
1599 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001600
1601 cf->search_mode = 0;
1602 break;
1603
1604 case UNIX_CLI_PARSE_ACTION_ERASELINERIGHT:
1605 /* Erase the command from the cursor to the end */
1606
Chris Lukefc379d22018-06-05 23:50:19 -04001607 j = cf->cursor;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001608 /* Zap from cursor to end of what is currently displayed */
Chris Lukefc379d22018-06-05 23:50:19 -04001609 for (; cf->cursor < (vec_len (cf->current_command)); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001610 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001611 /* Get back to where we were */
Chris Lukefc379d22018-06-05 23:50:19 -04001612 for (; cf->cursor > j; cf->cursor--)
1613 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001614
1615 /* Truncate the line at the cursor */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001616 _vec_len (cf->current_command) = cf->cursor;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001617
1618 cf->search_mode = 0;
1619 break;
1620
Hiroki Shirokura67e4df12019-08-16 11:30:34 +00001621 case UNIX_CLI_PARSE_ACTION_ERASEWORDLEFT:
1622 /* calculate num of caracter to be erased */
1623 delta = 0;
1624 while (cf->cursor > delta
1625 && cf->current_command[cf->cursor - delta - 1] == ' ')
1626 delta++;
1627 while (cf->cursor > delta
1628 && cf->current_command[cf->cursor - delta - 1] != ' ')
1629 delta++;
1630
1631 if (vec_len (cf->current_command))
1632 {
1633 if (cf->cursor > 0)
1634 {
1635 /* move cursor left delta times */
1636 for (j = delta; j > 0; j--, cf->cursor--)
1637 unix_vlib_cli_output_cursor_left (cf, uf);
1638 save = cf->current_command + cf->cursor;
1639
1640 /* redraw remainder of line */
1641 memmove (cf->current_command + cf->cursor,
1642 cf->current_command + cf->cursor + delta,
1643 _vec_len (cf->current_command) - cf->cursor - delta);
1644 unix_vlib_cli_output_cooked (cf, uf,
1645 cf->current_command + cf->cursor,
1646 _vec_len (cf->current_command) -
1647 cf->cursor);
1648 cf->cursor += _vec_len (cf->current_command) - cf->cursor;
1649
1650 /* print delta amount of blank spaces,
1651 * then finally fix the cursor position */
1652 for (j = delta; j > 0; j--, cf->cursor--)
1653 unix_vlib_cli_output_cursor_left (cf, uf);
1654 for (j = delta; j > 0; j--, cf->cursor++)
1655 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1656 for (; (cf->current_command + cf->cursor) > save; cf->cursor--)
1657 unix_vlib_cli_output_cursor_left (cf, uf);
1658 _vec_len (cf->current_command) -= delta;
1659 }
1660 }
1661 cf->search_mode = 0;
1662 cf->excursion = 0;
1663 vec_reset_length (cf->search_key);
1664 break;
1665
Chris Luke0aca5eb2016-04-25 13:48:54 -04001666 case UNIX_CLI_PARSE_ACTION_LEFT:
1667 if (cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001668 {
Chris Lukefc379d22018-06-05 23:50:19 -04001669 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001670 cf->cursor--;
1671 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001672
1673 cf->search_mode = 0;
1674 break;
1675
1676 case UNIX_CLI_PARSE_ACTION_RIGHT:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001677 if (cf->cursor < vec_len (cf->current_command))
1678 {
1679 /* have to emit the character under the cursor */
1680 unix_vlib_cli_output_cooked (cf, uf,
1681 cf->current_command + cf->cursor, 1);
1682 cf->cursor++;
1683 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001684
1685 cf->search_mode = 0;
1686 break;
1687
1688 case UNIX_CLI_PARSE_ACTION_UP:
1689 case UNIX_CLI_PARSE_ACTION_DOWN:
Chris Luke7afda3a2016-04-25 13:49:22 -04001690 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001691 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001692 cf->search_mode = 0;
1693 /* Erase the command */
Chris Lukefc379d22018-06-05 23:50:19 -04001694 for (; cf->cursor < vec_len (cf->current_command); cf->cursor++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001695 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Lukefc379d22018-06-05 23:50:19 -04001696 for (; cf->cursor > 0; cf->cursor--)
1697 {
1698 unix_vlib_cli_output_cursor_left (cf, uf);
1699 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1700 unix_vlib_cli_output_cursor_left (cf, uf);
1701 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001702 vec_reset_length (cf->current_command);
1703 if (vec_len (cf->command_history))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001704 {
1705 if (action == UNIX_CLI_PARSE_ACTION_UP)
1706 delta = -1;
1707 else
1708 delta = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001709
Dave Barach9b8ffd92016-07-08 08:13:45 -04001710 cf->excursion += delta;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001711
Dave Barach9b8ffd92016-07-08 08:13:45 -04001712 if (cf->excursion == vec_len (cf->command_history))
1713 {
1714 /* down-arrowed to last entry - want a blank line */
1715 _vec_len (cf->current_command) = 0;
1716 }
1717 else if (cf->excursion < 0)
1718 {
1719 /* up-arrowed over the start to the end, want a blank line */
1720 cf->excursion = vec_len (cf->command_history);
1721 _vec_len (cf->current_command) = 0;
1722 }
1723 else
1724 {
1725 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
1726 /* down-arrowed past end - wrap to start */
1727 cf->excursion = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001728
Dave Barach9b8ffd92016-07-08 08:13:45 -04001729 /* Print the command at the current position */
1730 prev = cf->command_history[cf->excursion];
1731 vec_validate (cf->current_command, vec_len (prev) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001732
Dave Barach9b8ffd92016-07-08 08:13:45 -04001733 clib_memcpy (cf->current_command, prev, vec_len (prev));
1734 _vec_len (cf->current_command) = vec_len (prev);
1735 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
1736 vec_len (cf->current_command));
1737 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001738 }
Yoann Desmouceaux561ae0a2017-09-20 10:08:28 +02001739 cf->cursor = vec_len (cf->current_command);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001740 break;
1741
1742 case UNIX_CLI_PARSE_ACTION_HOME:
1743 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001744 {
Chris Lukefc379d22018-06-05 23:50:19 -04001745 for (; cf->cursor > 0; cf->cursor--)
1746 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001747 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001748
Chris Luke0aca5eb2016-04-25 13:48:54 -04001749 cf->search_mode = 0;
1750 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001751
Chris Luke0aca5eb2016-04-25 13:48:54 -04001752 case UNIX_CLI_PARSE_ACTION_END:
1753 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001754 cf->cursor < vec_len (cf->current_command))
1755 {
1756 unix_vlib_cli_output_cooked (cf, uf,
1757 cf->current_command + cf->cursor,
1758 vec_len (cf->current_command) -
1759 cf->cursor);
1760 cf->cursor = vec_len (cf->current_command);
1761 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001762
1763 cf->search_mode = 0;
1764 break;
1765
1766 case UNIX_CLI_PARSE_ACTION_WORDLEFT:
1767 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001768 {
Chris Lukefc379d22018-06-05 23:50:19 -04001769 unix_vlib_cli_output_cursor_left (cf, uf);
1770 cf->cursor--;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001771
Chris Lukefc379d22018-06-05 23:50:19 -04001772 while (cf->cursor && isspace (cf->current_command[cf->cursor]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001773 {
Chris Lukefc379d22018-06-05 23:50:19 -04001774 unix_vlib_cli_output_cursor_left (cf, uf);
1775 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001776 }
Chris Lukefc379d22018-06-05 23:50:19 -04001777 while (cf->cursor && !isspace (cf->current_command[cf->cursor]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001778 {
Chris Lukefc379d22018-06-05 23:50:19 -04001779 if (isspace (cf->current_command[cf->cursor - 1]))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001780 break;
Chris Lukefc379d22018-06-05 23:50:19 -04001781 unix_vlib_cli_output_cursor_left (cf, uf);
1782 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001783 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001784
Dave Barach9b8ffd92016-07-08 08:13:45 -04001785 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001786
1787 cf->search_mode = 0;
1788 break;
1789
1790 case UNIX_CLI_PARSE_ACTION_WORDRIGHT:
1791 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001792 cf->cursor < vec_len (cf->current_command))
1793 {
1794 int e = vec_len (cf->current_command);
1795 j = cf->cursor;
1796 while (j < e && !isspace (cf->current_command[j]))
1797 j++;
1798 while (j < e && isspace (cf->current_command[j]))
1799 j++;
1800 unix_vlib_cli_output_cooked (cf, uf,
1801 cf->current_command + cf->cursor,
1802 j - cf->cursor);
1803 cf->cursor = j;
1804 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001805
1806 cf->search_mode = 0;
1807 break;
1808
1809
1810 case UNIX_CLI_PARSE_ACTION_ERASE:
1811 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001812 {
1813 if (cf->cursor == vec_len (cf->current_command))
1814 {
Chris Lukefc379d22018-06-05 23:50:19 -04001815 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04001816 cf->cursor--;
Chris Lukefc379d22018-06-05 23:50:19 -04001817 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1818 cf->cursor++;
1819 unix_vlib_cli_output_cursor_left (cf, uf);
1820 cf->cursor--;
1821 _vec_len (cf->current_command)--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001822 }
1823 else if (cf->cursor > 0)
1824 {
1825 /* shift everything at & to the right of the cursor left by 1 */
1826 j = vec_len (cf->current_command) - cf->cursor;
1827 memmove (cf->current_command + cf->cursor - 1,
1828 cf->current_command + cf->cursor, j);
1829 _vec_len (cf->current_command)--;
Chris Lukefc379d22018-06-05 23:50:19 -04001830
Dave Barach9b8ffd92016-07-08 08:13:45 -04001831 /* redraw the rest of the line */
Chris Lukefc379d22018-06-05 23:50:19 -04001832 unix_vlib_cli_output_cursor_left (cf, uf);
1833 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001834 unix_vlib_cli_output_cooked (cf, uf,
1835 cf->current_command + cf->cursor,
1836 j);
Chris Lukefc379d22018-06-05 23:50:19 -04001837 cf->cursor += j;
1838 /* erase last char */
1839 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1840 cf->cursor++;
1841
Dave Barach9b8ffd92016-07-08 08:13:45 -04001842 /* and shift the terminal cursor back where it should be */
Chris Lukefc379d22018-06-05 23:50:19 -04001843 j += 2; /* account for old string length and offset position */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001844 while (--j)
Chris Lukefc379d22018-06-05 23:50:19 -04001845 {
1846 unix_vlib_cli_output_cursor_left (cf, uf);
1847 cf->cursor--;
1848 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001849 }
1850 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001851 cf->search_mode = 0;
1852 cf->excursion = 0;
1853 vec_reset_length (cf->search_key);
1854 break;
1855
1856 case UNIX_CLI_PARSE_ACTION_ERASERIGHT:
1857 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001858 {
1859 if (cf->cursor < vec_len (cf->current_command))
1860 {
1861 /* shift everything to the right of the cursor left by 1 */
1862 j = vec_len (cf->current_command) - cf->cursor - 1;
1863 memmove (cf->current_command + cf->cursor,
1864 cf->current_command + cf->cursor + 1, j);
1865 _vec_len (cf->current_command)--;
1866 /* redraw the rest of the line */
1867 unix_vlib_cli_output_cooked (cf, uf,
1868 cf->current_command + cf->cursor,
1869 j);
Chris Lukefc379d22018-06-05 23:50:19 -04001870 cf->cursor += j;
1871 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
1872 cf->cursor++;
1873 unix_vlib_cli_output_cursor_left (cf, uf);
1874 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001875 /* and shift the terminal cursor back where it should be */
1876 if (j)
1877 {
Chris Lukefc379d22018-06-05 23:50:19 -04001878 unix_vlib_cli_output_cursor_left (cf, uf);
1879 cf->cursor--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04001880 while (--j)
Chris Lukefc379d22018-06-05 23:50:19 -04001881 {
1882 unix_vlib_cli_output_cursor_left (cf, uf);
1883 cf->cursor--;
1884 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04001885 }
1886 }
1887 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001888 else if (input == 'D' - '@')
Dave Barach9b8ffd92016-07-08 08:13:45 -04001889 {
1890 /* ^D with no command entered = quit */
1891 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "quit\n", 5);
1892 vlib_process_signal_event (um->vlib_main,
1893 vlib_current_process (um->vlib_main),
1894 UNIX_CLI_PROCESS_EVENT_QUIT,
1895 cf - cm->cli_file_pool);
1896 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001897 cf->search_mode = 0;
1898 cf->excursion = 0;
1899 vec_reset_length (cf->search_key);
1900 break;
1901
1902 case UNIX_CLI_PARSE_ACTION_CLEAR:
1903 /* If we're in ANSI mode, clear the screen.
1904 * Then redraw the prompt and any existing command input, then put
1905 * the cursor back where it was in that line.
1906 */
1907 if (cf->ansi_capable)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001908 unix_vlib_cli_output_cooked (cf, uf,
1909 (u8 *) ANSI_CLEAR,
1910 sizeof (ANSI_CLEAR) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001911 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001912 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001913
1914 unix_vlib_cli_output_raw (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001915 cm->cli_prompt, vec_len (cm->cli_prompt));
Chris Lukefc379d22018-06-05 23:50:19 -04001916 unix_vlib_cli_output_cooked (cf, uf,
1917 cf->current_command,
1918 vec_len (cf->current_command));
1919 j = cf->cursor;
1920 cf->cursor = vec_len (cf->current_command);
1921 for (; cf->cursor > j; cf->cursor--)
1922 unix_vlib_cli_output_cursor_left (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001923
1924 break;
1925
Chris Luke7afda3a2016-04-25 13:49:22 -04001926 case UNIX_CLI_PARSE_ACTION_TAB:
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001927 if (cf->cursor < vec_len (cf->current_command))
1928 {
1929 /* if we are in the middle of a line, complete only if
1930 * the cursor points to whitespace */
1931 if (isspace (cf->current_command[cf->cursor]))
1932 {
1933 /* save and clear any input that is after the cursor */
1934 vec_resize (save, vec_len (cf->current_command) - cf->cursor);
1935 clib_memcpy (save, cf->current_command + cf->cursor,
1936 vec_len (cf->current_command) - cf->cursor);
1937 _vec_len (cf->current_command) = cf->cursor;
1938 }
1939 else
1940 {
1941 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
1942 break;
1943 }
1944 }
1945 possible_commands =
1946 vlib_cli_get_possible_completions (cf->current_command);
1947 if (vec_len (possible_commands) == 1)
1948 {
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001949 u8 *completed = possible_commands[0];
Chris Lukefc379d22018-06-05 23:50:19 -04001950 j = cf->cursor;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001951
1952 /* find the last word of current_command */
1953 while (j >= 1 && !isspace (cf->current_command[j - 1]))
1954 {
Chris Lukefc379d22018-06-05 23:50:19 -04001955 unix_vlib_cli_output_cursor_left (cf, uf);
1956 cf->cursor--;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001957 j--;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001958 }
1959 _vec_len (cf->current_command) = j;
1960
1961 /* replace it with the newly expanded command */
1962 vec_append (cf->current_command, completed);
1963
1964 /* echo to the terminal */
Chris Lukefc379d22018-06-05 23:50:19 -04001965 unix_vlib_cli_output_cooked (cf, uf, completed,
1966 vec_len (completed));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001967
1968 /* add one trailing space if needed */
1969 if (vec_len (save) == 0)
1970 {
1971 vec_add1 (cf->current_command, ' ');
Chris Lukefc379d22018-06-05 23:50:19 -04001972 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001973 }
1974
1975 cf->cursor = vec_len (cf->current_command);
1976
1977 }
1978 else if (vec_len (possible_commands) >= 2)
1979 {
1980 u8 **possible_command;
1981 uword max_command_len = 0, min_command_len = ~0;
Chris Lukefc379d22018-06-05 23:50:19 -04001982 u32 i;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001983
1984 vec_foreach (possible_command, possible_commands)
1985 {
1986 if (vec_len (*possible_command) > max_command_len)
Chris Lukefc379d22018-06-05 23:50:19 -04001987 max_command_len = vec_len (*possible_command);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001988 if (vec_len (*possible_command) < min_command_len)
Chris Lukefc379d22018-06-05 23:50:19 -04001989 min_command_len = vec_len (*possible_command);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001990 }
1991
1992 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1993
1994 i = 0;
1995 vec_foreach (possible_command, possible_commands)
1996 {
1997 if (i + max_command_len >= cf->width)
1998 {
1999 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2000 i = 0;
2001 }
Chris Lukefc379d22018-06-05 23:50:19 -04002002 unix_vlib_cli_output_cooked (cf, uf, *possible_command,
2003 vec_len (*possible_command));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002004 for (j = vec_len (*possible_command); j < max_command_len + 2;
2005 j++)
2006 {
Chris Lukefc379d22018-06-05 23:50:19 -04002007 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002008 }
2009 i += max_command_len + 2;
2010 }
2011
2012 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2013
2014 /* rewrite prompt */
2015 unix_cli_cli_prompt (cf, uf);
Chris Lukefc379d22018-06-05 23:50:19 -04002016 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
2017 vec_len (cf->current_command));
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002018
2019 /* count length of last word */
2020 j = cf->cursor;
2021 i = 0;
2022 while (j >= 1 && !isspace (cf->current_command[j - 1]))
2023 {
2024 j--;
2025 i++;
2026 }
2027
2028 /* determine smallest common command */
2029 for (; i < min_command_len; i++)
2030 {
2031 u8 common = '\0';
2032 int stop = 0;
Chris Lukefc379d22018-06-05 23:50:19 -04002033
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002034 vec_foreach (possible_command, possible_commands)
2035 {
2036 if (common == '\0')
2037 {
2038 common = (*possible_command)[i];
2039 }
2040 else if (common != (*possible_command)[i])
2041 {
2042 stop = 1;
2043 break;
2044 }
2045 }
Chris Lukefc379d22018-06-05 23:50:19 -04002046
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002047 if (!stop)
2048 {
2049 vec_add1 (cf->current_command, common);
2050 cf->cursor++;
Chris Lukefc379d22018-06-05 23:50:19 -04002051 unix_vlib_cli_output_cooked (cf, uf, (u8 *) & common, 1);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002052 }
2053 else
2054 {
2055 break;
2056 }
2057 }
2058 }
2059 else
2060 {
2061 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
2062 }
2063
2064 if (vec_len (save) > 0)
2065 {
2066 /* restore remaining input if tab was hit in the middle of a line */
Chris Lukefc379d22018-06-05 23:50:19 -04002067 unix_vlib_cli_output_cooked (cf, uf, save, vec_len (save));
2068 cf->cursor += vec_len (save);
2069 for (j = 0; j < vec_len (save); j++, cf->cursor--)
2070 unix_vlib_cli_output_cursor_left (cf, uf);
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02002071 vec_append (cf->current_command, save);
2072 vec_free (save);
2073 }
2074 vec_free (possible_commands);
2075
2076 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04002077 case UNIX_CLI_PARSE_ACTION_YANK:
2078 /* TODO */
2079 break;
2080
2081
2082 case UNIX_CLI_PARSE_ACTION_PAGER_QUIT:
2083 pager_quit:
2084 unix_cli_pager_prompt_erase (cf, uf);
2085 unix_cli_pager_reset (cf);
2086 unix_cli_cli_prompt (cf, uf);
2087 break;
2088
2089 case UNIX_CLI_PARSE_ACTION_PAGER_NEXT:
2090 case UNIX_CLI_PARSE_ACTION_PAGER_PGDN:
2091 /* show next page of the buffer */
Chris Luke70a745d2018-06-10 10:47:50 -04002092 if (cf->height + cf->pager_start <= vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002093 {
2094 u8 *line = NULL;
2095 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002096
Dave Barach9b8ffd92016-07-08 08:13:45 -04002097 int m = cf->pager_start + (cf->height - 1);
2098 unix_cli_pager_prompt_erase (cf, uf);
2099 for (j = m;
2100 j < vec_len (cf->pager_index) && cf->pager_start < m;
2101 j++, cf->pager_start++)
2102 {
2103 pi = &cf->pager_index[j];
2104 line = cf->pager_vector[pi->line] + pi->offset;
2105 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2106 }
2107 /* if the last line didn't end in newline, add a newline */
2108 if (pi && line[pi->length - 1] != '\n')
2109 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2110 unix_cli_pager_prompt (cf, uf);
2111 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002112 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002113 {
2114 if (action == UNIX_CLI_PARSE_ACTION_PAGER_NEXT)
2115 /* no more in buffer, exit, but only if it was <space> */
2116 goto pager_quit;
2117 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002118 break;
2119
2120 case UNIX_CLI_PARSE_ACTION_PAGER_DN:
2121 case UNIX_CLI_PARSE_ACTION_PAGER_CRLF:
2122 /* display the next line of the buffer */
Chris Luke70a745d2018-06-10 10:47:50 -04002123 if (cf->height + cf->pager_start <= vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002124 {
2125 u8 *line;
2126 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -04002127
Dave Barach9b8ffd92016-07-08 08:13:45 -04002128 unix_cli_pager_prompt_erase (cf, uf);
2129 pi = &cf->pager_index[cf->pager_start + (cf->height - 1)];
2130 line = cf->pager_vector[pi->line] + pi->offset;
2131 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2132 cf->pager_start++;
2133 /* if the last line didn't end in newline, add a newline */
2134 if (line[pi->length - 1] != '\n')
2135 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2136 unix_cli_pager_prompt (cf, uf);
2137 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002138 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002139 {
2140 if (action == UNIX_CLI_PARSE_ACTION_PAGER_CRLF)
2141 /* no more in buffer, exit, but only if it was <enter> */
2142 goto pager_quit;
2143 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002144
2145 break;
2146
2147 case UNIX_CLI_PARSE_ACTION_PAGER_UP:
2148 /* scroll the page back one line */
2149 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002150 {
2151 u8 *line = NULL;
2152 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002153
Dave Barach9b8ffd92016-07-08 08:13:45 -04002154 cf->pager_start--;
2155 if (cf->ansi_capable)
2156 {
2157 pi = &cf->pager_index[cf->pager_start];
2158 line = cf->pager_vector[pi->line] + pi->offset;
2159 unix_cli_pager_prompt_erase (cf, uf);
2160 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SCROLLDN,
2161 sizeof (ANSI_SCROLLDN) - 1);
2162 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SAVECURSOR,
2163 sizeof (ANSI_SAVECURSOR) - 1);
2164 unix_cli_ansi_cursor (cf, uf, 1, 1);
2165 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_CLEARLINE,
2166 sizeof (ANSI_CLEARLINE) - 1);
2167 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2168 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_RESTCURSOR,
2169 sizeof (ANSI_RESTCURSOR) - 1);
2170 unix_cli_pager_prompt_erase (cf, uf);
2171 unix_cli_pager_prompt (cf, uf);
2172 }
2173 else
2174 {
2175 int m = cf->pager_start + (cf->height - 1);
2176 unix_cli_pager_prompt_erase (cf, uf);
2177 for (j = cf->pager_start;
2178 j < vec_len (cf->pager_index) && j < m; j++)
2179 {
2180 pi = &cf->pager_index[j];
2181 line = cf->pager_vector[pi->line] + pi->offset;
2182 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2183 }
2184 /* if the last line didn't end in newline, add a newline */
2185 if (pi && line[pi->length - 1] != '\n')
2186 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2187 unix_cli_pager_prompt (cf, uf);
2188 }
2189 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002190 break;
2191
2192 case UNIX_CLI_PARSE_ACTION_PAGER_TOP:
2193 /* back to the first page of the buffer */
2194 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002195 {
2196 u8 *line = NULL;
2197 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002198
Dave Barach9b8ffd92016-07-08 08:13:45 -04002199 cf->pager_start = 0;
2200 int m = cf->pager_start + (cf->height - 1);
2201 unix_cli_pager_prompt_erase (cf, uf);
2202 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
2203 j++)
2204 {
2205 pi = &cf->pager_index[j];
2206 line = cf->pager_vector[pi->line] + pi->offset;
2207 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2208 }
2209 /* if the last line didn't end in newline, add a newline */
2210 if (pi && line[pi->length - 1] != '\n')
2211 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2212 unix_cli_pager_prompt (cf, uf);
2213 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002214 break;
2215
2216 case UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM:
2217 /* skip to the last page of the buffer */
Chris Luke862623d2016-05-14 10:13:34 -04002218 if (cf->pager_start < vec_len (cf->pager_index) - (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002219 {
2220 u8 *line = NULL;
2221 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04002222
Dave Barach9b8ffd92016-07-08 08:13:45 -04002223 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
2224 unix_cli_pager_prompt_erase (cf, uf);
2225 unix_cli_pager_message (cf, uf, "skipping", "\n");
2226 for (j = cf->pager_start; j < vec_len (cf->pager_index); j++)
2227 {
2228 pi = &cf->pager_index[j];
2229 line = cf->pager_vector[pi->line] + pi->offset;
2230 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2231 }
2232 /* if the last line didn't end in newline, add a newline */
2233 if (pi && line[pi->length - 1] != '\n')
2234 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2235 unix_cli_pager_prompt (cf, uf);
2236 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002237 break;
2238
2239 case UNIX_CLI_PARSE_ACTION_PAGER_PGUP:
2240 /* wander back one page in the buffer */
2241 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002242 {
2243 u8 *line = NULL;
2244 unix_cli_pager_index_t *pi = NULL;
2245 int m;
Chris Luke862623d2016-05-14 10:13:34 -04002246
Dave Barach9b8ffd92016-07-08 08:13:45 -04002247 if (cf->pager_start >= cf->height)
2248 cf->pager_start -= cf->height - 1;
2249 else
2250 cf->pager_start = 0;
2251 m = cf->pager_start + cf->height - 1;
2252 unix_cli_pager_prompt_erase (cf, uf);
2253 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
2254 j++)
2255 {
2256 pi = &cf->pager_index[j];
2257 line = cf->pager_vector[pi->line] + pi->offset;
2258 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
2259 }
2260 /* if the last line didn't end in newline, add a newline */
2261 if (pi && line[pi->length - 1] != '\n')
2262 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2263 unix_cli_pager_prompt (cf, uf);
2264 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002265 break;
2266
Chris Luke862623d2016-05-14 10:13:34 -04002267 case UNIX_CLI_PARSE_ACTION_PAGER_REDRAW:
2268 /* Redraw the current pager screen */
2269 unix_cli_pager_redraw (cf, uf);
2270 break;
2271
Chris Luke7afda3a2016-04-25 13:49:22 -04002272 case UNIX_CLI_PARSE_ACTION_PAGER_SEARCH:
2273 /* search forwards in the buffer */
2274 break;
2275
2276
Chris Luke0aca5eb2016-04-25 13:48:54 -04002277 case UNIX_CLI_PARSE_ACTION_CRLF:
2278 crlf:
Chris Luke0aca5eb2016-04-25 13:48:54 -04002279 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
2280
Chris Luke7afda3a2016-04-25 13:49:22 -04002281 if (cf->has_history && cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002282 {
2283 if (cf->command_history
2284 && vec_len (cf->command_history) >= cf->history_limit)
2285 {
2286 vec_free (cf->command_history[0]);
2287 vec_delete (cf->command_history, 1, 0);
2288 }
2289 /* Don't add blank lines to the cmd history */
2290 if (vec_len (cf->current_command))
2291 {
2292 /* Don't duplicate the previous command */
2293 j = vec_len (cf->command_history);
2294 if (j == 0 ||
2295 (vec_len (cf->current_command) !=
2296 vec_len (cf->command_history[j - 1])
2297 || memcmp (cf->current_command, cf->command_history[j - 1],
2298 vec_len (cf->current_command)) != 0))
2299 {
2300 /* copy the command to the history */
2301 u8 *c = 0;
2302 vec_append (c, cf->current_command);
2303 vec_add1 (cf->command_history, c);
2304 cf->command_number++;
2305 }
2306 }
2307 cf->excursion = vec_len (cf->command_history);
2308 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002309
Chris Luke0aca5eb2016-04-25 13:48:54 -04002310 cf->search_mode = 0;
2311 vec_reset_length (cf->search_key);
2312 cf->cursor = 0;
2313
2314 return 0;
2315
Chris Luke7afda3a2016-04-25 13:49:22 -04002316 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
2317 case UNIX_CLI_PARSE_ACTION_NOMATCH:
Chris Luke862623d2016-05-14 10:13:34 -04002318 if (vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002319 {
2320 /* no-op for now */
2321 }
Chris Lukefc379d22018-06-05 23:50:19 -04002322 else if (cf->has_history && cf->search_mode != 0 && isprint (input))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002323 {
2324 int k, limit, offset;
2325 u8 *item;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002326
Dave Barach9b8ffd92016-07-08 08:13:45 -04002327 vec_add1 (cf->search_key, input);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002328
Dave Barach9b8ffd92016-07-08 08:13:45 -04002329 search_again:
2330 for (j = 0; j < vec_len (cf->command_history); j++)
2331 {
2332 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
2333 cf->excursion = 0;
2334 else if (cf->excursion < 0)
2335 cf->excursion = vec_len (cf->command_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002336
Dave Barach9b8ffd92016-07-08 08:13:45 -04002337 item = cf->command_history[cf->excursion];
Ed Warnickecb9cada2015-12-08 15:45:58 -07002338
Dave Barach9b8ffd92016-07-08 08:13:45 -04002339 limit = (vec_len (cf->search_key) > vec_len (item)) ?
2340 vec_len (item) : vec_len (cf->search_key);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002341
Dave Barach9b8ffd92016-07-08 08:13:45 -04002342 for (offset = 0; offset <= vec_len (item) - limit; offset++)
2343 {
2344 for (k = 0; k < limit; k++)
2345 {
2346 if (item[k + offset] != cf->search_key[k])
2347 goto next_offset;
2348 }
2349 goto found_at_offset;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002350
Dave Barach9b8ffd92016-07-08 08:13:45 -04002351 next_offset:
2352 ;
2353 }
2354 goto next;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002355
Dave Barach9b8ffd92016-07-08 08:13:45 -04002356 found_at_offset:
Chris Lukefc379d22018-06-05 23:50:19 -04002357 for (; cf->cursor > 0; cf->cursor--)
2358 {
2359 unix_vlib_cli_output_cursor_left (cf, uf);
2360 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
2361 unix_vlib_cli_output_cursor_left (cf, uf);
2362 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002363
Dave Barach9b8ffd92016-07-08 08:13:45 -04002364 vec_validate (cf->current_command, vec_len (item) - 1);
2365 clib_memcpy (cf->current_command, item, vec_len (item));
2366 _vec_len (cf->current_command) = vec_len (item);
Chris Luke93dcd1d2016-05-10 10:45:10 -04002367
Dave Barach9b8ffd92016-07-08 08:13:45 -04002368 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
2369 vec_len (cf->current_command));
2370 cf->cursor = vec_len (cf->current_command);
2371 goto found;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002372
Dave Barach9b8ffd92016-07-08 08:13:45 -04002373 next:
2374 cf->excursion += cf->search_mode;
2375 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002376
Dave Barach9b8ffd92016-07-08 08:13:45 -04002377 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\nNo match...", 12);
2378 vec_reset_length (cf->search_key);
2379 vec_reset_length (cf->current_command);
2380 cf->search_mode = 0;
2381 cf->cursor = 0;
2382 goto crlf;
2383 }
2384 else if (isprint (input)) /* skip any errant control codes */
2385 {
2386 if (cf->cursor == vec_len (cf->current_command))
2387 {
2388 /* Append to end */
2389 vec_add1 (cf->current_command, input);
2390 cf->cursor++;
Chris Luke7afda3a2016-04-25 13:49:22 -04002391
Dave Barach9b8ffd92016-07-08 08:13:45 -04002392 /* Echo the character back to the client */
Chris Lukefc379d22018-06-05 23:50:19 -04002393 unix_vlib_cli_output_cooked (cf, uf, &input, 1);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002394 }
2395 else
2396 {
2397 /* Insert at cursor: resize +1 byte, move everything over */
2398 j = vec_len (cf->current_command) - cf->cursor;
2399 vec_add1 (cf->current_command, (u8) 'A');
2400 memmove (cf->current_command + cf->cursor + 1,
2401 cf->current_command + cf->cursor, j);
2402 cf->current_command[cf->cursor] = input;
2403 /* Redraw the line */
2404 j++;
Chris Lukefc379d22018-06-05 23:50:19 -04002405 unix_vlib_cli_output_cooked (cf, uf,
2406 cf->current_command + cf->cursor,
2407 j);
2408 cf->cursor += j;
2409 j--;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002410 /* Put terminal cursor back */
Chris Lukefc379d22018-06-05 23:50:19 -04002411 for (; j > 0; j--, cf->cursor--)
2412 unix_vlib_cli_output_cursor_left (cf, uf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002413 }
2414 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002415 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002416 {
2417 /* no-op - not printable or otherwise not actionable */
2418 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002419
2420 found:
2421
2422 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04002423
2424 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2425 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002426 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04002427 return 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002428}
2429
Chris Luke8e5b0412016-07-26 13:06:10 -04002430/** @brief Process input bytes on a stream to provide line editing and
Chris Luke0aca5eb2016-04-25 13:48:54 -04002431 * command history in the CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002432static int
Damjan Marion56dd5432017-09-08 19:52:02 +02002433unix_cli_line_edit (unix_cli_main_t * cm, unix_main_t * um,
2434 clib_file_main_t * fm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04002435{
Damjan Marion56dd5432017-09-08 19:52:02 +02002436 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002437 int i;
2438
2439 for (i = 0; i < vec_len (cf->input_vector); i++)
2440 {
2441 unix_cli_parse_action_t action;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002442 i32 matched = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04002443 unix_cli_parse_actions_t *a;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002444
Chris Luke7afda3a2016-04-25 13:49:22 -04002445 /* If we're in the pager mode, search the pager actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002446 a =
2447 vec_len (cf->pager_index) ? unix_cli_parse_pager :
2448 unix_cli_parse_strings;
Chris Luke7afda3a2016-04-25 13:49:22 -04002449
Chris Luke93dcd1d2016-05-10 10:45:10 -04002450 /* See if the input buffer is some sort of control code */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002451 action = unix_cli_match_action (a, &cf->input_vector[i],
2452 vec_len (cf->input_vector) - i,
2453 &matched);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002454
2455 switch (action)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002456 {
2457 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
2458 if (i)
2459 {
2460 /* There was a partial match which means we need more bytes
2461 * than the input buffer currently has.
2462 * Since the bytes before here have been processed, shift
2463 * the remaining contents to the start of the input buffer.
2464 */
2465 vec_delete (cf->input_vector, i, 0);
2466 }
2467 return 1; /* wait for more */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002468
Dave Barach9b8ffd92016-07-08 08:13:45 -04002469 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2470 /* process telnet options */
2471 matched = unix_cli_process_telnet (um, cf, uf,
2472 cf->input_vector + i,
2473 vec_len (cf->input_vector) - i);
2474 if (matched < 0)
2475 {
Chris Luke03add7f2017-09-20 23:31:24 -04002476 /* There was a partial match which means we need more bytes
2477 * than the input buffer currently has.
2478 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002479 if (i)
2480 {
Chris Luke03add7f2017-09-20 23:31:24 -04002481 /*
Dave Barach9b8ffd92016-07-08 08:13:45 -04002482 * Since the bytes before here have been processed, shift
2483 * the remaining contents to the start of the input buffer.
2484 */
2485 vec_delete (cf->input_vector, i, 0);
2486 }
2487 return 1; /* wait for more */
2488 }
2489 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002490
Dave Barach9b8ffd92016-07-08 08:13:45 -04002491 default:
Chris Luke03add7f2017-09-20 23:31:24 -04002492 /* If telnet option processing switched us to line mode, get us
2493 * out of here!
2494 */
2495 if (cf->line_mode)
2496 {
2497 vec_delete (cf->input_vector, i, 0);
2498 cf->current_command = cf->input_vector;
2499 return 0;
2500 }
2501
Dave Barach9b8ffd92016-07-08 08:13:45 -04002502 /* process the action */
2503 if (!unix_cli_line_process_one (cm, um, cf, uf,
2504 cf->input_vector[i], action))
2505 {
2506 /* CRLF found. Consume the bytes from the input_vector */
2507 vec_delete (cf->input_vector, i + matched, 0);
2508 /* And tell our caller to execute cf->input_command */
2509 return 0;
2510 }
2511 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002512
2513 i += matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002514 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002515
Dave Barach9b8ffd92016-07-08 08:13:45 -04002516 vec_reset_length (cf->input_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002517 return 1;
2518}
2519
Chris Luke8e5b0412016-07-26 13:06:10 -04002520/** @brief Process input to a CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002521static void
2522unix_cli_process_input (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002523{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002524 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002525 clib_file_main_t *fm = &file_main;
2526 clib_file_t *uf;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002527 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002528 unformat_input_t input;
2529 int vlib_parse_eval (u8 *);
2530
Chris Luke03add7f2017-09-20 23:31:24 -04002531 cm->current_input_file_index = cli_file_index;
2532
Chris Luke93dcd1d2016-05-10 10:45:10 -04002533more:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002534 /* Try vlibplex first. Someday... */
2535 if (0 && vlib_parse_eval (cf->input_vector) == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002536 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002537
Chris Luke03add7f2017-09-20 23:31:24 -04002538
Chris Luke93dcd1d2016-05-10 10:45:10 -04002539 if (cf->line_mode)
2540 {
2541 /* just treat whatever we got as a complete line of input */
2542 cf->current_command = cf->input_vector;
2543 }
2544 else
2545 {
2546 /* Line edit, echo, etc. */
Damjan Marion56dd5432017-09-08 19:52:02 +02002547 if (unix_cli_line_edit (cm, um, fm, cf))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002548 /* want more input */
2549 return;
Chris Luke93dcd1d2016-05-10 10:45:10 -04002550 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002551
2552 if (um->log_fd)
2553 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002554 static u8 *lv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002555 vec_reset_length (lv);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002556 lv = format (lv, "%U[%d]: %v",
2557 format_timeval, 0 /* current bat-time */ ,
2558 0 /* current bat-format */ ,
Chris Luke03add7f2017-09-20 23:31:24 -04002559 cli_file_index, cf->current_command);
2560 int rv __attribute__ ((unused)) = write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002561 }
2562
Chris Luke03add7f2017-09-20 23:31:24 -04002563 /* Build an unformat structure around our command */
Chris Luke93dcd1d2016-05-10 10:45:10 -04002564 unformat_init_vector (&input, cf->current_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002565
2566 /* Remove leading white space from input. */
2567 (void) unformat (&input, "");
2568
Dave Barach9b8ffd92016-07-08 08:13:45 -04002569 cf->pager_start = 0; /* start a new pager session */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002570
2571 if (unformat_check_input (&input) != UNFORMAT_END_OF_INPUT)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002572 vlib_cli_input (um->vlib_main, &input, unix_vlib_cli_output,
2573 cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002574
Ed Warnickecb9cada2015-12-08 15:45:58 -07002575 /* Zero buffer since otherwise unformat_free will call vec_free on it. */
2576 input.buffer = 0;
2577
2578 unformat_free (&input);
2579
Chris Luke93dcd1d2016-05-10 10:45:10 -04002580 /* Re-fetch pointer since pool may have moved. */
2581 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002582 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke93dcd1d2016-05-10 10:45:10 -04002583
Ed Warnickecb9cada2015-12-08 15:45:58 -07002584done:
Chris Luke93dcd1d2016-05-10 10:45:10 -04002585 /* reset vector; we'll re-use it later */
2586 if (cf->line_mode)
Chris Luke03add7f2017-09-20 23:31:24 -04002587 {
2588 vec_reset_length (cf->input_vector);
2589 cf->current_command = 0;
2590 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002591 else
Chris Luke03add7f2017-09-20 23:31:24 -04002592 {
2593 vec_reset_length (cf->current_command);
2594 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002595
Chris Luke7afda3a2016-04-25 13:49:22 -04002596 if (cf->no_pager == 2)
2597 {
2598 /* Pager was programmatically disabled */
2599 unix_cli_pager_message (cf, uf, "pager buffer overflowed", "\n");
2600 cf->no_pager = um->cli_no_pager;
2601 }
2602
Dave Barach9b8ffd92016-07-08 08:13:45 -04002603 if (vec_len (cf->pager_index) == 0
2604 || vec_len (cf->pager_index) < cf->height)
Chris Luke7afda3a2016-04-25 13:49:22 -04002605 {
2606 /* There was no need for the pager */
2607 unix_cli_pager_reset (cf);
2608
2609 /* Prompt. */
2610 unix_cli_cli_prompt (cf, uf);
2611 }
2612 else
2613 {
2614 /* Display the pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002615 unix_cli_pager_prompt (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04002616 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002617
Dave Barach9b8ffd92016-07-08 08:13:45 -04002618 /* Any residual data in the input vector? */
2619 if (vec_len (cf->input_vector))
2620 goto more;
Chris Luke03add7f2017-09-20 23:31:24 -04002621
2622 /* For non-interactive sessions send a NUL byte.
2623 * Specifically this is because vppctl needs to see some traffic in
2624 * order to move on to closing the session. Commands with no output
2625 * would thus cause vppctl to hang indefinitely in non-interactive mode
2626 * since there is also no prompt sent after the command completes.
2627 */
2628 if (!cf->is_interactive)
2629 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\0", 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002630}
2631
Chris Luke54ccf222016-07-25 16:38:11 -04002632/** Destroy a CLI session.
2633 * @note If we destroy the @c stdin session this additionally signals
2634 * the shutdown of VPP.
2635 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002636static void
2637unix_cli_kill (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002638{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002639 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002640 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002641 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002642 clib_file_t *uf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002643 int i;
2644
Steve Shin0d5a1952018-06-29 09:40:20 -07002645 /* Validate cli_file_index */
2646 if (pool_is_free_index (cm->cli_file_pool, cli_file_index))
2647 return;
2648
Ed Warnickecb9cada2015-12-08 15:45:58 -07002649 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002650 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002651
2652 /* Quit/EOF on stdin means quit program. */
Chris Luke03add7f2017-09-20 23:31:24 -04002653 if (uf->file_descriptor == STDIN_FILENO)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002654 clib_longjmp (&um->vlib_main->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI);
2655
2656 vec_free (cf->current_command);
2657 vec_free (cf->search_key);
2658
2659 for (i = 0; i < vec_len (cf->command_history); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002660 vec_free (cf->command_history[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002661
2662 vec_free (cf->command_history);
2663
Damjan Marion56dd5432017-09-08 19:52:02 +02002664 clib_file_del (fm, uf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002665
2666 unix_cli_file_free (cf);
2667 pool_put (cm->cli_file_pool, cf);
2668}
2669
Chris Luke54ccf222016-07-25 16:38:11 -04002670/** Handle system events. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002671static uword
2672unix_cli_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002673 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002674{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002675 unix_cli_main_t *cm = &unix_cli_main;
2676 uword i, *data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002677
2678 while (1)
2679 {
2680 unix_cli_process_event_type_t event_type;
2681 vlib_process_wait_for_event (vm);
2682 event_type = vlib_process_get_events (vm, &data);
2683
2684 switch (event_type)
2685 {
2686 case UNIX_CLI_PROCESS_EVENT_READ_READY:
2687 for (i = 0; i < vec_len (data); i++)
2688 unix_cli_process_input (cm, data[i]);
2689 break;
2690
2691 case UNIX_CLI_PROCESS_EVENT_QUIT:
2692 /* Kill this process. */
2693 for (i = 0; i < vec_len (data); i++)
2694 unix_cli_kill (cm, data[i]);
2695 goto done;
2696 }
2697
2698 if (data)
2699 _vec_len (data) = 0;
2700 }
2701
Dave Barach9b8ffd92016-07-08 08:13:45 -04002702done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002703 vec_free (data);
2704
2705 vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED);
2706
2707 /* Add node index so we can re-use this process later. */
2708 vec_add1 (cm->unused_cli_process_node_indices, rt->node_index);
2709
2710 return 0;
2711}
2712
Chris Luke54ccf222016-07-25 16:38:11 -04002713/** Called when a CLI session file descriptor can be written to without
2714 * blocking. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002715static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002716unix_cli_write_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002717{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002718 unix_cli_main_t *cm = &unix_cli_main;
2719 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002720 int n;
2721
2722 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2723
2724 /* Flush output vector. */
Chris Luke03add7f2017-09-20 23:31:24 -04002725 if (cf->is_socket)
2726 /* If it's a socket we use MSG_NOSIGNAL to prevent SIGPIPE */
2727 n = send (uf->file_descriptor,
2728 cf->output_vector, vec_len (cf->output_vector), MSG_NOSIGNAL);
2729 else
2730 n = write (uf->file_descriptor,
2731 cf->output_vector, vec_len (cf->output_vector));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002732
2733 if (n < 0 && errno != EAGAIN)
Chris Luke03add7f2017-09-20 23:31:24 -04002734 {
2735 if (errno == EPIPE)
2736 {
2737 /* connection closed on us */
2738 unix_main_t *um = &unix_main;
2739 cf->has_epipe = 1;
2740 vlib_process_signal_event (um->vlib_main, cf->process_node_index,
2741 UNIX_CLI_PROCESS_EVENT_QUIT,
2742 uf->private_data);
2743 }
2744 else
2745 {
2746 return clib_error_return_unix (0, "write");
2747 }
2748 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002749
2750 else if (n > 0)
2751 unix_cli_del_pending_output (uf, cf, n);
2752
2753 return /* no error */ 0;
2754}
2755
Chris Luke54ccf222016-07-25 16:38:11 -04002756/** Called when a CLI session file descriptor has data to be read. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002757static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002758unix_cli_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002759{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002760 unix_main_t *um = &unix_main;
2761 unix_cli_main_t *cm = &unix_cli_main;
2762 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002763 uword l;
2764 int n, n_read, n_try;
2765
2766 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2767
2768 n = n_try = 4096;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002769 while (n == n_try)
2770 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002771 l = vec_len (cf->input_vector);
2772 vec_resize (cf->input_vector, l + n_try);
2773
2774 n = read (uf->file_descriptor, cf->input_vector + l, n_try);
2775
2776 /* Error? */
2777 if (n < 0 && errno != EAGAIN)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002778 return clib_error_return_unix (0, "read");
2779
Ed Warnickecb9cada2015-12-08 15:45:58 -07002780 n_read = n < 0 ? 0 : n;
2781 _vec_len (cf->input_vector) = l + n_read;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002782 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002783
Dave Barach9b8ffd92016-07-08 08:13:45 -04002784 if (!(n < 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002785 vlib_process_signal_event (um->vlib_main,
2786 cf->process_node_index,
2787 (n_read == 0
2788 ? UNIX_CLI_PROCESS_EVENT_QUIT
2789 : UNIX_CLI_PROCESS_EVENT_READ_READY),
2790 /* event data */ uf->private_data);
2791
2792 return /* no error */ 0;
2793}
2794
Chris Luke03add7f2017-09-20 23:31:24 -04002795/** Called when a CLI session file descriptor has an error condition. */
2796static clib_error_t *
2797unix_cli_error_detected (clib_file_t * uf)
2798{
2799 unix_main_t *um = &unix_main;
2800 unix_cli_main_t *cm = &unix_cli_main;
2801 unix_cli_file_t *cf;
2802
2803 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2804 cf->has_epipe = 1; /* prevent writes while the close is pending */
2805 vlib_process_signal_event (um->vlib_main,
2806 cf->process_node_index,
2807 UNIX_CLI_PROCESS_EVENT_QUIT,
2808 /* event data */ uf->private_data);
2809
2810 return /* no error */ 0;
2811}
2812
Chris Lukeb5850972016-05-03 16:34:59 -04002813/** Store a new CLI session.
2814 * @param name The name of the session.
2815 * @param fd The file descriptor for the session I/O.
2816 * @return The session ID.
2817 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002818static u32
2819unix_cli_file_add (unix_cli_main_t * cm, char *name, int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002820{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002821 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002822 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002823 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002824 clib_file_t template = { 0 };
Dave Barach9b8ffd92016-07-08 08:13:45 -04002825 vlib_main_t *vm = um->vlib_main;
Dave Barach06100392018-07-12 13:00:47 -04002826 vlib_node_t *n = 0;
Damjan Marionceab7882018-01-19 20:56:12 +01002827 u8 *file_desc = 0;
2828
2829 file_desc = format (0, "%s", name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002830
2831 name = (char *) format (0, "unix-cli-%s", name);
2832
2833 if (vec_len (cm->unused_cli_process_node_indices) > 0)
2834 {
2835 uword l = vec_len (cm->unused_cli_process_node_indices);
Dave Barach06100392018-07-12 13:00:47 -04002836 int i;
2837 vlib_main_t *this_vlib_main;
2838 u8 *old_name = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002839
Dave Barach06100392018-07-12 13:00:47 -04002840 /*
2841 * Nodes are bulk-copied, so node name pointers are shared.
2842 * Find the cli node in all graph replicas, and give all of them
2843 * the same new name.
2844 * Then, throw away the old shared name-vector.
2845 */
2846 for (i = 0; i < vec_len (vlib_mains); i++)
2847 {
2848 this_vlib_main = vlib_mains[i];
2849 if (this_vlib_main == 0)
2850 continue;
2851 n = vlib_get_node (this_vlib_main,
2852 cm->unused_cli_process_node_indices[l - 1]);
2853 old_name = n->name;
2854 n->name = (u8 *) name;
2855 }
2856 vec_free (old_name);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002857
2858 vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING);
2859
2860 _vec_len (cm->unused_cli_process_node_indices) = l - 1;
2861 }
2862 else
2863 {
2864 static vlib_node_registration_t r = {
2865 .function = unix_cli_process,
2866 .type = VLIB_NODE_TYPE_PROCESS,
Dave Barach96e12032016-06-09 15:32:48 -04002867 .process_log2_n_stack_bytes = 16,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002868 };
2869
2870 r.name = name;
Dave Barach06100392018-07-12 13:00:47 -04002871
2872 vlib_worker_thread_barrier_sync (vm);
2873
Ed Warnickecb9cada2015-12-08 15:45:58 -07002874 vlib_register_node (vm, &r);
2875 vec_free (name);
2876
2877 n = vlib_get_node (vm, r.index);
Dave Barach06100392018-07-12 13:00:47 -04002878 vlib_worker_thread_node_runtime_update ();
2879 vlib_worker_thread_barrier_release (vm);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002880 }
2881
2882 pool_get (cm->cli_file_pool, cf);
Dave Barachb7b92992018-10-17 10:38:51 -04002883 clib_memset (cf, 0, sizeof (*cf));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002884
2885 template.read_function = unix_cli_read_ready;
2886 template.write_function = unix_cli_write_ready;
Chris Luke03add7f2017-09-20 23:31:24 -04002887 template.error_function = unix_cli_error_detected;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002888 template.file_descriptor = fd;
2889 template.private_data = cf - cm->cli_file_pool;
Damjan Marionceab7882018-01-19 20:56:12 +01002890 template.description = file_desc;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002891
2892 cf->process_node_index = n->index;
Damjan Marion56dd5432017-09-08 19:52:02 +02002893 cf->clib_file_index = clib_file_add (fm, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002894 cf->output_vector = 0;
2895 cf->input_vector = 0;
2896
Ed Warnickecb9cada2015-12-08 15:45:58 -07002897 vlib_start_process (vm, n->runtime_index);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002898
Dave Barach9b8ffd92016-07-08 08:13:45 -04002899 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002900 p->output_function = unix_vlib_cli_output;
2901 p->output_function_arg = cf - cm->cli_file_pool;
2902
Ed Warnickecb9cada2015-12-08 15:45:58 -07002903 return cf - cm->cli_file_pool;
2904}
2905
Chris Lukeb5850972016-05-03 16:34:59 -04002906/** Telnet listening socket has a new connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002907static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002908unix_cli_listen_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002909{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002910 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002911 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002912 unix_cli_main_t *cm = &unix_cli_main;
2913 clib_socket_t *s = &um->cli_listen_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002914 clib_socket_t client;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002915 char *client_name;
2916 clib_error_t *error;
2917 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002918 u32 cf_index;
Chris Lukea9cf6af2018-09-05 21:00:52 -04002919 int one;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002920
2921 error = clib_socket_accept (s, &client);
2922 if (error)
2923 return error;
2924
Chris Lukea9cf6af2018-09-05 21:00:52 -04002925 /* Disable Nagle, ignore any errors doing so eg on PF_LOCAL socket */
2926 one = 1;
Chris Lukec5cb6382018-09-06 15:37:28 -04002927 (void) setsockopt (client.fd, IPPROTO_TCP, TCP_NODELAY,
2928 (void *) &one, sizeof (one));
Chris Lukea9cf6af2018-09-05 21:00:52 -04002929
Ed Warnickecb9cada2015-12-08 15:45:58 -07002930 client_name = (char *) format (0, "%U%c", format_sockaddr, &client.peer, 0);
2931
2932 cf_index = unix_cli_file_add (cm, client_name, client.fd);
2933 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
Chris Luke03add7f2017-09-20 23:31:24 -04002934 cf->is_socket = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935
2936 /* No longer need CLIB version of socket. */
2937 clib_socket_free (&client);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002938 vec_free (client_name);
2939
2940 /* if we're supposed to run telnet session in character mode (default) */
2941 if (um->cli_line_mode == 0)
2942 {
Chris Luke0aca5eb2016-04-25 13:48:54 -04002943 /*
2944 * Set telnet client character mode, echo on, suppress "go-ahead".
2945 * Technically these should be negotiated, but this works.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002946 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002947 u8 charmode_option[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002948 IAC, WONT, TELOPT_LINEMODE, /* server will do char-by-char */
2949 IAC, DONT, TELOPT_LINEMODE, /* client should do char-by-char */
2950 IAC, WILL, TELOPT_SGA, /* server willl supress GA */
2951 IAC, DO, TELOPT_SGA, /* client should supress Go Ahead */
2952 IAC, WILL, TELOPT_ECHO, /* server will do echo */
2953 IAC, DONT, TELOPT_ECHO, /* client should not echo */
2954 IAC, DO, TELOPT_TTYPE, /* client should tell us its term type */
2955 IAC, SB, TELOPT_TTYPE, 1, IAC, SE, /* now tell me ttype */
2956 IAC, DO, TELOPT_NAWS, /* client should tell us its window sz */
2957 IAC, SB, TELOPT_NAWS, 1, IAC, SE, /* now tell me window size */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002958 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07002959
Chris Luke0aca5eb2016-04-25 13:48:54 -04002960 /* Enable history on this CLI */
Chris Luke7afda3a2016-04-25 13:49:22 -04002961 cf->history_limit = um->cli_history_limit;
2962 cf->has_history = cf->history_limit != 0;
2963
Chris Luke03add7f2017-09-20 23:31:24 -04002964 /* This is an interactive session until we decide otherwise */
2965 cf->is_interactive = 1;
2966
Chris Luke7afda3a2016-04-25 13:49:22 -04002967 /* Make sure this session is in line mode */
2968 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002969
2970 /* We need CRLF */
2971 cf->crlf_mode = 1;
2972
Chris Luke7afda3a2016-04-25 13:49:22 -04002973 /* Setup the pager */
2974 cf->no_pager = um->cli_no_pager;
2975
Chris Luke2d8bf302017-11-12 22:26:37 -05002976 /* Default terminal dimensions, should the terminal
2977 * fail to provide any.
2978 */
2979 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
2980 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
2981
Chris Luke0aca5eb2016-04-25 13:48:54 -04002982 /* Send the telnet options */
Chris Luke03add7f2017-09-20 23:31:24 -04002983 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002984 unix_vlib_cli_output_raw (cf, uf, charmode_option,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002985 ARRAY_LEN (charmode_option));
Chris Luke0aca5eb2016-04-25 13:48:54 -04002986
Chris Luke6a3a4f72019-07-09 23:33:30 -04002987 if (cm->new_session_process_node_index == ~0)
2988 {
2989 /* Create thw new session deadline process */
2990 cm->new_session_process_node_index =
2991 vlib_process_create (um->vlib_main, "unix-cli-new-session",
2992 unix_cli_new_session_process,
2993 16 /* log2_n_stack_bytes */ );
2994 }
2995
2996 /* In case the client doesn't negotiate terminal type, register
2997 * our session with a process that will emit the prompt if
2998 * a deadline passes */
2999 vlib_process_signal_event (um->vlib_main,
3000 cm->new_session_process_node_index,
3001 UNIX_CLI_NEW_SESSION_EVENT_ADD, cf_index);
3002
Ed Warnickecb9cada2015-12-08 15:45:58 -07003003 }
3004
3005 return error;
3006}
3007
Chris Lukeb5850972016-05-03 16:34:59 -04003008/** The system terminal has informed us that the window size
3009 * has changed.
3010 */
Chris Luke7afda3a2016-04-25 13:49:22 -04003011static void
3012unix_cli_resize_interrupt (int signum)
3013{
Damjan Marion56dd5432017-09-08 19:52:02 +02003014 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003015 unix_cli_main_t *cm = &unix_cli_main;
3016 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool,
3017 cm->stdin_cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02003018 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04003019 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003020 (void) signum;
Chris Luke7afda3a2016-04-25 13:49:22 -04003021
3022 /* Terminal resized, fetch the new size */
Chris Luke03add7f2017-09-20 23:31:24 -04003023 if (ioctl (STDIN_FILENO, TIOCGWINSZ, &ws) < 0)
Dave Barachb2a6e252016-07-27 10:00:58 -04003024 {
3025 /* "Should never happen..." */
3026 clib_unix_warning ("TIOCGWINSZ");
3027 /* We can't trust ws.XXX... */
3028 return;
3029 }
Chris Lukeb2bcad62017-09-18 08:51:22 -04003030
Chris Luke7afda3a2016-04-25 13:49:22 -04003031 cf->width = ws.ws_col;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003032 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
3033 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
Chris Luke2d8bf302017-11-12 22:26:37 -05003034 if (cf->width == 0)
3035 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003036
Chris Luke7afda3a2016-04-25 13:49:22 -04003037 cf->height = ws.ws_row;
Chris Lukeb2bcad62017-09-18 08:51:22 -04003038 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
3039 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
Chris Luke2d8bf302017-11-12 22:26:37 -05003040 if (cf->height == 0)
3041 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Chris Luke862623d2016-05-14 10:13:34 -04003042
3043 /* Reindex the pager buffer */
3044 unix_cli_pager_reindex (cf);
3045
3046 /* Redraw the page */
3047 unix_cli_pager_redraw (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04003048}
3049
Chris Lukeb5850972016-05-03 16:34:59 -04003050/** Handle configuration directives in the @em unix section. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003051static clib_error_t *
3052unix_cli_config (vlib_main_t * vm, unformat_input_t * input)
3053{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003054 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02003055 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003056 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003057 int flags;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003058 clib_error_t *error = 0;
3059 unix_cli_file_t *cf;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003060 u32 cf_index;
3061 struct termios tio;
Chris Luke7afda3a2016-04-25 13:49:22 -04003062 struct sigaction sa;
3063 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003064 u8 *term;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003065
3066 /* We depend on unix flags being set. */
3067 if ((error = vlib_call_config_function (vm, unix_config)))
3068 return error;
3069
3070 if (um->flags & UNIX_FLAG_INTERACTIVE)
3071 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07003072 /* Set stdin to be non-blocking. */
Chris Luke03add7f2017-09-20 23:31:24 -04003073 if ((flags = fcntl (STDIN_FILENO, F_GETFL, 0)) < 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003074 flags = 0;
Chris Luke03add7f2017-09-20 23:31:24 -04003075 (void) fcntl (STDIN_FILENO, F_SETFL, flags | O_NONBLOCK);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003076
Chris Luke03add7f2017-09-20 23:31:24 -04003077 cf_index = unix_cli_file_add (cm, "stdin", STDIN_FILENO);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003078 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04003079 cm->stdin_cli_file_index = cf_index;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003080
3081 /* If stdin is a tty and we are using chacracter mode, enable
3082 * history on the CLI and set the tty line discipline accordingly. */
Chris Luke03add7f2017-09-20 23:31:24 -04003083 if (isatty (STDIN_FILENO) && um->cli_line_mode == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003084 {
3085 /* Capture terminal resize events */
Dave Barachb7b92992018-10-17 10:38:51 -04003086 clib_memset (&sa, 0, sizeof (sa));
Dave Barach9b8ffd92016-07-08 08:13:45 -04003087 sa.sa_handler = unix_cli_resize_interrupt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003088 if (sigaction (SIGWINCH, &sa, 0) < 0)
3089 clib_panic ("sigaction");
Chris Luke7afda3a2016-04-25 13:49:22 -04003090
Dave Barach9b8ffd92016-07-08 08:13:45 -04003091 /* Retrieve the current terminal size */
Chris Luke03add7f2017-09-20 23:31:24 -04003092 ioctl (STDIN_FILENO, TIOCGWINSZ, &ws);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003093 cf->width = ws.ws_col;
3094 cf->height = ws.ws_row;
Chris Luke7afda3a2016-04-25 13:49:22 -04003095
Dave Barach9b8ffd92016-07-08 08:13:45 -04003096 if (cf->width == 0 || cf->height == 0)
Dave Barachb66201f2017-09-22 13:34:39 -04003097 {
3098 /*
3099 * We have a tty, but no size. Use defaults.
3100 * vpp "unix interactive" inside emacs + gdb ends up here.
3101 */
Chris Luke2d8bf302017-11-12 22:26:37 -05003102 cf->width = UNIX_CLI_DEFAULT_TERMINAL_WIDTH;
3103 cf->height = UNIX_CLI_DEFAULT_TERMINAL_HEIGHT;
Dave Barachb66201f2017-09-22 13:34:39 -04003104 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003105
Dave Barach9b8ffd92016-07-08 08:13:45 -04003106 /* Setup the history */
3107 cf->history_limit = um->cli_history_limit;
3108 cf->has_history = cf->history_limit != 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003109
Dave Barach9b8ffd92016-07-08 08:13:45 -04003110 /* Setup the pager */
3111 cf->no_pager = um->cli_no_pager;
Chris Luke7afda3a2016-04-25 13:49:22 -04003112
Chris Luke03add7f2017-09-20 23:31:24 -04003113 /* This is an interactive session until we decide otherwise */
3114 cf->is_interactive = 1;
3115
Dave Barach9b8ffd92016-07-08 08:13:45 -04003116 /* We're going to be in char by char mode */
3117 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003118
Dave Barach9b8ffd92016-07-08 08:13:45 -04003119 /* Save the original tty state so we can restore it later */
Chris Luke03add7f2017-09-20 23:31:24 -04003120 tcgetattr (STDIN_FILENO, &um->tio_stdin);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003121 um->tio_isset = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003122
Dave Barach9b8ffd92016-07-08 08:13:45 -04003123 /* Tweak the tty settings */
3124 tio = um->tio_stdin;
3125 /* echo off, canonical mode off, ext'd input processing off */
3126 tio.c_lflag &= ~(ECHO | ICANON | IEXTEN);
Chris Luke01dc6b92018-06-10 13:42:45 -04003127 /* disable XON/XOFF, so ^S invokes the history search */
3128 tio.c_iflag &= ~(IXON | IXOFF);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003129 tio.c_cc[VMIN] = 1; /* 1 byte at a time */
3130 tio.c_cc[VTIME] = 0; /* no timer */
Chris Luke01dc6b92018-06-10 13:42:45 -04003131 tio.c_cc[VSTOP] = _POSIX_VDISABLE; /* not ^S */
3132 tio.c_cc[VSTART] = _POSIX_VDISABLE; /* not ^Q */
Chris Luke03add7f2017-09-20 23:31:24 -04003133 tcsetattr (STDIN_FILENO, TCSAFLUSH, &tio);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003134
Dave Barach9b8ffd92016-07-08 08:13:45 -04003135 /* See if we can do ANSI/VT100 output */
3136 term = (u8 *) getenv ("TERM");
3137 if (term != NULL)
Chris Luke03add7f2017-09-20 23:31:24 -04003138 {
3139 int len = strlen ((char *) term);
3140 cf->ansi_capable = unix_cli_terminal_type_ansi (term, len);
3141 if (unix_cli_terminal_type_noninteractive (term, len))
3142 unix_cli_set_session_noninteractive (cf);
3143 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003144 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003145 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04003146 {
Chris Luke03add7f2017-09-20 23:31:24 -04003147 /* No tty, so make sure the session doesn't have tty-like features */
3148 unix_cli_set_session_noninteractive (cf);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003149 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04003150
3151 /* Send banner and initial prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003152 unix_cli_file_welcome (cm, cf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003153 }
3154
Ed Warnickea25bd1c2016-04-01 22:43:37 -05003155 /* If we have socket config, LISTEN, otherwise, don't */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003156 clib_socket_t *s = &um->cli_listen_socket;
3157 if (s->config && s->config[0] != 0)
3158 {
3159 /* CLI listen. */
Damjan Marion56dd5432017-09-08 19:52:02 +02003160 clib_file_t template = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07003161
Damjan Marion57d963f2017-07-20 19:17:06 +02003162 /* mkdir of file socketu, only under /run */
3163 if (strncmp (s->config, "/run", 4) == 0)
Chris Luke475674e2017-07-05 18:02:53 -04003164 {
Damjan Marion57d963f2017-07-20 19:17:06 +02003165 u8 *tmp = format (0, "%s", s->config);
3166 int i = vec_len (tmp);
3167 while (i && tmp[--i] != '/')
3168 ;
3169
YohanPipereau71dd9d52019-06-06 16:34:14 +02003170 tmp[i] = '\0';
Damjan Marion57d963f2017-07-20 19:17:06 +02003171
3172 if (i)
3173 vlib_unix_recursive_mkdir ((char *) tmp);
3174 vec_free (tmp);
Chris Luke475674e2017-07-05 18:02:53 -04003175 }
3176
Damjan Marionf49921f2017-09-11 16:52:11 +02003177 s->flags = CLIB_SOCKET_F_IS_SERVER | /* listen, don't connect */
3178 CLIB_SOCKET_F_ALLOW_GROUP_WRITE; /* PF_LOCAL socket only */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003179 error = clib_socket_init (s);
Ed Warnickea25bd1c2016-04-01 22:43:37 -05003180
Dave Barach9b8ffd92016-07-08 08:13:45 -04003181 if (error)
3182 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003183
Dave Barach9b8ffd92016-07-08 08:13:45 -04003184 template.read_function = unix_cli_listen_read_ready;
3185 template.file_descriptor = s->fd;
Damjan Marionceab7882018-01-19 20:56:12 +01003186 template.description = format (0, "cli listener %s", s->config);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003187
Damjan Marion56dd5432017-09-08 19:52:02 +02003188 clib_file_add (fm, &template);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003189 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07003190
3191 /* Set CLI prompt. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003192 if (!cm->cli_prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003193 cm->cli_prompt = format (0, "VLIB: ");
3194
3195 return 0;
3196}
3197
Chris Luke90f52bf2016-09-12 08:55:13 -04003198/*?
3199 * This module has no configurable parameters.
3200?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07003201VLIB_CONFIG_FUNCTION (unix_cli_config, "unix-cli");
3202
Chris Luke54ccf222016-07-25 16:38:11 -04003203/** Called when VPP is shutting down, this restores the system
3204 * terminal state if previously saved.
Chris Lukeb5850972016-05-03 16:34:59 -04003205 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04003206static clib_error_t *
3207unix_cli_exit (vlib_main_t * vm)
3208{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003209 unix_main_t *um = &unix_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04003210
3211 /* If stdin is a tty and we saved the tty state, reset the tty state */
Chris Luke03add7f2017-09-20 23:31:24 -04003212 if (isatty (STDIN_FILENO) && um->tio_isset)
3213 tcsetattr (STDIN_FILENO, TCSAFLUSH, &um->tio_stdin);
Chris Luke0aca5eb2016-04-25 13:48:54 -04003214
3215 return 0;
3216}
3217
3218VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_cli_exit);
3219
Chris Lukeb5850972016-05-03 16:34:59 -04003220/** Set the CLI prompt.
Chris Luke54ccf222016-07-25 16:38:11 -04003221 * @param prompt The C string to set the prompt to.
Chris Lukeb5850972016-05-03 16:34:59 -04003222 * @note This setting is global; it impacts all current
3223 * and future CLI sessions.
3224 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04003225void
3226vlib_unix_cli_set_prompt (char *prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003227{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003228 char *fmt = (prompt[strlen (prompt) - 1] == ' ') ? "%s" : "%s ";
3229 unix_cli_main_t *cm = &unix_cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003230 if (cm->cli_prompt)
3231 vec_free (cm->cli_prompt);
3232 cm->cli_prompt = format (0, fmt, prompt);
3233}
3234
Chris Lukeb5850972016-05-03 16:34:59 -04003235/** CLI command to quit the terminal session.
3236 * @note If this is a stdin session then this will
3237 * shutdown VPP also.
3238 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003239static clib_error_t *
3240unix_cli_quit (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003241 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003242{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003243 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke03add7f2017-09-20 23:31:24 -04003244 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool,
3245 cm->current_input_file_index);
3246
3247 /* Cosmetic: suppress the final prompt from appearing before we die */
3248 cf->is_interactive = 0;
3249 cf->started = 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003250
3251 vlib_process_signal_event (vm,
3252 vlib_current_process (vm),
3253 UNIX_CLI_PROCESS_EVENT_QUIT,
3254 cm->current_input_file_index);
3255 return 0;
3256}
3257
Chris Luke54ccf222016-07-25 16:38:11 -04003258/*?
3259 * Terminates the current CLI session.
3260 *
3261 * If VPP is running in @em interactive mode and this is the console session
3262 * (that is, the session on @c stdin) then this will also terminate VPP.
3263?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003264/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003265VLIB_CLI_COMMAND (unix_cli_quit_command, static) = {
3266 .path = "quit",
3267 .short_help = "Exit CLI",
3268 .function = unix_cli_quit,
3269};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003270/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003271
Florin Coras33d16292018-03-16 09:13:37 -07003272/* *INDENT-OFF* */
3273VLIB_CLI_COMMAND (unix_cli_q_command, static) = {
3274 .path = "q",
3275 .short_help = "Exit CLI",
3276 .function = unix_cli_quit,
3277};
3278/* *INDENT-ON* */
3279
Chris Lukeb5850972016-05-03 16:34:59 -04003280/** CLI command to execute a VPP command script. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003281static clib_error_t *
3282unix_cli_exec (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003283 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003284{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003285 char *file_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003286 int fd;
3287 unformat_input_t sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003288 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003289
3290 file_name = 0;
3291 fd = -1;
3292 error = 0;
3293
Dave Barach9b8ffd92016-07-08 08:13:45 -04003294 if (!unformat (input, "%s", &file_name))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003295 {
3296 error = clib_error_return (0, "expecting file name, got `%U'",
3297 format_unformat_error, input);
3298 goto done;
3299 }
3300
3301 fd = open (file_name, O_RDONLY);
3302 if (fd < 0)
3303 {
3304 error = clib_error_return_unix (0, "failed to open `%s'", file_name);
3305 goto done;
3306 }
3307
3308 /* Make sure its a regular file. */
3309 {
3310 struct stat s;
3311
3312 if (fstat (fd, &s) < 0)
3313 {
3314 error = clib_error_return_unix (0, "failed to stat `%s'", file_name);
3315 goto done;
3316 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003317
3318 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003319 {
3320 error = clib_error_return (0, "not a regular file `%s'", file_name);
3321 goto done;
3322 }
3323 }
3324
Dave Barach59b25652017-09-10 15:04:27 -04003325 unformat_init_clib_file (&sub_input, fd);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003326
3327 vlib_cli_input (vm, &sub_input, 0, 0);
3328 unformat_free (&sub_input);
3329
Dave Barach9b8ffd92016-07-08 08:13:45 -04003330done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003331 if (fd > 0)
3332 close (fd);
3333 vec_free (file_name);
3334
3335 return error;
3336}
3337
Chris Luke54ccf222016-07-25 16:38:11 -04003338/*?
Billy McFall28cf3b72018-01-15 17:54:52 -05003339 * Executes a sequence of CLI commands which are read from a file. If
3340 * a command is unrecognised or otherwise invalid then the usual CLI
Chris Luke54ccf222016-07-25 16:38:11 -04003341 * feedback will be generated, however execution of subsequent commands
3342 * from the file will continue.
Billy McFall28cf3b72018-01-15 17:54:52 -05003343 *
3344 * The VPP code is indifferent to the file location. However, if SELinux
3345 * is enabled, then the file needs to have an SELinux label the VPP
3346 * process is allowed to access. For example, if a file is created in
3347 * '<em>/usr/share/vpp/</em>', it will be allowed. However, files manually
3348 * created in '/tmp/' or '/home/<user>/' will not be accessible by the VPP
3349 * process when SELinux is enabled.
3350 *
3351 * @cliexpar
3352 * Sample file:
3353 * @clistart
3354 * <b><em>$ cat /usr/share/vpp/scripts/gigup.txt</em></b>
3355 * set interface state GigabitEthernet0/8/0 up
3356 * set interface state GigabitEthernet0/9/0 up
3357 * @cliend
3358 * Example of how to execute a set of CLI commands from a file:
3359 * @cliexcmd{exec /usr/share/vpp/scripts/gigup.txt}
Chris Luke54ccf222016-07-25 16:38:11 -04003360?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003361/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003362VLIB_CLI_COMMAND (cli_exec, static) = {
3363 .path = "exec",
Billy McFall28cf3b72018-01-15 17:54:52 -05003364 .short_help = "exec <filename>",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003365 .function = unix_cli_exec,
Dave Barachb2ef4dd2016-03-23 08:56:01 -04003366 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07003367};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003368/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003369
Chris Lukeb5850972016-05-03 16:34:59 -04003370/** CLI command to show various unix error statistics. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003371static clib_error_t *
3372unix_show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003373 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003374{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003375 unix_main_t *um = &unix_main;
3376 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003377 int i, n_errors_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -04003378 unix_error_history_t *unix_errors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003379
3380 n_errors_to_show = 1 << 30;
3381
3382 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
3383 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003384 if (!unformat (input, "%d", &n_errors_to_show))
Ed Warnickecb9cada2015-12-08 15:45:58 -07003385 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003386 error =
3387 clib_error_return (0,
3388 "expecting integer number of errors to show, got `%U'",
3389 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003390 goto done;
3391 }
3392 }
3393
Dave Barach9b8ffd92016-07-08 08:13:45 -04003394 n_errors_to_show =
3395 clib_min (ARRAY_LEN (um->error_history), n_errors_to_show);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003396
Dave Barach9b8ffd92016-07-08 08:13:45 -04003397 i =
3398 um->error_history_index >
3399 0 ? um->error_history_index - 1 : ARRAY_LEN (um->error_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003400
3401 while (n_errors_to_show > 0)
3402 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003403 unix_error_history_t *eh = um->error_history + i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07003404
Dave Barach9b8ffd92016-07-08 08:13:45 -04003405 if (!eh->error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07003406 break;
3407
3408 vec_add1 (unix_errors, eh[0]);
3409 n_errors_to_show -= 1;
3410 if (i == 0)
3411 i = ARRAY_LEN (um->error_history) - 1;
3412 else
3413 i--;
3414 }
3415
3416 if (vec_len (unix_errors) == 0)
3417 vlib_cli_output (vm, "no Unix errors so far");
3418 else
3419 {
3420 vlib_cli_output (vm, "%Ld total errors seen", um->n_total_errors);
3421 for (i = vec_len (unix_errors) - 1; i >= 0; i--)
3422 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003423 unix_error_history_t *eh = vec_elt_at_index (unix_errors, i);
Ed Warnickecb9cada2015-12-08 15:45:58 -07003424 vlib_cli_output (vm, "%U: %U",
3425 format_time_interval, "h:m:s:u", eh->time,
3426 format_clib_error, eh->error);
3427 }
3428 vlib_cli_output (vm, "%U: time now",
3429 format_time_interval, "h:m:s:u", vlib_time_now (vm));
3430 }
3431
Dave Barach9b8ffd92016-07-08 08:13:45 -04003432done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07003433 vec_free (unix_errors);
3434 return error;
3435}
3436
Dave Barach9b8ffd92016-07-08 08:13:45 -04003437/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003438VLIB_CLI_COMMAND (cli_unix_show_errors, static) = {
Damjan Marionceab7882018-01-19 20:56:12 +01003439 .path = "show unix errors",
Ed Warnickecb9cada2015-12-08 15:45:58 -07003440 .short_help = "Show Unix system call error history",
3441 .function = unix_show_errors,
3442};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003443/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003444
Damjan Marionceab7882018-01-19 20:56:12 +01003445/** CLI command to show various unix error statistics. */
3446static clib_error_t *
3447unix_show_files (vlib_main_t * vm,
3448 unformat_input_t * input, vlib_cli_command_t * cmd)
3449{
3450 clib_error_t *error = 0;
3451 clib_file_main_t *fm = &file_main;
3452 clib_file_t *f;
3453 char path[PATH_MAX];
3454 u8 *s = 0;
3455
3456 vlib_cli_output (vm, "%3s %6s %12s %12s %12s %-32s %s", "FD", "Thread",
3457 "Read", "Write", "Error", "File Name", "Description");
3458
3459 /* *INDENT-OFF* */
3460 pool_foreach (f, fm->file_pool,(
3461 {
3462 int rv;
3463 s = format (s, "/proc/self/fd/%d%c", f->file_descriptor, 0);
3464 rv = readlink((char *) s, path, PATH_MAX - 1);
3465
3466 path[rv < 0 ? 0 : rv] = 0;
3467
3468 vlib_cli_output (vm, "%3d %6d %12d %12d %12d %-32s %v",
3469 f->file_descriptor, f->polling_thread_index,
3470 f->read_events, f->write_events, f->error_events,
3471 path, f->description);
3472 vec_reset_length (s);
3473 }));
3474 /* *INDENT-ON* */
3475 vec_free (s);
3476
3477 return error;
3478}
3479
3480/* *INDENT-OFF* */
3481VLIB_CLI_COMMAND (cli_unix_show_files, static) = {
3482 .path = "show unix files",
3483 .short_help = "Show Unix files in use",
3484 .function = unix_show_files,
3485};
3486/* *INDENT-ON* */
3487
Chris Lukeb5850972016-05-03 16:34:59 -04003488/** CLI command to show session command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07003489static clib_error_t *
Chris Luke6b90fe32016-04-25 13:49:15 -04003490unix_cli_show_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003491 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke6b90fe32016-04-25 13:49:15 -04003492{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003493 unix_cli_main_t *cm = &unix_cli_main;
3494 unix_cli_file_t *cf;
Chris Luke6b90fe32016-04-25 13:49:15 -04003495 int i, j;
3496
3497 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3498
Chris Luke03add7f2017-09-20 23:31:24 -04003499 if (!cf->is_interactive)
3500 return clib_error_return (0, "invalid for non-interactive sessions");
3501
Chris Luke7afda3a2016-04-25 13:49:22 -04003502 if (cf->has_history && cf->history_limit)
Chris Luke6b90fe32016-04-25 13:49:15 -04003503 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003504 i = 1 + cf->command_number - vec_len (cf->command_history);
Chris Luke7afda3a2016-04-25 13:49:22 -04003505 for (j = 0; j < vec_len (cf->command_history); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04003506 vlib_cli_output (vm, "%d %v\n", i + j, cf->command_history[j]);
Chris Luke7afda3a2016-04-25 13:49:22 -04003507 }
3508 else
3509 {
3510 vlib_cli_output (vm, "History not enabled.\n");
Chris Luke6b90fe32016-04-25 13:49:15 -04003511 }
3512
3513 return 0;
3514}
3515
Chris Luke54ccf222016-07-25 16:38:11 -04003516/*?
3517 * Displays the command history for the current session, if any.
3518?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003519/* *INDENT-OFF* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003520VLIB_CLI_COMMAND (cli_unix_cli_show_history, static) = {
3521 .path = "history",
3522 .short_help = "Show current session command history",
3523 .function = unix_cli_show_history,
3524};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003525/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003526
Chris Lukeb5850972016-05-03 16:34:59 -04003527/** CLI command to show terminal status. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003528static clib_error_t *
3529unix_cli_show_terminal (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003530 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003531{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003532 unix_main_t *um = &unix_main;
3533 unix_cli_main_t *cm = &unix_cli_main;
3534 unix_cli_file_t *cf;
3535 vlib_node_t *n;
Chris Luke7afda3a2016-04-25 13:49:22 -04003536
3537 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3538 n = vlib_get_node (vm, cf->process_node_index);
3539
3540 vlib_cli_output (vm, "Terminal name: %v\n", n->name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003541 vlib_cli_output (vm, "Terminal mode: %s\n", cf->line_mode ?
3542 "line-by-line" : "char-by-char");
Chris Luke7afda3a2016-04-25 13:49:22 -04003543 vlib_cli_output (vm, "Terminal width: %d\n", cf->width);
3544 vlib_cli_output (vm, "Terminal height: %d\n", cf->height);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003545 vlib_cli_output (vm, "ANSI capable: %s\n",
3546 cf->ansi_capable ? "yes" : "no");
Chris Luke03add7f2017-09-20 23:31:24 -04003547 vlib_cli_output (vm, "Interactive: %s\n",
3548 cf->is_interactive ? "yes" : "no");
Chris Luke7afda3a2016-04-25 13:49:22 -04003549 vlib_cli_output (vm, "History enabled: %s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003550 cf->has_history ? "yes" : "no", !cf->has_history
3551 || cf->history_limit ? "" :
3552 " (disabled by history limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04003553 if (cf->has_history)
3554 vlib_cli_output (vm, "History limit: %d\n", cf->history_limit);
3555 vlib_cli_output (vm, "Pager enabled: %s%s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003556 cf->no_pager ? "no" : "yes",
3557 cf->no_pager
3558 || cf->height ? "" : " (disabled by terminal height)",
3559 cf->no_pager
3560 || um->cli_pager_buffer_limit ? "" :
3561 " (disabled by buffer limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04003562 if (!cf->no_pager)
3563 vlib_cli_output (vm, "Pager limit: %d\n", um->cli_pager_buffer_limit);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003564 vlib_cli_output (vm, "CRLF mode: %s\n",
3565 cf->crlf_mode ? "CR+LF" : "LF");
Chris Luke7afda3a2016-04-25 13:49:22 -04003566
3567 return 0;
3568}
3569
Chris Luke54ccf222016-07-25 16:38:11 -04003570/*?
3571 * Displays various information about the state of the current terminal
3572 * session.
3573 *
3574 * @cliexpar
3575 * @cliexstart{show terminal}
3576 * Terminal name: unix-cli-stdin
3577 * Terminal mode: char-by-char
3578 * Terminal width: 123
3579 * Terminal height: 48
3580 * ANSI capable: yes
Chris Luke03add7f2017-09-20 23:31:24 -04003581 * Interactive: yes
Chris Luke54ccf222016-07-25 16:38:11 -04003582 * History enabled: yes
3583 * History limit: 50
3584 * Pager enabled: yes
3585 * Pager limit: 100000
3586 * CRLF mode: LF
3587 * @cliexend
3588?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003589/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003590VLIB_CLI_COMMAND (cli_unix_cli_show_terminal, static) = {
3591 .path = "show terminal",
3592 .short_help = "Show current session terminal settings",
3593 .function = unix_cli_show_terminal,
3594};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003595/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003596
Chris Luke03add7f2017-09-20 23:31:24 -04003597/** CLI command to display a list of CLI sessions. */
3598static clib_error_t *
3599unix_cli_show_cli_sessions (vlib_main_t * vm,
3600 unformat_input_t * input,
3601 vlib_cli_command_t * cmd)
3602{
Chris Luke03add7f2017-09-20 23:31:24 -04003603 unix_cli_main_t *cm = &unix_cli_main;
3604 clib_file_main_t *fm = &file_main;
3605 unix_cli_file_t *cf;
3606 clib_file_t *uf;
3607 vlib_node_t *n;
3608
3609 vlib_cli_output (vm, "%-5s %-5s %-20s %s", "PNI", "FD", "Name", "Flags");
3610
3611#define fl(x, y) ( (x) ? toupper((y)) : tolower((y)) )
3612 /* *INDENT-OFF* */
3613 pool_foreach (cf, cm->cli_file_pool, ({
3614 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
3615 n = vlib_get_node (vm, cf->process_node_index);
3616 vlib_cli_output (vm,
3617 "%-5d %-5d %-20v %c%c%c%c%c\n",
3618 cf->process_node_index,
3619 uf->file_descriptor,
3620 n->name,
3621 fl (cf->is_interactive, 'i'),
3622 fl (cf->is_socket, 's'),
3623 fl (cf->line_mode, 'l'),
3624 fl (cf->has_epipe, 'p'),
3625 fl (cf->ansi_capable, 'a'));
3626 }));
3627 /* *INDENT-ON* */
3628#undef fl
3629
3630 return 0;
3631}
3632
3633/*?
3634 * Displays a summary of all the current CLI sessions.
3635 *
3636 * Typically used to diagnose connection issues with the CLI
3637 * socket.
3638 *
3639 * @cliexpar
3640 * @cliexstart{show cli-sessions}
3641 * PNI FD Name Flags
3642 * 343 0 unix-cli-stdin IslpA
3643 * 344 7 unix-cli-local:20 ISlpA
3644 * 346 8 unix-cli-local:21 iSLpa
3645 * @cliexend
3646
3647 * In this example we have the debug console of the running process
3648 * on stdin/out, we have an interactive socket session and we also
3649 * have a non-interactive socket session.
3650 *
3651 * Fields:
3652 *
3653 * - @em PNI: Process node index.
3654 * - @em FD: Unix file descriptor.
3655 * - @em Name: Name of the session.
3656 * - @em Flags: Various flags that describe the state of the session.
3657 *
3658 * @em Flags have the following meanings; lower-case typically negates
3659 * upper-case:
3660 *
3661 * - @em I Interactive session.
3662 * - @em S Connected by socket.
3663 * - @em s Not a socket, likely stdin.
3664 * - @em L Line-by-line mode.
3665 * - @em l Char-by-char mode.
3666 * - @em P EPIPE detected on connection; it will close soon.
3667 * - @em A ANSI-capable terminal.
3668?*/
3669/* *INDENT-OFF* */
3670VLIB_CLI_COMMAND (cli_unix_cli_show_cli_sessions, static) = {
3671 .path = "show cli-sessions",
3672 .short_help = "Show current CLI sessions",
3673 .function = unix_cli_show_cli_sessions,
3674};
3675/* *INDENT-ON* */
3676
Chris Lukeb5850972016-05-03 16:34:59 -04003677/** CLI command to set terminal pager settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003678static clib_error_t *
3679unix_cli_set_terminal_pager (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003680 unformat_input_t * input,
3681 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003682{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003683 unix_main_t *um = &unix_main;
3684 unix_cli_main_t *cm = &unix_cli_main;
3685 unix_cli_file_t *cf;
3686 unformat_input_t _line_input, *line_input = &_line_input;
Billy McFalla9a20e72017-02-15 11:39:12 -05003687 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003688
Chris Luke03add7f2017-09-20 23:31:24 -04003689 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3690
3691 if (!cf->is_interactive)
3692 return clib_error_return (0, "invalid for non-interactive sessions");
3693
Dave Barach9b8ffd92016-07-08 08:13:45 -04003694 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003695 return 0;
3696
Chris Luke7afda3a2016-04-25 13:49:22 -04003697 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3698 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003699 if (unformat (line_input, "on"))
3700 cf->no_pager = 0;
3701 else if (unformat (line_input, "off"))
3702 cf->no_pager = 1;
3703 else if (unformat (line_input, "limit %u", &um->cli_pager_buffer_limit))
3704 vlib_cli_output (vm,
3705 "Pager limit set to %u lines; note, this is global.\n",
3706 um->cli_pager_buffer_limit);
3707 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003708 {
3709 error = clib_error_return (0, "unknown parameter: `%U`",
3710 format_unformat_error, line_input);
3711 goto done;
3712 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003713 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003714
Billy McFalla9a20e72017-02-15 11:39:12 -05003715done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003716 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003717
Billy McFalla9a20e72017-02-15 11:39:12 -05003718 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003719}
3720
Chris Luke54ccf222016-07-25 16:38:11 -04003721/*?
3722 * Enables or disables the terminal pager for this session. Generally
3723 * this defaults to enabled.
3724 *
3725 * Additionally allows the pager buffer size to be set; though note that
3726 * this value is set globally and not per session.
3727?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003728/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003729VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_pager, static) = {
3730 .path = "set terminal pager",
3731 .short_help = "set terminal pager [on|off] [limit <lines>]",
3732 .function = unix_cli_set_terminal_pager,
3733};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003734/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003735
Chris Lukeb5850972016-05-03 16:34:59 -04003736/** CLI command to set terminal history settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003737static clib_error_t *
3738unix_cli_set_terminal_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003739 unformat_input_t * input,
3740 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003741{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003742 unix_cli_main_t *cm = &unix_cli_main;
3743 unix_cli_file_t *cf;
3744 unformat_input_t _line_input, *line_input = &_line_input;
Chris Luke7afda3a2016-04-25 13:49:22 -04003745 u32 limit;
Billy McFalla9a20e72017-02-15 11:39:12 -05003746 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003747
Chris Luke03add7f2017-09-20 23:31:24 -04003748 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3749
3750 if (!cf->is_interactive)
3751 return clib_error_return (0, "invalid for non-interactive sessions");
3752
Dave Barach9b8ffd92016-07-08 08:13:45 -04003753 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003754 return 0;
3755
Chris Luke7afda3a2016-04-25 13:49:22 -04003756 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3757 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003758 if (unformat (line_input, "on"))
3759 cf->has_history = 1;
3760 else if (unformat (line_input, "off"))
3761 cf->has_history = 0;
3762 else if (unformat (line_input, "limit %u", &cf->history_limit))
3763 ;
3764 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003765 {
3766 error = clib_error_return (0, "unknown parameter: `%U`",
3767 format_unformat_error, line_input);
3768 goto done;
3769 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003770
Chris Luke5022c6c2019-05-17 10:17:16 -04003771 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003772
Chris Luke5022c6c2019-05-17 10:17:16 -04003773 /* If we reduced history size, or turned it off, purge the history */
3774 limit = cf->has_history ? cf->history_limit : 0;
3775 if (limit < vec_len (cf->command_history))
3776 {
3777 u32 i;
3778
3779 /* How many items to remove from the start of history */
3780 limit = vec_len (cf->command_history) - limit;
3781
3782 for (i = 0; i < limit; i++)
3783 vec_free (cf->command_history[i]);
3784
3785 vec_delete (cf->command_history, limit, 0);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003786 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003787
Billy McFalla9a20e72017-02-15 11:39:12 -05003788done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003789 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003790
Billy McFalla9a20e72017-02-15 11:39:12 -05003791 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003792}
3793
Chris Luke54ccf222016-07-25 16:38:11 -04003794/*?
3795 * Enables or disables the command history function of the current
3796 * terminal. Generally this defaults to enabled.
3797 *
3798 * This command also allows the maximum size of the history buffer for
3799 * this session to be altered.
3800?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003801/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003802VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_history, static) = {
3803 .path = "set terminal history",
3804 .short_help = "set terminal history [on|off] [limit <lines>]",
3805 .function = unix_cli_set_terminal_history,
3806};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003807/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003808
Chris Lukeb5850972016-05-03 16:34:59 -04003809/** CLI command to set terminal ANSI settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003810static clib_error_t *
3811unix_cli_set_terminal_ansi (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003812 unformat_input_t * input,
3813 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003814{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003815 unix_cli_main_t *cm = &unix_cli_main;
3816 unix_cli_file_t *cf;
Chris Luke7afda3a2016-04-25 13:49:22 -04003817
3818 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3819
Chris Luke03add7f2017-09-20 23:31:24 -04003820 if (!cf->is_interactive)
3821 return clib_error_return (0, "invalid for non-interactive sessions");
3822
Chris Luke7afda3a2016-04-25 13:49:22 -04003823 if (unformat (input, "on"))
3824 cf->ansi_capable = 1;
3825 else if (unformat (input, "off"))
3826 cf->ansi_capable = 0;
3827 else
3828 return clib_error_return (0, "unknown parameter: `%U`",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003829 format_unformat_error, input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003830
3831 return 0;
3832}
3833
Chris Luke54ccf222016-07-25 16:38:11 -04003834/*?
3835 * Enables or disables the use of ANSI control sequences by this terminal.
3836 * The default will vary based on terminal detection at the start of the
3837 * session.
3838 *
3839 * ANSI control sequences are used in a small number of places to provide,
3840 * for example, color text output and to control the cursor in the pager.
3841?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003842/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003843VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_ansi, static) = {
3844 .path = "set terminal ansi",
3845 .short_help = "set terminal ansi [on|off]",
3846 .function = unix_cli_set_terminal_ansi,
3847};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003848/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003849
3850static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07003851unix_cli_init (vlib_main_t * vm)
3852{
Chris Luke6a3a4f72019-07-09 23:33:30 -04003853 unix_cli_main_t *cm = &unix_cli_main;
3854
3855 /* Breadcrumb to indicate the new session process
3856 * has not been started */
3857 cm->new_session_process_node_index = ~0;
3858
Ed Warnickecb9cada2015-12-08 15:45:58 -07003859 return 0;
3860}
3861
3862VLIB_INIT_FUNCTION (unix_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003863
3864/*
3865 * fd.io coding-style-patch-verification: ON
3866 *
3867 * Local Variables:
3868 * eval: (c-set-style "gnu")
3869 * End:
3870 */