blob: 1624ce387fb4409c99a56ad05b210303058a3bf0 [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>
Chris Luke0aca5eb2016-04-25 13:48:54 -040050#include <vppinfra/timer.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070051
Chris Luke0aca5eb2016-04-25 13:48:54 -040052#include <ctype.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070053#include <fcntl.h>
54#include <sys/stat.h>
55#include <termios.h>
Chris Luke7afda3a2016-04-25 13:49:22 -040056#include <signal.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070057#include <unistd.h>
58#include <arpa/telnet.h>
Chris Luke7afda3a2016-04-25 13:49:22 -040059#include <sys/ioctl.h>
Damjan Marionf6616382017-06-21 12:01:37 +020060#include <sys/types.h>
61#include <unistd.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070062
Chris Lukeb5850972016-05-03 16:34:59 -040063/** ANSI escape code. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040064#define ESC "\x1b"
65
Chris Lukeb5850972016-05-03 16:34:59 -040066/** ANSI Control Sequence Introducer. */
Chris Luke0aca5eb2016-04-25 13:48:54 -040067#define CSI ESC "["
68
Chris Lukeb5850972016-05-03 16:34:59 -040069/** ANSI clear screen. */
Chris Luke7afda3a2016-04-25 13:49:22 -040070#define ANSI_CLEAR CSI "2J" CSI "1;1H"
Chris Lukeb5850972016-05-03 16:34:59 -040071/** ANSI reset color settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -040072#define ANSI_RESET CSI "0m"
Chris Lukeb5850972016-05-03 16:34:59 -040073/** ANSI Start bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040074#define ANSI_BOLD CSI "1m"
Chris Lukeb5850972016-05-03 16:34:59 -040075/** ANSI Stop bold text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040076#define ANSI_DIM CSI "2m"
Chris Lukeb5850972016-05-03 16:34:59 -040077/** ANSI Start dark red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040078#define ANSI_DRED ANSI_DIM CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040079/** ANSI Start bright red text. */
Chris Luke7afda3a2016-04-25 13:49:22 -040080#define ANSI_BRED ANSI_BOLD CSI "31m"
Chris Lukeb5850972016-05-03 16:34:59 -040081/** ANSI clear line cursor is on. */
Chris Luke7afda3a2016-04-25 13:49:22 -040082#define ANSI_CLEARLINE CSI "2K"
Chris Lukeb5850972016-05-03 16:34:59 -040083/** ANSI scroll screen down one line. */
Chris Luke7afda3a2016-04-25 13:49:22 -040084#define ANSI_SCROLLDN CSI "1T"
Chris Lukeb5850972016-05-03 16:34:59 -040085/** ANSI save cursor position. */
Chris Luke7afda3a2016-04-25 13:49:22 -040086#define ANSI_SAVECURSOR CSI "s"
Chris Lukeb5850972016-05-03 16:34:59 -040087/** ANSI restore cursor position if previously saved. */
Chris Luke7afda3a2016-04-25 13:49:22 -040088#define ANSI_RESTCURSOR CSI "u"
Chris Luke0aca5eb2016-04-25 13:48:54 -040089
90/** Maximum depth into a byte stream from which to compile a Telnet
91 * protocol message. This is a saftey measure. */
Chris Luke1aed76f2016-04-29 08:14:38 -040092#define UNIX_CLI_MAX_DEPTH_TELNET 24
Chris Luke0aca5eb2016-04-25 13:48:54 -040093
Chris Lukeb2bcad62017-09-18 08:51:22 -040094/** Minimum terminal width we will accept */
95#define UNIX_CLI_MIN_TERMINAL_WIDTH 1
96/** Maximum terminal width we will accept */
97#define UNIX_CLI_MAX_TERMINAL_WIDTH 512
98/** Minimum terminal height we will accept */
99#define UNIX_CLI_MIN_TERMINAL_HEIGHT 1
100/** Maximum terminal height we will accept */
101#define UNIX_CLI_MAX_TERMINAL_HEIGHT 512
102
Chris Luke0aca5eb2016-04-25 13:48:54 -0400103/** Unix standard in */
104#define UNIX_CLI_STDIN_FD 0
105
106
Chris Lukeb5850972016-05-03 16:34:59 -0400107/** A CLI banner line. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400108typedef struct
109{
110 u8 *line; /**< The line to print. */
111 u32 length; /**< The length of the line without terminating NUL. */
Chris Luke572d8122016-04-25 13:49:07 -0400112} unix_cli_banner_t;
113
114#define _(a) { .line = (u8 *)(a), .length = sizeof(a) - 1 }
115/** Plain welcome banner. */
116static unix_cli_banner_t unix_cli_banner[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400117 _(" _______ _ _ _____ ___ \n"),
118 _(" __/ __/ _ \\ (_)__ | | / / _ \\/ _ \\\n"),
119 _(" _/ _// // / / / _ \\ | |/ / ___/ ___/\n"),
120 _(" /_/ /____(_)_/\\___/ |___/_/ /_/ \n"),
121 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400122};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400123
Chris Luke572d8122016-04-25 13:49:07 -0400124/** ANSI color welcome banner. */
125static unix_cli_banner_t unix_cli_banner_color[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400126 _(ANSI_BRED " _______ _ " ANSI_RESET " _ _____ ___ \n"),
127 _(ANSI_BRED " __/ __/ _ \\ (_)__ " ANSI_RESET " | | / / _ \\/ _ \\\n"),
128 _(ANSI_BRED " _/ _// // / / / _ \\" ANSI_RESET " | |/ / ___/ ___/\n"),
129 _(ANSI_BRED " /_/ /____(_)_/\\___/" ANSI_RESET " |___/_/ /_/ \n"),
130 _("\n")
Chris Luke572d8122016-04-25 13:49:07 -0400131};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400132
Chris Luke572d8122016-04-25 13:49:07 -0400133#undef _
134
Chris Luke862623d2016-05-14 10:13:34 -0400135/** Pager line index */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400136typedef struct
137{
Chris Luke862623d2016-05-14 10:13:34 -0400138 /** Index into pager_vector */
139 u32 line;
140
141 /** Offset of the string in the line */
142 u32 offset;
143
144 /** Length of the string in the line */
145 u32 length;
146} unix_cli_pager_index_t;
147
Chris Luke572d8122016-04-25 13:49:07 -0400148
Chris Luke0aca5eb2016-04-25 13:48:54 -0400149/** Unix CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400150typedef struct
151{
Chris Lukeb5850972016-05-03 16:34:59 -0400152 /** The file index held by unix.c */
Damjan Marion56dd5432017-09-08 19:52:02 +0200153 u32 clib_file_index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700154
Chris Lukeb5850972016-05-03 16:34:59 -0400155 /** Vector of output pending write to file descriptor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400156 u8 *output_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700157
Chris Lukeb5850972016-05-03 16:34:59 -0400158 /** Vector of input saved by Unix input node to be processed by
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 CLI process. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400160 u8 *input_vector;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161
Chris Luke54ccf222016-07-25 16:38:11 -0400162 /** This session has command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700163 u8 has_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400164 /** Array of vectors of commands in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400165 u8 **command_history;
Chris Luke54ccf222016-07-25 16:38:11 -0400166 /** The command currently pointed at by the history cursor. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400167 u8 *current_command;
Chris Luke54ccf222016-07-25 16:38:11 -0400168 /** How far from the end of the history array the user has browsed. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700169 i32 excursion;
Chris Luke6b90fe32016-04-25 13:49:15 -0400170
Chris Lukeb5850972016-05-03 16:34:59 -0400171 /** Maximum number of history entries this session will store. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 u32 history_limit;
Chris Luke6b90fe32016-04-25 13:49:15 -0400173
Chris Lukeb5850972016-05-03 16:34:59 -0400174 /** Current command line counter */
Chris Luke6b90fe32016-04-25 13:49:15 -0400175 u32 command_number;
176
Chris Luke54ccf222016-07-25 16:38:11 -0400177 /** The string being searched for in the history. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400178 u8 *search_key;
Chris Luke54ccf222016-07-25 16:38:11 -0400179 /** If non-zero then the CLI is searching in the history array.
180 * - @c -1 means search backwards.
181 * - @c 1 means search forwards.
182 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700183 int search_mode;
184
Chris Lukeb5850972016-05-03 16:34:59 -0400185 /** Position of the insert cursor on the current input line */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400186 u32 cursor;
187
Chris Lukeb5850972016-05-03 16:34:59 -0400188 /** Line mode or char mode */
Chris Luke7afda3a2016-04-25 13:49:22 -0400189 u8 line_mode;
190
Chris Lukeb5850972016-05-03 16:34:59 -0400191 /** Set if the CRLF mode wants CR + LF */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400192 u8 crlf_mode;
193
Chris Lukeb5850972016-05-03 16:34:59 -0400194 /** Can we do ANSI output? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400195 u8 ansi_capable;
196
Chris Lukeb5850972016-05-03 16:34:59 -0400197 /** Has the session started? */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400198 u8 started;
199
Chris Lukeb5850972016-05-03 16:34:59 -0400200 /** Disable the pager? */
Chris Luke7afda3a2016-04-25 13:49:22 -0400201 u8 no_pager;
202
Chris Lukeb5850972016-05-03 16:34:59 -0400203 /** Pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400204 u8 **pager_vector;
Chris Luke7afda3a2016-04-25 13:49:22 -0400205
Chris Luke862623d2016-05-14 10:13:34 -0400206 /** Index of line fragments in the pager buffer */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400207 unix_cli_pager_index_t *pager_index;
Chris Luke7afda3a2016-04-25 13:49:22 -0400208
Chris Lukeb5850972016-05-03 16:34:59 -0400209 /** Line number of top of page */
Chris Luke7afda3a2016-04-25 13:49:22 -0400210 u32 pager_start;
211
Chris Lukeb5850972016-05-03 16:34:59 -0400212 /** Terminal width */
213 u32 width;
Chris Luke7afda3a2016-04-25 13:49:22 -0400214
Chris Lukeb5850972016-05-03 16:34:59 -0400215 /** Terminal height */
216 u32 height;
217
218 /** Process node identifier */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219 u32 process_node_index;
220} unix_cli_file_t;
221
Chris Lukeb5850972016-05-03 16:34:59 -0400222/** Resets the pager buffer and other data.
223 * @param f The CLI session whose pager needs to be reset.
224 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700225always_inline void
Dave Barach9b8ffd92016-07-08 08:13:45 -0400226unix_cli_pager_reset (unix_cli_file_t * f)
Chris Luke7afda3a2016-04-25 13:49:22 -0400227{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400228 u8 **p;
Chris Luke7afda3a2016-04-25 13:49:22 -0400229
Chris Luke862623d2016-05-14 10:13:34 -0400230 f->pager_start = 0;
231
232 vec_free (f->pager_index);
233 f->pager_index = 0;
234
Chris Luke7afda3a2016-04-25 13:49:22 -0400235 vec_foreach (p, f->pager_vector)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400236 {
237 vec_free (*p);
238 }
Chris Luke862623d2016-05-14 10:13:34 -0400239 vec_free (f->pager_vector);
Chris Luke7afda3a2016-04-25 13:49:22 -0400240 f->pager_vector = 0;
241}
242
Chris Lukeb5850972016-05-03 16:34:59 -0400243/** Release storage used by a CLI session.
244 * @param f The CLI session whose storage needs to be released.
245 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400246always_inline void
Ed Warnickecb9cada2015-12-08 15:45:58 -0700247unix_cli_file_free (unix_cli_file_t * f)
248{
249 vec_free (f->output_vector);
250 vec_free (f->input_vector);
Chris Luke862623d2016-05-14 10:13:34 -0400251 unix_cli_pager_reset (f);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252}
253
Chris Lukeb5850972016-05-03 16:34:59 -0400254/** CLI actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400255typedef enum
256{
Chris Luke54ccf222016-07-25 16:38:11 -0400257 UNIX_CLI_PARSE_ACTION_NOACTION = 0, /**< No action */
258 UNIX_CLI_PARSE_ACTION_CRLF, /**< Carriage return, newline or enter */
259 UNIX_CLI_PARSE_ACTION_TAB, /**< Tab key */
260 UNIX_CLI_PARSE_ACTION_ERASE, /**< Erase cursor left */
261 UNIX_CLI_PARSE_ACTION_ERASERIGHT, /**< Erase cursor right */
262 UNIX_CLI_PARSE_ACTION_UP, /**< Up arrow */
263 UNIX_CLI_PARSE_ACTION_DOWN, /**< Down arrow */
264 UNIX_CLI_PARSE_ACTION_LEFT, /**< Left arrow */
265 UNIX_CLI_PARSE_ACTION_RIGHT, /**< Right arrow */
266 UNIX_CLI_PARSE_ACTION_HOME, /**< Home key (jump to start of line) */
267 UNIX_CLI_PARSE_ACTION_END, /**< End key (jump to end of line) */
268 UNIX_CLI_PARSE_ACTION_WORDLEFT, /**< Jump cursor to start of left word */
269 UNIX_CLI_PARSE_ACTION_WORDRIGHT, /**< Jump cursor to start of right word */
270 UNIX_CLI_PARSE_ACTION_ERASELINELEFT, /**< Erase line to left of cursor */
271 UNIX_CLI_PARSE_ACTION_ERASELINERIGHT, /**< Erase line to right & including cursor */
272 UNIX_CLI_PARSE_ACTION_CLEAR, /**< Clear the terminal */
273 UNIX_CLI_PARSE_ACTION_REVSEARCH, /**< Search backwards in command history */
274 UNIX_CLI_PARSE_ACTION_FWDSEARCH, /**< Search forwards in command history */
275 UNIX_CLI_PARSE_ACTION_YANK, /**< Undo last erase action */
276 UNIX_CLI_PARSE_ACTION_TELNETIAC, /**< Telnet control code */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400277
Chris Luke54ccf222016-07-25 16:38:11 -0400278 UNIX_CLI_PARSE_ACTION_PAGER_CRLF, /**< Enter pressed (CR, CRLF, LF, etc) */
279 UNIX_CLI_PARSE_ACTION_PAGER_QUIT, /**< Exit the pager session */
280 UNIX_CLI_PARSE_ACTION_PAGER_NEXT, /**< Scroll to next page */
281 UNIX_CLI_PARSE_ACTION_PAGER_DN, /**< Scroll to next line */
282 UNIX_CLI_PARSE_ACTION_PAGER_UP, /**< Scroll to previous line */
283 UNIX_CLI_PARSE_ACTION_PAGER_TOP, /**< Scroll to first line */
284 UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM, /**< Scroll to last line */
285 UNIX_CLI_PARSE_ACTION_PAGER_PGDN, /**< Scroll to next page */
286 UNIX_CLI_PARSE_ACTION_PAGER_PGUP, /**< Scroll to previous page */
287 UNIX_CLI_PARSE_ACTION_PAGER_REDRAW, /**< Clear and redraw the page on the terminal */
288 UNIX_CLI_PARSE_ACTION_PAGER_SEARCH, /**< Search the pager buffer */
Chris Luke7afda3a2016-04-25 13:49:22 -0400289
Chris Luke54ccf222016-07-25 16:38:11 -0400290 UNIX_CLI_PARSE_ACTION_PARTIALMATCH, /**< Action parser found a partial match */
291 UNIX_CLI_PARSE_ACTION_NOMATCH /**< Action parser did not find any match */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400292} unix_cli_parse_action_t;
293
Chris Luke8e5b0412016-07-26 13:06:10 -0400294/** @brief Mapping of input buffer strings to action values.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400295 * @note This won't work as a hash since we need to be able to do
296 * partial matches on the string.
297 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400298typedef struct
299{
300 u8 *input; /**< Input string to match. */
301 u32 len; /**< Length of input without final NUL. */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400302 unix_cli_parse_action_t action; /**< Action to take when matched. */
303} unix_cli_parse_actions_t;
304
Chris Lukeb5850972016-05-03 16:34:59 -0400305/** @brief Given a capital ASCII letter character return a @c NUL terminated
Chris Luke0aca5eb2016-04-25 13:48:54 -0400306 * string with the control code for that letter.
Chris Lukeb5850972016-05-03 16:34:59 -0400307 *
308 * @param c An ASCII character.
309 * @return A @c NUL terminated string of type @c u8[].
310 *
311 * @par Example
312 * @c CTL('A') returns <code>{ 0x01, 0x00 }</code> as a @c u8[].
Chris Luke0aca5eb2016-04-25 13:48:54 -0400313 */
314#define CTL(c) (u8[]){ (c) - '@', 0 }
315
316#define _(a,b) { .input = (u8 *)(a), .len = sizeof(a) - 1, .action = (b) }
Chris Lukeb5850972016-05-03 16:34:59 -0400317/**
318 * Patterns to match on a CLI input stream.
319 * @showinitializer
320 */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400321static unix_cli_parse_actions_t unix_cli_parse_strings[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400322 /* Line handling */
323 _("\r\n", UNIX_CLI_PARSE_ACTION_CRLF), /* Must be before '\r' */
324 _("\n", UNIX_CLI_PARSE_ACTION_CRLF),
325 _("\r\0", UNIX_CLI_PARSE_ACTION_CRLF), /* Telnet does this */
326 _("\r", UNIX_CLI_PARSE_ACTION_CRLF),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400327
Dave Barach9b8ffd92016-07-08 08:13:45 -0400328 /* Unix shell control codes */
329 _(CTL ('B'), UNIX_CLI_PARSE_ACTION_LEFT),
330 _(CTL ('F'), UNIX_CLI_PARSE_ACTION_RIGHT),
331 _(CTL ('P'), UNIX_CLI_PARSE_ACTION_UP),
332 _(CTL ('N'), UNIX_CLI_PARSE_ACTION_DOWN),
333 _(CTL ('A'), UNIX_CLI_PARSE_ACTION_HOME),
334 _(CTL ('E'), UNIX_CLI_PARSE_ACTION_END),
335 _(CTL ('D'), UNIX_CLI_PARSE_ACTION_ERASERIGHT),
336 _(CTL ('U'), UNIX_CLI_PARSE_ACTION_ERASELINELEFT),
337 _(CTL ('K'), UNIX_CLI_PARSE_ACTION_ERASELINERIGHT),
338 _(CTL ('Y'), UNIX_CLI_PARSE_ACTION_YANK),
339 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_CLEAR),
340 _(ESC "b", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* Alt-B */
341 _(ESC "f", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* Alt-F */
342 _("\b", UNIX_CLI_PARSE_ACTION_ERASE), /* ^H */
343 _("\x7f", UNIX_CLI_PARSE_ACTION_ERASE), /* Backspace */
344 _("\t", UNIX_CLI_PARSE_ACTION_TAB), /* ^I */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400345
Dave Barach9b8ffd92016-07-08 08:13:45 -0400346 /* VT100 Normal mode - Broadest support */
347 _(CSI "A", UNIX_CLI_PARSE_ACTION_UP),
348 _(CSI "B", UNIX_CLI_PARSE_ACTION_DOWN),
349 _(CSI "C", UNIX_CLI_PARSE_ACTION_RIGHT),
350 _(CSI "D", UNIX_CLI_PARSE_ACTION_LEFT),
351 _(CSI "H", UNIX_CLI_PARSE_ACTION_HOME),
352 _(CSI "F", UNIX_CLI_PARSE_ACTION_END),
353 _(CSI "3~", UNIX_CLI_PARSE_ACTION_ERASERIGHT), /* Delete */
354 _(CSI "1;5D", UNIX_CLI_PARSE_ACTION_WORDLEFT), /* C-Left */
355 _(CSI "1;5C", UNIX_CLI_PARSE_ACTION_WORDRIGHT), /* C-Right */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400356
357 /* VT100 Application mode - Some Gnome Terminal functions use these */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400358 _(ESC "OA", UNIX_CLI_PARSE_ACTION_UP),
359 _(ESC "OB", UNIX_CLI_PARSE_ACTION_DOWN),
360 _(ESC "OC", UNIX_CLI_PARSE_ACTION_RIGHT),
361 _(ESC "OD", UNIX_CLI_PARSE_ACTION_LEFT),
362 _(ESC "OH", UNIX_CLI_PARSE_ACTION_HOME),
363 _(ESC "OF", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400364
Dave Barach9b8ffd92016-07-08 08:13:45 -0400365 /* ANSI X3.41-1974 - sent by Microsoft Telnet and PuTTY */
366 _(CSI "1~", UNIX_CLI_PARSE_ACTION_HOME),
367 _(CSI "4~", UNIX_CLI_PARSE_ACTION_END),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400368
Dave Barach9b8ffd92016-07-08 08:13:45 -0400369 /* Emacs-ish history search */
370 _(CTL ('S'), UNIX_CLI_PARSE_ACTION_FWDSEARCH),
371 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_REVSEARCH),
Chris Luke0aca5eb2016-04-25 13:48:54 -0400372
Dave Barach9b8ffd92016-07-08 08:13:45 -0400373 /* Other protocol things */
374 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
375 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
376 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400377};
Chris Lukeb5850972016-05-03 16:34:59 -0400378
379/**
380 * Patterns to match when a CLI session is in the pager.
381 * @showinitializer
382 */
Chris Luke7afda3a2016-04-25 13:49:22 -0400383static unix_cli_parse_actions_t unix_cli_parse_pager[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400384 /* Line handling */
385 _("\r\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Must be before '\r' */
386 _("\n", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
387 _("\r\0", UNIX_CLI_PARSE_ACTION_PAGER_CRLF), /* Telnet does this */
388 _("\r", UNIX_CLI_PARSE_ACTION_PAGER_CRLF),
Chris Luke7afda3a2016-04-25 13:49:22 -0400389
Dave Barach9b8ffd92016-07-08 08:13:45 -0400390 /* Pager commands */
391 _(" ", UNIX_CLI_PARSE_ACTION_PAGER_NEXT),
392 _("q", UNIX_CLI_PARSE_ACTION_PAGER_QUIT),
393 _(CTL ('L'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
394 _(CTL ('R'), UNIX_CLI_PARSE_ACTION_PAGER_REDRAW),
395 _("/", UNIX_CLI_PARSE_ACTION_PAGER_SEARCH),
Chris Luke7afda3a2016-04-25 13:49:22 -0400396
Dave Barach9b8ffd92016-07-08 08:13:45 -0400397 /* VT100 */
398 _(CSI "A", UNIX_CLI_PARSE_ACTION_PAGER_UP),
399 _(CSI "B", UNIX_CLI_PARSE_ACTION_PAGER_DN),
400 _(CSI "H", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
401 _(CSI "F", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400402
Dave Barach9b8ffd92016-07-08 08:13:45 -0400403 /* VT100 Application mode */
404 _(ESC "OA", UNIX_CLI_PARSE_ACTION_PAGER_UP),
405 _(ESC "OB", UNIX_CLI_PARSE_ACTION_PAGER_DN),
406 _(ESC "OH", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
407 _(ESC "OF", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
Chris Luke7afda3a2016-04-25 13:49:22 -0400408
Dave Barach9b8ffd92016-07-08 08:13:45 -0400409 /* ANSI X3.41-1974 */
410 _(CSI "1~", UNIX_CLI_PARSE_ACTION_PAGER_TOP),
411 _(CSI "4~", UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM),
412 _(CSI "5~", UNIX_CLI_PARSE_ACTION_PAGER_PGUP),
413 _(CSI "6~", UNIX_CLI_PARSE_ACTION_PAGER_PGDN),
Chris Luke7afda3a2016-04-25 13:49:22 -0400414
Dave Barach9b8ffd92016-07-08 08:13:45 -0400415 /* Other protocol things */
416 _("\xff", UNIX_CLI_PARSE_ACTION_TELNETIAC), /* IAC */
417 _("\0", UNIX_CLI_PARSE_ACTION_NOACTION), /* NUL */
418 _(NULL, UNIX_CLI_PARSE_ACTION_NOMATCH)
Chris Luke7afda3a2016-04-25 13:49:22 -0400419};
Dave Barach9b8ffd92016-07-08 08:13:45 -0400420
Chris Luke0aca5eb2016-04-25 13:48:54 -0400421#undef _
422
Chris Lukeb5850972016-05-03 16:34:59 -0400423/** CLI session events. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400424typedef enum
425{
Chris Lukeb5850972016-05-03 16:34:59 -0400426 UNIX_CLI_PROCESS_EVENT_READ_READY, /**< A file descriptor has data to be read. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400427 UNIX_CLI_PROCESS_EVENT_QUIT, /**< A CLI session wants to close. */
Chris Luke0aca5eb2016-04-25 13:48:54 -0400428} unix_cli_process_event_type_t;
429
Chris Lukeb5850972016-05-03 16:34:59 -0400430/** CLI global state. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400431typedef struct
432{
Chris Lukeb5850972016-05-03 16:34:59 -0400433 /** Prompt string for CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400434 u8 *cli_prompt;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700435
Chris Lukeb5850972016-05-03 16:34:59 -0400436 /** Vec pool of CLI sessions. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400437 unix_cli_file_t *cli_file_pool;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700438
Chris Lukeb5850972016-05-03 16:34:59 -0400439 /** Vec pool of unused session indices. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400440 u32 *unused_cli_process_node_indices;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700441
Chris Lukeb5850972016-05-03 16:34:59 -0400442 /** The session index of the stdin cli */
Chris Luke7afda3a2016-04-25 13:49:22 -0400443 u32 stdin_cli_file_index;
444
Chris Lukeb5850972016-05-03 16:34:59 -0400445 /** File pool index of current input. */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700446 u32 current_input_file_index;
447} unix_cli_main_t;
448
Chris Lukeb5850972016-05-03 16:34:59 -0400449/** CLI global state */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700450static unix_cli_main_t unix_cli_main;
451
Chris Luke0aca5eb2016-04-25 13:48:54 -0400452/**
Chris Luke8e5b0412016-07-26 13:06:10 -0400453 * @brief Search for a byte sequence in the action list.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400454 *
Chris Lukeb5850972016-05-03 16:34:59 -0400455 * Searches the @ref unix_cli_parse_actions_t list in @a a for a match with
456 * the bytes in @a input of maximum length @a ilen bytes.
457 * When a match is made @a *matched indicates how many bytes were matched.
458 * Returns a value from the enum @ref unix_cli_parse_action_t to indicate
459 * whether no match was found, a partial match was found or a complete
460 * match was found and what action, if any, should be taken.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400461 *
Chris Lukeb5850972016-05-03 16:34:59 -0400462 * @param[in] a Actions list to search within.
463 * @param[in] input String fragment to search for.
464 * @param[in] ilen Length of the string in 'input'.
465 * @param[out] matched Pointer to an integer that will contain the number
466 * of bytes matched when a complete match is found.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400467 *
Chris Lukeb5850972016-05-03 16:34:59 -0400468 * @return Action from @ref unix_cli_parse_action_t that the string fragment
Chris Luke0aca5eb2016-04-25 13:48:54 -0400469 * matches.
Chris Lukeb5850972016-05-03 16:34:59 -0400470 * @ref UNIX_CLI_PARSE_ACTION_PARTIALMATCH is returned when the
471 * whole input string matches the start of at least one action.
472 * @ref UNIX_CLI_PARSE_ACTION_NOMATCH is returned when there is no
Chris Luke0aca5eb2016-04-25 13:48:54 -0400473 * match at all.
474 */
475static unix_cli_parse_action_t
Dave Barach9b8ffd92016-07-08 08:13:45 -0400476unix_cli_match_action (unix_cli_parse_actions_t * a,
477 u8 * input, u32 ilen, i32 * matched)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400478{
Chris Luke0aca5eb2016-04-25 13:48:54 -0400479 u8 partial = 0;
480
481 while (a->input)
482 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400483 if (ilen >= a->len)
484 {
485 /* see if the start of the input buffer exactly matches the current
486 * action string. */
487 if (memcmp (input, a->input, a->len) == 0)
488 {
489 *matched = a->len;
490 return a->action;
491 }
492 }
493 else
494 {
495 /* if the first ilen characters match, flag this as a partial -
496 * meaning keep collecting bytes in case of a future match */
497 if (memcmp (input, a->input, ilen) == 0)
498 partial = 1;
499 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400500
Dave Barach9b8ffd92016-07-08 08:13:45 -0400501 /* check next action */
502 a++;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400503 }
504
505 return partial ?
Dave Barach9b8ffd92016-07-08 08:13:45 -0400506 UNIX_CLI_PARSE_ACTION_PARTIALMATCH : UNIX_CLI_PARSE_ACTION_NOMATCH;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400507}
508
509
Chris Luke54ccf222016-07-25 16:38:11 -0400510/** Add bytes to the output vector and then flagg the I/O system that bytes
511 * are available to be sent.
512 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700513static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200514unix_cli_add_pending_output (clib_file_t * uf,
Ed Warnickecb9cada2015-12-08 15:45:58 -0700515 unix_cli_file_t * cf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400516 u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700517{
Damjan Marion56dd5432017-09-08 19:52:02 +0200518 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700519
520 vec_add (cf->output_vector, buffer, buffer_bytes);
521 if (vec_len (cf->output_vector) > 0)
522 {
523 int skip_update = 0 != (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
524 uf->flags |= UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400525 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200526 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700527 }
528}
529
Chris Luke54ccf222016-07-25 16:38:11 -0400530/** Delete all bytes from the output vector and flag the I/O system
531 * that no more bytes are available to be sent.
532 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700533static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200534unix_cli_del_pending_output (clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400535 unix_cli_file_t * cf, uword n_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700536{
Damjan Marion56dd5432017-09-08 19:52:02 +0200537 clib_file_main_t *fm = &file_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700538
539 vec_delete (cf->output_vector, n_bytes, 0);
540 if (vec_len (cf->output_vector) <= 0)
541 {
542 int skip_update = 0 == (uf->flags & UNIX_FILE_DATA_AVAILABLE_TO_WRITE);
543 uf->flags &= ~UNIX_FILE_DATA_AVAILABLE_TO_WRITE;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400544 if (!skip_update)
Damjan Marion56dd5432017-09-08 19:52:02 +0200545 fm->file_update (uf, UNIX_FILE_UPDATE_MODIFY);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700546 }
547}
548
Chris Luke8e5b0412016-07-26 13:06:10 -0400549/** @brief A bit like strchr with a buffer length limit.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400550 * Search a buffer for the first instance of a character up to the limit of
551 * the buffer length. If found then return the position of that character.
552 *
553 * The key departure from strchr is that if the character is not found then
554 * return the buffer length.
555 *
556 * @param chr The byte value to search for.
557 * @param str The buffer in which to search for the value.
558 * @param len The depth into the buffer to search.
559 *
560 * @return The index of the first occurence of \c chr. If \c chr is not
561 * found then \c len instead.
562 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400563always_inline word
564unix_vlib_findchr (u8 chr, u8 * str, word len)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400565{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400566 word i = 0;
567 for (i = 0; i < len; i++, str++)
568 {
569 if (*str == chr)
570 return i;
571 }
572 return len;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400573}
574
Chris Luke8e5b0412016-07-26 13:06:10 -0400575/** @brief Send a buffer to the CLI stream if possible, enqueue it otherwise.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400576 * Attempts to write given buffer to the file descriptor of the given
577 * Unix CLI session. If that session already has data in the output buffer
578 * or if the write attempt tells us to try again later then the given buffer
579 * is appended to the pending output buffer instead.
580 *
581 * This is typically called only from \c unix_vlib_cli_output_cooked since
582 * that is where CRLF handling occurs or from places where we explicitly do
583 * not want cooked handling.
584 *
585 * @param cf Unix CLI session of the desired stream to write to.
586 * @param uf The Unix file structure of the desired stream to write to.
587 * @param buffer Pointer to the buffer that needs to be written.
588 * @param buffer_bytes The number of bytes from \c buffer to write.
589 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400590static void
591unix_vlib_cli_output_raw (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200592 clib_file_t * uf, u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400593{
594 int n = 0;
595
596 if (vec_len (cf->output_vector) == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400597 n = write (uf->file_descriptor, buffer, buffer_bytes);
Chris Luke0aca5eb2016-04-25 13:48:54 -0400598
599 if (n < 0 && errno != EAGAIN)
600 {
601 clib_unix_warning ("write");
602 }
603 else if ((word) n < (word) buffer_bytes)
604 {
605 /* We got EAGAIN or we already have stuff in the buffer;
606 * queue up whatever didn't get sent for later. */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400607 if (n < 0)
608 n = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400609 unix_cli_add_pending_output (uf, cf, buffer + n, buffer_bytes - n);
610 }
611}
612
Chris Luke8e5b0412016-07-26 13:06:10 -0400613/** @brief Process a buffer for CRLF handling before outputting it to the CLI.
Chris Luke0aca5eb2016-04-25 13:48:54 -0400614 *
615 * @param cf Unix CLI session of the desired stream to write to.
616 * @param uf The Unix file structure of the desired stream to write to.
617 * @param buffer Pointer to the buffer that needs to be written.
618 * @param buffer_bytes The number of bytes from \c buffer to write.
619 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400620static void
621unix_vlib_cli_output_cooked (unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +0200622 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400623 u8 * buffer, uword buffer_bytes)
Chris Luke0aca5eb2016-04-25 13:48:54 -0400624{
625 word end = 0, start = 0;
626
627 while (end < buffer_bytes)
628 {
629 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400630 {
631 /* iterate the line on \n's so we can insert a \r before it */
632 end = unix_vlib_findchr ('\n',
633 buffer + start,
634 buffer_bytes - start) + start;
635 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400636 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400637 {
638 /* otherwise just send the whole buffer */
639 end = buffer_bytes;
640 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400641
Dave Barach9b8ffd92016-07-08 08:13:45 -0400642 unix_vlib_cli_output_raw (cf, uf, buffer + start, end - start);
Chris Luke0aca5eb2016-04-25 13:48:54 -0400643
644 if (cf->crlf_mode)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400645 {
646 if (end < buffer_bytes)
647 {
648 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\r\n", 2);
649 end++; /* skip the \n that we already sent */
650 }
651 start = end;
652 }
Chris Luke0aca5eb2016-04-25 13:48:54 -0400653 }
654}
655
Chris Luke8e5b0412016-07-26 13:06:10 -0400656/** @brief Output the CLI prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400657static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200658unix_cli_cli_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400659{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400660 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke7afda3a2016-04-25 13:49:22 -0400661
662 unix_vlib_cli_output_raw (cf, uf, cm->cli_prompt, vec_len (cm->cli_prompt));
663}
664
Chris Luke8e5b0412016-07-26 13:06:10 -0400665/** @brief Output a pager prompt and show number of buffered lines */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400666static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200667unix_cli_pager_prompt (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400668{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400669 u8 *prompt;
Chris Luke270b6de2016-05-19 14:23:25 -0400670 u32 h;
671
672 h = cf->pager_start + (cf->height - 1);
673 if (h > vec_len (cf->pager_index))
674 h = vec_len (cf->pager_index);
Chris Luke7afda3a2016-04-25 13:49:22 -0400675
Dave Barach9b8ffd92016-07-08 08:13:45 -0400676 prompt = format (0, "\r%s-- more -- (%d-%d/%d)%s",
677 cf->ansi_capable ? ANSI_BOLD : "",
678 cf->pager_start + 1,
679 h,
680 vec_len (cf->pager_index),
681 cf->ansi_capable ? ANSI_RESET : "");
Chris Luke7afda3a2016-04-25 13:49:22 -0400682
Dave Barach9b8ffd92016-07-08 08:13:45 -0400683 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400684
Dave Barach9b8ffd92016-07-08 08:13:45 -0400685 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400686}
687
Chris Luke8e5b0412016-07-26 13:06:10 -0400688/** @brief Output a pager "skipping" message */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400689static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200690unix_cli_pager_message (unix_cli_file_t * cf, clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400691 char *message, char *postfix)
Chris Luke7afda3a2016-04-25 13:49:22 -0400692{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400693 u8 *prompt;
Chris Luke7afda3a2016-04-25 13:49:22 -0400694
Dave Barach9b8ffd92016-07-08 08:13:45 -0400695 prompt = format (0, "\r%s-- %s --%s%s",
696 cf->ansi_capable ? ANSI_BOLD : "",
697 message, cf->ansi_capable ? ANSI_RESET : "", postfix);
Chris Luke7afda3a2016-04-25 13:49:22 -0400698
Dave Barach9b8ffd92016-07-08 08:13:45 -0400699 unix_vlib_cli_output_cooked (cf, uf, prompt, vec_len (prompt));
Chris Luke7afda3a2016-04-25 13:49:22 -0400700
Dave Barach9b8ffd92016-07-08 08:13:45 -0400701 vec_free (prompt);
Chris Luke7afda3a2016-04-25 13:49:22 -0400702}
703
Chris Luke8e5b0412016-07-26 13:06:10 -0400704/** @brief Erase the printed pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400705static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200706unix_cli_pager_prompt_erase (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke7afda3a2016-04-25 13:49:22 -0400707{
708 if (cf->ansi_capable)
709 {
Dave Barach9b8ffd92016-07-08 08:13:45 -0400710 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
711 unix_vlib_cli_output_cooked (cf, uf,
712 (u8 *) ANSI_CLEARLINE,
713 sizeof (ANSI_CLEARLINE) - 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400714 }
715 else
716 {
717 int i;
718
Dave Barach9b8ffd92016-07-08 08:13:45 -0400719 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
720 for (i = 0; i < cf->width - 1; i++)
721 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
722 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\r", 1);
Chris Luke7afda3a2016-04-25 13:49:22 -0400723 }
724}
725
Chris Luke8e5b0412016-07-26 13:06:10 -0400726/** @brief Uses an ANSI escape sequence to move the cursor */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400727static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200728unix_cli_ansi_cursor (unix_cli_file_t * cf, clib_file_t * uf, u16 x, u16 y)
Chris Luke7afda3a2016-04-25 13:49:22 -0400729{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400730 u8 *str;
Chris Luke7afda3a2016-04-25 13:49:22 -0400731
Dave Barach9b8ffd92016-07-08 08:13:45 -0400732 str = format (0, "%s%d;%dH", CSI, y, x);
Chris Luke7afda3a2016-04-25 13:49:22 -0400733
Dave Barach9b8ffd92016-07-08 08:13:45 -0400734 unix_vlib_cli_output_cooked (cf, uf, str, vec_len (str));
Chris Luke7afda3a2016-04-25 13:49:22 -0400735
Dave Barach9b8ffd92016-07-08 08:13:45 -0400736 vec_free (str);
Chris Luke7afda3a2016-04-25 13:49:22 -0400737}
738
Chris Luke862623d2016-05-14 10:13:34 -0400739/** Redraw the currently displayed page of text.
740 * @param cf CLI session to redraw the pager buffer of.
741 * @param uf Unix file of the CLI session.
742 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400743static void
Damjan Marion56dd5432017-09-08 19:52:02 +0200744unix_cli_pager_redraw (unix_cli_file_t * cf, clib_file_t * uf)
Chris Luke862623d2016-05-14 10:13:34 -0400745{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400746 unix_cli_pager_index_t *pi = NULL;
747 u8 *line = NULL;
Chris Luke862623d2016-05-14 10:13:34 -0400748 word i;
749
750 /* No active pager? Do nothing. */
751 if (!vec_len (cf->pager_index))
752 return;
753
754 if (cf->ansi_capable)
755 {
756 /* If we have ANSI, send the clear screen sequence */
757 unix_vlib_cli_output_cooked (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -0400758 (u8 *) ANSI_CLEAR,
759 sizeof (ANSI_CLEAR) - 1);
Chris Luke862623d2016-05-14 10:13:34 -0400760 }
761 else
762 {
763 /* Otherwise make sure we're on a blank line */
764 unix_cli_pager_prompt_erase (cf, uf);
765 }
766
767 /* (Re-)send the current page of content */
768 for (i = 0; i < cf->height - 1 &&
Dave Barach9b8ffd92016-07-08 08:13:45 -0400769 i + cf->pager_start < vec_len (cf->pager_index); i++)
Chris Luke862623d2016-05-14 10:13:34 -0400770 {
771 pi = &cf->pager_index[cf->pager_start + i];
772 line = cf->pager_vector[pi->line] + pi->offset;
773
774 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
775 }
776 /* if the last line didn't end in newline, add a newline */
777 if (pi && line[pi->length - 1] != '\n')
Dave Barach9b8ffd92016-07-08 08:13:45 -0400778 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke862623d2016-05-14 10:13:34 -0400779
780 unix_cli_pager_prompt (cf, uf);
781}
782
783/** @brief Process and add a line to the pager index.
784 * In normal operation this function will take the given character string
785 * found in @c line and with length @c len_or_index and iterates the over the
786 * contents, adding each line of text discovered within it to the
787 * pager index. Lines are identified by newlines ("<code>\\n</code>") and by
788 * strings longer than the width of the terminal.
789 *
790 * If instead @c line is @c NULL then @c len_or_index is taken to mean the
791 * index of an existing line in the pager buffer; this simply means that the
792 * input line does not need to be cloned since we alreayd have it. This is
793 * typical if we are reindexing the pager buffer.
794 *
795 * @param cf The CLI session whose pager we are adding to.
796 * @param line The string of text to be indexed into the pager buffer.
797 * If @c line is @c NULL then the mode of operation
798 * changes slightly; see the description above.
799 * @param len_or_index If @c line is a pointer to a string then this parameter
800 * indicates the length of that string; Otherwise this
801 * value provides the index in the pager buffer of an
802 * existing string to be indexed.
803 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400804static void
805unix_cli_pager_add_line (unix_cli_file_t * cf, u8 * line, word len_or_index)
Chris Luke862623d2016-05-14 10:13:34 -0400806{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400807 u8 *p;
Chris Luke862623d2016-05-14 10:13:34 -0400808 word i, j, k;
809 word line_index, len;
810 u32 width = cf->width;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400811 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -0400812
813 if (line == NULL)
814 {
815 /* Use a line already in the pager buffer */
816 line_index = len_or_index;
817 p = cf->pager_vector[line_index];
818 len = vec_len (p);
819 }
820 else
821 {
822 len = len_or_index;
823 /* Add a copy of the raw string to the pager buffer */
824 p = vec_new (u8, len);
825 clib_memcpy (p, line, len);
826
827 /* store in pager buffer */
828 line_index = vec_len (cf->pager_vector);
829 vec_add1 (cf->pager_vector, p);
830 }
831
832 i = 0;
833 while (i < len)
834 {
835 /* Find the next line, or run to terminal width, or run to EOL */
836 int l = len - i;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400837 j = unix_vlib_findchr ((u8) '\n', p, l < width ? l : width);
Chris Luke862623d2016-05-14 10:13:34 -0400838
Dave Barach9b8ffd92016-07-08 08:13:45 -0400839 if (j < l && p[j] == '\n') /* incl \n */
840 j++;
Chris Luke862623d2016-05-14 10:13:34 -0400841
842 /* Add the line to the index */
843 k = vec_len (cf->pager_index);
844 vec_validate (cf->pager_index, k);
845 pi = &cf->pager_index[k];
846
847 pi->line = line_index;
848 pi->offset = i;
849 pi->length = j;
850
851 i += j;
852 p += j;
853 }
854}
855
856/** @brief Reindex entire pager buffer.
857 * Resets the current pager index and then re-adds the lines in the pager
858 * buffer to the index.
859 *
860 * Additionally this function attempts to retain the current page start
861 * line offset by searching for the same top-of-screen line in the new index.
862 *
863 * @param cf The CLI session whose pager buffer should be reindexed.
864 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400865static void
866unix_cli_pager_reindex (unix_cli_file_t * cf)
Chris Luke862623d2016-05-14 10:13:34 -0400867{
868 word i, old_line, old_offset;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400869 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -0400870
871 /* If there is nothing in the pager buffer then make sure the index
872 * is empty and move on.
873 */
874 if (cf->pager_vector == 0)
875 {
876 vec_reset_length (cf->pager_index);
877 return;
878 }
879
880 /* Retain a pointer to the current page start line so we can
881 * find it later
882 */
883 pi = &cf->pager_index[cf->pager_start];
884 old_line = pi->line;
885 old_offset = pi->offset;
886
887 /* Re-add the buffered lines to the index */
888 vec_reset_length (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400889 vec_foreach_index (i, cf->pager_vector)
890 {
891 unix_cli_pager_add_line (cf, NULL, i);
892 }
Chris Luke862623d2016-05-14 10:13:34 -0400893
894 /* Attempt to re-locate the previously stored page start line */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400895 vec_foreach_index (i, cf->pager_index)
896 {
897 pi = &cf->pager_index[i];
Chris Luke862623d2016-05-14 10:13:34 -0400898
Dave Barach9b8ffd92016-07-08 08:13:45 -0400899 if (pi->line == old_line &&
900 (pi->offset <= old_offset || pi->offset + pi->length > old_offset))
901 {
902 /* Found it! */
903 cf->pager_start = i;
904 break;
905 }
906 }
Chris Luke862623d2016-05-14 10:13:34 -0400907
908 /* In case the start line was not found (rare), ensure the pager start
909 * index is within bounds
910 */
911 if (cf->pager_start >= vec_len (cf->pager_index))
912 {
Chris Luke270b6de2016-05-19 14:23:25 -0400913 if (!cf->height || vec_len (cf->pager_index) < (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400914 cf->pager_start = 0;
Chris Luke270b6de2016-05-19 14:23:25 -0400915 else
Dave Barach9b8ffd92016-07-08 08:13:45 -0400916 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
Chris Luke862623d2016-05-14 10:13:34 -0400917 }
918}
919
920/** VLIB CLI output function.
921 *
922 * If the terminal has a pager configured then this function takes care
923 * of collating output into the pager buffer; ensuring only the first page
924 * is displayed and any lines in excess of the first page are buffered.
925 *
926 * If the maximum number of index lines in the buffer is exceeded then the
927 * pager is cancelled and the contents of the current buffer are sent to the
928 * terminal.
929 *
930 * If there is no pager configured then the output is sent directly to the
931 * terminal.
932 *
933 * @param cli_file_index Index of the CLI session where this output is
934 * directed.
935 * @param buffer String of printabe bytes to be output.
936 * @param buffer_bytes The number of bytes in @c buffer to be output.
937 */
Dave Barach9b8ffd92016-07-08 08:13:45 -0400938static void
939unix_vlib_cli_output (uword cli_file_index, u8 * buffer, uword buffer_bytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700940{
Dave Barach9b8ffd92016-07-08 08:13:45 -0400941 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +0200942 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -0400943 unix_cli_main_t *cm = &unix_cli_main;
944 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +0200945 clib_file_t *uf;
Chris Luke0aca5eb2016-04-25 13:48:54 -0400946
Ed Warnickecb9cada2015-12-08 15:45:58 -0700947 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +0200948 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700949
Chris Luke7afda3a2016-04-25 13:49:22 -0400950 if (cf->no_pager || um->cli_pager_buffer_limit == 0 || cf->height == 0)
951 {
Chris Luke862623d2016-05-14 10:13:34 -0400952 unix_vlib_cli_output_cooked (cf, uf, buffer, buffer_bytes);
Chris Luke7afda3a2016-04-25 13:49:22 -0400953 }
954 else
955 {
Chris Luke862623d2016-05-14 10:13:34 -0400956 word row = vec_len (cf->pager_index);
Dave Barach9b8ffd92016-07-08 08:13:45 -0400957 u8 *line;
958 unix_cli_pager_index_t *pi;
Chris Luke7afda3a2016-04-25 13:49:22 -0400959
Chris Luke862623d2016-05-14 10:13:34 -0400960 /* Index and add the output lines to the pager buffer. */
961 unix_cli_pager_add_line (cf, buffer, buffer_bytes);
962
963 /* Now iterate what was added to display the lines.
964 * If we reach the bottom of the page, display a prompt.
965 */
966 while (row < vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -0400967 {
968 if (row < cf->height - 1)
969 {
970 /* output this line */
971 pi = &cf->pager_index[row];
972 line = cf->pager_vector[pi->line] + pi->offset;
973 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
Chris Luke862623d2016-05-14 10:13:34 -0400974
Dave Barach9b8ffd92016-07-08 08:13:45 -0400975 /* if the last line didn't end in newline, and we're at the
976 * bottom of the page, add a newline */
977 if (line[pi->length - 1] != '\n' && row == cf->height - 2)
978 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
979 }
980 else
981 {
982 /* Display the pager prompt every 10 lines */
983 if (!(row % 10))
984 unix_cli_pager_prompt (cf, uf);
985 }
986 row++;
987 }
Chris Luke7afda3a2016-04-25 13:49:22 -0400988
Chris Luke862623d2016-05-14 10:13:34 -0400989 /* Check if we went over the pager buffer limit */
990 if (vec_len (cf->pager_index) > um->cli_pager_buffer_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -0400991 {
992 /* Stop using the pager for the remainder of this CLI command */
993 cf->no_pager = 2;
Chris Luke7afda3a2016-04-25 13:49:22 -0400994
Dave Barach9b8ffd92016-07-08 08:13:45 -0400995 /* If we likely printed the prompt, erase it */
996 if (vec_len (cf->pager_index) > cf->height - 1)
997 unix_cli_pager_prompt_erase (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -0400998
Dave Barach9b8ffd92016-07-08 08:13:45 -0400999 /* Dump out the contents of the buffer */
1000 for (row = cf->pager_start + (cf->height - 1);
1001 row < vec_len (cf->pager_index); row++)
1002 {
1003 pi = &cf->pager_index[row];
1004 line = cf->pager_vector[pi->line] + pi->offset;
1005 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1006 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001007
Dave Barach9b8ffd92016-07-08 08:13:45 -04001008 unix_cli_pager_reset (cf);
1009 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001010 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001011}
1012
Chris Luke862623d2016-05-14 10:13:34 -04001013/** Identify whether a terminal type is ANSI capable.
1014 *
Chris Luke54ccf222016-07-25 16:38:11 -04001015 * Compares the string given in @c term with a list of terminal types known
Chris Luke862623d2016-05-14 10:13:34 -04001016 * to support ANSI escape sequences.
1017 *
1018 * This list contains, for example, @c xterm, @c screen and @c ansi.
1019 *
1020 * @param term A string with a terminal type in it.
Chris Luke54ccf222016-07-25 16:38:11 -04001021 * @param len The length of the string in @c term.
Chris Luke862623d2016-05-14 10:13:34 -04001022 *
1023 * @return @c 1 if the terminal type is recognized as supporting ANSI
1024 * terminal sequences; @c 0 otherwise.
1025 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001026static u8
1027unix_cli_terminal_type (u8 * term, uword len)
Ed Warnickecb9cada2015-12-08 15:45:58 -07001028{
Chris Luke0aca5eb2016-04-25 13:48:54 -04001029 /* This may later be better done as a hash of some sort. */
1030#define _(a) do { \
1031 if (strncasecmp(a, (char *)term, (size_t)len) == 0) return 1; \
1032 } while(0)
1033
1034 _("xterm");
1035 _("xterm-color");
Dave Barach9b8ffd92016-07-08 08:13:45 -04001036 _("xterm-256color"); /* iTerm on Mac */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001037 _("screen");
Damjan Marion6e8ab162017-06-05 21:56:12 +02001038 _("screen-256color"); /* Screen and tmux */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001039 _("ansi"); /* Microsoft Telnet */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001040#undef _
1041
1042 return 0;
1043}
1044
Chris Luke8e5b0412016-07-26 13:06:10 -04001045/** @brief Emit initial welcome banner and prompt on a connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001046static void
1047unix_cli_file_welcome (unix_cli_main_t * cm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001048{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001049 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02001050 clib_file_main_t *fm = &file_main;
1051 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke572d8122016-04-25 13:49:07 -04001052 unix_cli_banner_t *banner;
1053 int i, len;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001054
Chris Luke0aca5eb2016-04-25 13:48:54 -04001055 /*
1056 * Put the first bytes directly into the buffer so that further output is
1057 * queued until everything is ready. (oterwise initial prompt can appear
1058 * mid way through VPP initialization)
1059 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001060 unix_cli_add_pending_output (uf, cf, (u8 *) "\r", 1);
Chris Luke572d8122016-04-25 13:49:07 -04001061
1062 if (!um->cli_no_banner)
1063 {
1064 if (cf->ansi_capable)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001065 {
1066 banner = unix_cli_banner_color;
1067 len = ARRAY_LEN (unix_cli_banner_color);
1068 }
Chris Luke572d8122016-04-25 13:49:07 -04001069 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001070 {
1071 banner = unix_cli_banner;
1072 len = ARRAY_LEN (unix_cli_banner);
1073 }
Chris Luke572d8122016-04-25 13:49:07 -04001074
1075 for (i = 0; i < len; i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001076 {
1077 unix_vlib_cli_output_cooked (cf, uf,
1078 banner[i].line, banner[i].length);
1079 }
1080 }
Chris Luke572d8122016-04-25 13:49:07 -04001081
1082 /* Prompt. */
Chris Luke7afda3a2016-04-25 13:49:22 -04001083 unix_cli_cli_prompt (cf, uf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001084
1085 cf->started = 1;
1086}
1087
Chris Luke8e5b0412016-07-26 13:06:10 -04001088/** @brief A failsafe triggered on a timer to ensure we send the prompt
Chris Luke0aca5eb2016-04-25 13:48:54 -04001089 * to telnet sessions that fail to negotiate the terminal type. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001090static void
1091unix_cli_file_welcome_timer (any arg, f64 delay)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001092{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001093 unix_cli_main_t *cm = &unix_cli_main;
1094 unix_cli_file_t *cf;
1095 (void) delay;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001096
1097 /* Check the connection didn't close already */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001098 if (pool_is_free_index (cm->cli_file_pool, (uword) arg))
Chris Luke0aca5eb2016-04-25 13:48:54 -04001099 return;
1100
Dave Barach9b8ffd92016-07-08 08:13:45 -04001101 cf = pool_elt_at_index (cm->cli_file_pool, (uword) arg);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001102
1103 if (!cf->started)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001104 unix_cli_file_welcome (cm, cf);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001105}
1106
Chris Luke8e5b0412016-07-26 13:06:10 -04001107/** @brief A mostly no-op Telnet state machine.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001108 * Process Telnet command bytes in a way that ensures we're mostly
1109 * transparent to the Telnet protocol. That is, it's mostly a no-op.
1110 *
1111 * @return -1 if we need more bytes, otherwise a positive integer number of
1112 * bytes to consume from the input_vector, not including the initial
1113 * IAC byte.
1114 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001115static i32
1116unix_cli_process_telnet (unix_main_t * um,
1117 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001118 clib_file_t * uf, u8 * input_vector, uword len)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001119{
1120 /* Input_vector starts at IAC byte.
1121 * See if we have a complete message; if not, return -1 so we wait for more.
1122 * if we have a complete message, consume those bytes from the vector.
1123 */
1124 i32 consume = 0;
1125
1126 if (len == 1)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001127 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001128
1129 switch (input_vector[1])
Ed Warnickecb9cada2015-12-08 15:45:58 -07001130 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04001131 case IAC:
1132 /* two IAC's in a row means to pass through 0xff.
1133 * since that makes no sense here, just consume it.
1134 */
1135 consume = 1;
1136 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001137
Dave Barach9b8ffd92016-07-08 08:13:45 -04001138 case WILL:
1139 case WONT:
1140 case DO:
1141 case DONT:
1142 /* Expect 3 bytes */
1143 if (vec_len (input_vector) < 3)
1144 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001145
Dave Barach9b8ffd92016-07-08 08:13:45 -04001146 consume = 2;
1147 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001148
Dave Barach9b8ffd92016-07-08 08:13:45 -04001149 case SB:
1150 {
1151 /* Sub option - search ahead for IAC SE to end it */
1152 i32 i;
1153 for (i = 3; i < len && i < UNIX_CLI_MAX_DEPTH_TELNET; i++)
1154 {
1155 if (input_vector[i - 1] == IAC && input_vector[i] == SE)
1156 {
1157 /* We have a complete message; see if we care about it */
1158 switch (input_vector[2])
1159 {
1160 case TELOPT_TTYPE:
1161 if (input_vector[3] != 0)
1162 break;
1163 /* See if the terminal type is ANSI capable */
1164 cf->ansi_capable =
1165 unix_cli_terminal_type (input_vector + 4, i - 5);
1166 /* If session not started, we can release the pause */
1167 if (!cf->started)
1168 /* Send the welcome banner and initial prompt */
1169 unix_cli_file_welcome (&unix_cli_main, cf);
1170 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001171
Dave Barach9b8ffd92016-07-08 08:13:45 -04001172 case TELOPT_NAWS:
1173 /* Window size */
1174 if (i != 8) /* check message is correct size */
1175 break;
Chris Lukeb2bcad62017-09-18 08:51:22 -04001176
Dave Barach9b8ffd92016-07-08 08:13:45 -04001177 cf->width =
1178 clib_net_to_host_u16 (*((u16 *) (input_vector + 3)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001179 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
1180 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
1181 if (cf->width < UNIX_CLI_MIN_TERMINAL_WIDTH)
1182 cf->width = UNIX_CLI_MIN_TERMINAL_WIDTH;
1183
Dave Barach9b8ffd92016-07-08 08:13:45 -04001184 cf->height =
1185 clib_net_to_host_u16 (*((u16 *) (input_vector + 5)));
Chris Lukeb2bcad62017-09-18 08:51:22 -04001186 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
1187 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
1188 if (cf->height < UNIX_CLI_MIN_TERMINAL_HEIGHT)
1189 cf->height = UNIX_CLI_MIN_TERMINAL_HEIGHT;
1190
Dave Barach9b8ffd92016-07-08 08:13:45 -04001191 /* reindex pager buffer */
1192 unix_cli_pager_reindex (cf);
1193 /* redraw page */
1194 unix_cli_pager_redraw (cf, uf);
1195 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04001196
Dave Barach9b8ffd92016-07-08 08:13:45 -04001197 default:
1198 break;
1199 }
1200 /* Consume it all */
1201 consume = i;
1202 break;
1203 }
1204 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001205
Dave Barach9b8ffd92016-07-08 08:13:45 -04001206 if (i == UNIX_CLI_MAX_DEPTH_TELNET)
1207 consume = 1; /* hit max search depth, advance one byte */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001208
Dave Barach9b8ffd92016-07-08 08:13:45 -04001209 if (consume == 0)
1210 return -1; /* want more bytes */
Chris Luke0aca5eb2016-04-25 13:48:54 -04001211
Dave Barach9b8ffd92016-07-08 08:13:45 -04001212 break;
1213 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001214
Dave Barach9b8ffd92016-07-08 08:13:45 -04001215 case GA:
1216 case EL:
1217 case EC:
1218 case AO:
1219 case IP:
1220 case BREAK:
1221 case DM:
1222 case NOP:
1223 case SE:
1224 case EOR:
1225 case ABORT:
1226 case SUSP:
1227 case xEOF:
1228 /* Simple one-byte messages */
1229 consume = 1;
1230 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001231
Dave Barach9b8ffd92016-07-08 08:13:45 -04001232 case AYT:
1233 /* Are You There - trigger a visible response */
1234 consume = 1;
1235 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "fd.io VPP\n", 10);
1236 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001237
Dave Barach9b8ffd92016-07-08 08:13:45 -04001238 default:
1239 /* Unknown command! Eat the IAC byte */
1240 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001241 }
1242
Dave Barach9b8ffd92016-07-08 08:13:45 -04001243 return consume;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001244}
1245
Chris Luke8e5b0412016-07-26 13:06:10 -04001246/** @brief Process actionable input.
Chris Luke0aca5eb2016-04-25 13:48:54 -04001247 * Based on the \c action process the input; this typically involves
1248 * searching the command history or editing the current command line.
1249 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001250static int
1251unix_cli_line_process_one (unix_cli_main_t * cm,
1252 unix_main_t * um,
1253 unix_cli_file_t * cf,
Damjan Marion56dd5432017-09-08 19:52:02 +02001254 clib_file_t * uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001255 u8 input, unix_cli_parse_action_t action)
Chris Luke0aca5eb2016-04-25 13:48:54 -04001256{
Dave Barach9b8ffd92016-07-08 08:13:45 -04001257 u8 *prev;
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001258 u8 *save = 0;
1259 u8 **possible_commands;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001260 int j, delta;
1261
1262 switch (action)
1263 {
1264 case UNIX_CLI_PARSE_ACTION_NOACTION:
1265 break;
1266
Chris Luke0aca5eb2016-04-25 13:48:54 -04001267 case UNIX_CLI_PARSE_ACTION_REVSEARCH:
1268 case UNIX_CLI_PARSE_ACTION_FWDSEARCH:
Chris Luke7afda3a2016-04-25 13:49:22 -04001269 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001270 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001271 if (cf->search_mode == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001272 {
1273 /* Erase the current command (if any) */
1274 for (j = 0; j < (vec_len (cf->current_command)); j++)
1275 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b \b", 3);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001276
Dave Barach9b8ffd92016-07-08 08:13:45 -04001277 vec_reset_length (cf->search_key);
1278 vec_reset_length (cf->current_command);
1279 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1280 cf->search_mode = -1;
1281 else
1282 cf->search_mode = 1;
1283 cf->cursor = 0;
1284 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001285 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001286 {
1287 if (action == UNIX_CLI_PARSE_ACTION_REVSEARCH)
1288 cf->search_mode = -1;
1289 else
1290 cf->search_mode = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001291
Dave Barach9b8ffd92016-07-08 08:13:45 -04001292 cf->excursion += cf->search_mode;
1293 goto search_again;
1294 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001295 break;
1296
1297 case UNIX_CLI_PARSE_ACTION_ERASELINELEFT:
1298 /* Erase the command from the cursor to the start */
1299
1300 /* Shimmy forwards to the new end of line position */
1301 delta = vec_len (cf->current_command) - cf->cursor;
1302 for (j = cf->cursor; j > delta; j--)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001303 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001304 /* Zap from here to the end of what is currently displayed */
1305 for (; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001306 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001307 /* Get back to the start of the line */
1308 for (j = 0; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001309 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001310
Dave Barach9b8ffd92016-07-08 08:13:45 -04001311 j = vec_len (cf->current_command) - cf->cursor;
1312 memmove (cf->current_command, cf->current_command + cf->cursor, j);
1313 _vec_len (cf->current_command) = j;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001314
1315 /* Print the new contents */
1316 unix_vlib_cli_output_cooked (cf, uf, cf->current_command, j);
1317 /* Shimmy back to the start */
1318 for (j = 0; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001319 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001320 cf->cursor = 0;
1321
1322 cf->search_mode = 0;
1323 break;
1324
1325 case UNIX_CLI_PARSE_ACTION_ERASELINERIGHT:
1326 /* Erase the command from the cursor to the end */
1327
1328 /* Zap from cursor to end of what is currently displayed */
1329 for (j = cf->cursor; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001330 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001331 /* Get back to where we were */
1332 for (j = cf->cursor; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001333 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001334
1335 /* Truncate the line at the cursor */
Dave Barach9b8ffd92016-07-08 08:13:45 -04001336 _vec_len (cf->current_command) = cf->cursor;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001337
1338 cf->search_mode = 0;
1339 break;
1340
1341 case UNIX_CLI_PARSE_ACTION_LEFT:
1342 if (cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001343 {
1344 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1345 cf->cursor--;
1346 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001347
1348 cf->search_mode = 0;
1349 break;
1350
1351 case UNIX_CLI_PARSE_ACTION_RIGHT:
Dave Barach9b8ffd92016-07-08 08:13:45 -04001352 if (cf->cursor < vec_len (cf->current_command))
1353 {
1354 /* have to emit the character under the cursor */
1355 unix_vlib_cli_output_cooked (cf, uf,
1356 cf->current_command + cf->cursor, 1);
1357 cf->cursor++;
1358 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001359
1360 cf->search_mode = 0;
1361 break;
1362
1363 case UNIX_CLI_PARSE_ACTION_UP:
1364 case UNIX_CLI_PARSE_ACTION_DOWN:
Chris Luke7afda3a2016-04-25 13:49:22 -04001365 if (!cf->has_history || !cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001366 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001367 cf->search_mode = 0;
1368 /* Erase the command */
1369 for (j = cf->cursor; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001370 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " ", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001371 for (j = 0; j < (vec_len (cf->current_command)); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001372 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b \b", 3);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001373 vec_reset_length (cf->current_command);
1374 if (vec_len (cf->command_history))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001375 {
1376 if (action == UNIX_CLI_PARSE_ACTION_UP)
1377 delta = -1;
1378 else
1379 delta = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001380
Dave Barach9b8ffd92016-07-08 08:13:45 -04001381 cf->excursion += delta;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001382
Dave Barach9b8ffd92016-07-08 08:13:45 -04001383 if (cf->excursion == vec_len (cf->command_history))
1384 {
1385 /* down-arrowed to last entry - want a blank line */
1386 _vec_len (cf->current_command) = 0;
1387 }
1388 else if (cf->excursion < 0)
1389 {
1390 /* up-arrowed over the start to the end, want a blank line */
1391 cf->excursion = vec_len (cf->command_history);
1392 _vec_len (cf->current_command) = 0;
1393 }
1394 else
1395 {
1396 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
1397 /* down-arrowed past end - wrap to start */
1398 cf->excursion = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001399
Dave Barach9b8ffd92016-07-08 08:13:45 -04001400 /* Print the command at the current position */
1401 prev = cf->command_history[cf->excursion];
1402 vec_validate (cf->current_command, vec_len (prev) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001403
Dave Barach9b8ffd92016-07-08 08:13:45 -04001404 clib_memcpy (cf->current_command, prev, vec_len (prev));
1405 _vec_len (cf->current_command) = vec_len (prev);
1406 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
1407 vec_len (cf->current_command));
1408 }
1409 cf->cursor = vec_len (cf->current_command);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001410
Dave Barach9b8ffd92016-07-08 08:13:45 -04001411 break;
1412 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001413 break;
1414
1415 case UNIX_CLI_PARSE_ACTION_HOME:
1416 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001417 {
1418 while (cf->cursor)
1419 {
1420 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1421 cf->cursor--;
1422 }
1423 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07001424
Chris Luke0aca5eb2016-04-25 13:48:54 -04001425 cf->search_mode = 0;
1426 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001427
Chris Luke0aca5eb2016-04-25 13:48:54 -04001428 case UNIX_CLI_PARSE_ACTION_END:
1429 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001430 cf->cursor < vec_len (cf->current_command))
1431 {
1432 unix_vlib_cli_output_cooked (cf, uf,
1433 cf->current_command + cf->cursor,
1434 vec_len (cf->current_command) -
1435 cf->cursor);
1436 cf->cursor = vec_len (cf->current_command);
1437 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001438
1439 cf->search_mode = 0;
1440 break;
1441
1442 case UNIX_CLI_PARSE_ACTION_WORDLEFT:
1443 if (vec_len (cf->current_command) && cf->cursor > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001444 {
1445 j = cf->cursor;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001446
Dave Barach9b8ffd92016-07-08 08:13:45 -04001447 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1448 j--;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001449
Dave Barach9b8ffd92016-07-08 08:13:45 -04001450 while (j && isspace (cf->current_command[j]))
1451 {
1452 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1453 j--;
1454 }
1455 while (j && !isspace (cf->current_command[j]))
1456 {
1457 if (isspace (cf->current_command[j - 1]))
1458 break;
1459 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1460 j--;
1461 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001462
Dave Barach9b8ffd92016-07-08 08:13:45 -04001463 cf->cursor = j;
1464 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001465
1466 cf->search_mode = 0;
1467 break;
1468
1469 case UNIX_CLI_PARSE_ACTION_WORDRIGHT:
1470 if (vec_len (cf->current_command) &&
Dave Barach9b8ffd92016-07-08 08:13:45 -04001471 cf->cursor < vec_len (cf->current_command))
1472 {
1473 int e = vec_len (cf->current_command);
1474 j = cf->cursor;
1475 while (j < e && !isspace (cf->current_command[j]))
1476 j++;
1477 while (j < e && isspace (cf->current_command[j]))
1478 j++;
1479 unix_vlib_cli_output_cooked (cf, uf,
1480 cf->current_command + cf->cursor,
1481 j - cf->cursor);
1482 cf->cursor = j;
1483 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001484
1485 cf->search_mode = 0;
1486 break;
1487
1488
1489 case UNIX_CLI_PARSE_ACTION_ERASE:
1490 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001491 {
1492 if (cf->cursor == vec_len (cf->current_command))
1493 {
1494 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b \b", 3);
1495 _vec_len (cf->current_command)--;
1496 cf->cursor--;
1497 }
1498 else if (cf->cursor > 0)
1499 {
1500 /* shift everything at & to the right of the cursor left by 1 */
1501 j = vec_len (cf->current_command) - cf->cursor;
1502 memmove (cf->current_command + cf->cursor - 1,
1503 cf->current_command + cf->cursor, j);
1504 _vec_len (cf->current_command)--;
1505 cf->cursor--;
1506 /* redraw the rest of the line */
1507 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1508 unix_vlib_cli_output_cooked (cf, uf,
1509 cf->current_command + cf->cursor,
1510 j);
1511 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " \b\b", 3);
1512 /* and shift the terminal cursor back where it should be */
1513 while (--j)
1514 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1515 }
1516 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001517 cf->search_mode = 0;
1518 cf->excursion = 0;
1519 vec_reset_length (cf->search_key);
1520 break;
1521
1522 case UNIX_CLI_PARSE_ACTION_ERASERIGHT:
1523 if (vec_len (cf->current_command))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001524 {
1525 if (cf->cursor < vec_len (cf->current_command))
1526 {
1527 /* shift everything to the right of the cursor left by 1 */
1528 j = vec_len (cf->current_command) - cf->cursor - 1;
1529 memmove (cf->current_command + cf->cursor,
1530 cf->current_command + cf->cursor + 1, j);
1531 _vec_len (cf->current_command)--;
1532 /* redraw the rest of the line */
1533 unix_vlib_cli_output_cooked (cf, uf,
1534 cf->current_command + cf->cursor,
1535 j);
1536 unix_vlib_cli_output_cooked (cf, uf, (u8 *) " \b", 2);
1537 /* and shift the terminal cursor back where it should be */
1538 if (j)
1539 {
1540 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1541 while (--j)
1542 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
1543 }
1544 }
1545 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001546 else if (input == 'D' - '@')
Dave Barach9b8ffd92016-07-08 08:13:45 -04001547 {
1548 /* ^D with no command entered = quit */
1549 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "quit\n", 5);
1550 vlib_process_signal_event (um->vlib_main,
1551 vlib_current_process (um->vlib_main),
1552 UNIX_CLI_PROCESS_EVENT_QUIT,
1553 cf - cm->cli_file_pool);
1554 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04001555 cf->search_mode = 0;
1556 cf->excursion = 0;
1557 vec_reset_length (cf->search_key);
1558 break;
1559
1560 case UNIX_CLI_PARSE_ACTION_CLEAR:
1561 /* If we're in ANSI mode, clear the screen.
1562 * Then redraw the prompt and any existing command input, then put
1563 * the cursor back where it was in that line.
1564 */
1565 if (cf->ansi_capable)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001566 unix_vlib_cli_output_cooked (cf, uf,
1567 (u8 *) ANSI_CLEAR,
1568 sizeof (ANSI_CLEAR) - 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001569 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001570 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001571
1572 unix_vlib_cli_output_raw (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001573 cm->cli_prompt, vec_len (cm->cli_prompt));
Chris Luke0aca5eb2016-04-25 13:48:54 -04001574 unix_vlib_cli_output_raw (cf, uf,
Dave Barach9b8ffd92016-07-08 08:13:45 -04001575 cf->current_command,
1576 vec_len (cf->current_command));
1577 for (j = cf->cursor; j < vec_len (cf->current_command); j++)
1578 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b", 1);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001579
1580 break;
1581
Chris Luke7afda3a2016-04-25 13:49:22 -04001582 case UNIX_CLI_PARSE_ACTION_TAB:
Yoann Desmouceaux3060e072017-05-18 11:00:48 +02001583 if (cf->cursor < vec_len (cf->current_command))
1584 {
1585 /* if we are in the middle of a line, complete only if
1586 * the cursor points to whitespace */
1587 if (isspace (cf->current_command[cf->cursor]))
1588 {
1589 /* save and clear any input that is after the cursor */
1590 vec_resize (save, vec_len (cf->current_command) - cf->cursor);
1591 clib_memcpy (save, cf->current_command + cf->cursor,
1592 vec_len (cf->current_command) - cf->cursor);
1593 _vec_len (cf->current_command) = cf->cursor;
1594 }
1595 else
1596 {
1597 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
1598 break;
1599 }
1600 }
1601 possible_commands =
1602 vlib_cli_get_possible_completions (cf->current_command);
1603 if (vec_len (possible_commands) == 1)
1604 {
1605 u32 j = cf->cursor;
1606 u8 *completed = possible_commands[0];
1607
1608 /* find the last word of current_command */
1609 while (j >= 1 && !isspace (cf->current_command[j - 1]))
1610 {
1611 j--;
1612 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\b", 1);
1613 }
1614 _vec_len (cf->current_command) = j;
1615
1616 /* replace it with the newly expanded command */
1617 vec_append (cf->current_command, completed);
1618
1619 /* echo to the terminal */
1620 unix_vlib_cli_output_raw (cf, uf, completed, vec_len (completed));
1621
1622 /* add one trailing space if needed */
1623 if (vec_len (save) == 0)
1624 {
1625 vec_add1 (cf->current_command, ' ');
1626 unix_vlib_cli_output_raw (cf, uf, (u8 *) " ", 1);
1627 }
1628
1629 cf->cursor = vec_len (cf->current_command);
1630
1631 }
1632 else if (vec_len (possible_commands) >= 2)
1633 {
1634 u8 **possible_command;
1635 uword max_command_len = 0, min_command_len = ~0;
1636 u32 i, j;
1637
1638 vec_foreach (possible_command, possible_commands)
1639 {
1640 if (vec_len (*possible_command) > max_command_len)
1641 {
1642 max_command_len = vec_len (*possible_command);
1643 }
1644 if (vec_len (*possible_command) < min_command_len)
1645 {
1646 min_command_len = vec_len (*possible_command);
1647 }
1648 }
1649
1650 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1651
1652 i = 0;
1653 vec_foreach (possible_command, possible_commands)
1654 {
1655 if (i + max_command_len >= cf->width)
1656 {
1657 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1658 i = 0;
1659 }
1660 unix_vlib_cli_output_raw (cf, uf, *possible_command,
1661 vec_len (*possible_command));
1662 for (j = vec_len (*possible_command); j < max_command_len + 2;
1663 j++)
1664 {
1665 unix_vlib_cli_output_raw (cf, uf, (u8 *) " ", 1);
1666 }
1667 i += max_command_len + 2;
1668 }
1669
1670 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1671
1672 /* rewrite prompt */
1673 unix_cli_cli_prompt (cf, uf);
1674 unix_vlib_cli_output_raw (cf, uf, cf->current_command,
1675 vec_len (cf->current_command));
1676
1677 /* count length of last word */
1678 j = cf->cursor;
1679 i = 0;
1680 while (j >= 1 && !isspace (cf->current_command[j - 1]))
1681 {
1682 j--;
1683 i++;
1684 }
1685
1686 /* determine smallest common command */
1687 for (; i < min_command_len; i++)
1688 {
1689 u8 common = '\0';
1690 int stop = 0;
1691 vec_foreach (possible_command, possible_commands)
1692 {
1693 if (common == '\0')
1694 {
1695 common = (*possible_command)[i];
1696 }
1697 else if (common != (*possible_command)[i])
1698 {
1699 stop = 1;
1700 break;
1701 }
1702 }
1703 if (!stop)
1704 {
1705 vec_add1 (cf->current_command, common);
1706 cf->cursor++;
1707 unix_vlib_cli_output_raw (cf, uf, (u8 *) & common, 1);
1708 }
1709 else
1710 {
1711 break;
1712 }
1713 }
1714 }
1715 else
1716 {
1717 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\a", 1);
1718 }
1719
1720 if (vec_len (save) > 0)
1721 {
1722 /* restore remaining input if tab was hit in the middle of a line */
1723 unix_vlib_cli_output_raw (cf, uf, save, vec_len (save));
1724 for (j = 0; j < vec_len (save); j++)
1725 {
1726 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\b", 1);
1727 }
1728 vec_append (cf->current_command, save);
1729 vec_free (save);
1730 }
1731 vec_free (possible_commands);
1732
1733 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04001734 case UNIX_CLI_PARSE_ACTION_YANK:
1735 /* TODO */
1736 break;
1737
1738
1739 case UNIX_CLI_PARSE_ACTION_PAGER_QUIT:
1740 pager_quit:
1741 unix_cli_pager_prompt_erase (cf, uf);
1742 unix_cli_pager_reset (cf);
1743 unix_cli_cli_prompt (cf, uf);
1744 break;
1745
1746 case UNIX_CLI_PARSE_ACTION_PAGER_NEXT:
1747 case UNIX_CLI_PARSE_ACTION_PAGER_PGDN:
1748 /* show next page of the buffer */
Chris Luke862623d2016-05-14 10:13:34 -04001749 if (cf->height + cf->pager_start < vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001750 {
1751 u8 *line = NULL;
1752 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04001753
Dave Barach9b8ffd92016-07-08 08:13:45 -04001754 int m = cf->pager_start + (cf->height - 1);
1755 unix_cli_pager_prompt_erase (cf, uf);
1756 for (j = m;
1757 j < vec_len (cf->pager_index) && cf->pager_start < m;
1758 j++, cf->pager_start++)
1759 {
1760 pi = &cf->pager_index[j];
1761 line = cf->pager_vector[pi->line] + pi->offset;
1762 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1763 }
1764 /* if the last line didn't end in newline, add a newline */
1765 if (pi && line[pi->length - 1] != '\n')
1766 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1767 unix_cli_pager_prompt (cf, uf);
1768 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001769 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001770 {
1771 if (action == UNIX_CLI_PARSE_ACTION_PAGER_NEXT)
1772 /* no more in buffer, exit, but only if it was <space> */
1773 goto pager_quit;
1774 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001775 break;
1776
1777 case UNIX_CLI_PARSE_ACTION_PAGER_DN:
1778 case UNIX_CLI_PARSE_ACTION_PAGER_CRLF:
1779 /* display the next line of the buffer */
Chris Luke862623d2016-05-14 10:13:34 -04001780 if (cf->pager_start < vec_len (cf->pager_index) - (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001781 {
1782 u8 *line;
1783 unix_cli_pager_index_t *pi;
Chris Luke862623d2016-05-14 10:13:34 -04001784
Dave Barach9b8ffd92016-07-08 08:13:45 -04001785 unix_cli_pager_prompt_erase (cf, uf);
1786 pi = &cf->pager_index[cf->pager_start + (cf->height - 1)];
1787 line = cf->pager_vector[pi->line] + pi->offset;
1788 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1789 cf->pager_start++;
1790 /* if the last line didn't end in newline, add a newline */
1791 if (line[pi->length - 1] != '\n')
1792 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1793 unix_cli_pager_prompt (cf, uf);
1794 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001795 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04001796 {
1797 if (action == UNIX_CLI_PARSE_ACTION_PAGER_CRLF)
1798 /* no more in buffer, exit, but only if it was <enter> */
1799 goto pager_quit;
1800 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001801
1802 break;
1803
1804 case UNIX_CLI_PARSE_ACTION_PAGER_UP:
1805 /* scroll the page back one line */
1806 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001807 {
1808 u8 *line = NULL;
1809 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04001810
Dave Barach9b8ffd92016-07-08 08:13:45 -04001811 cf->pager_start--;
1812 if (cf->ansi_capable)
1813 {
1814 pi = &cf->pager_index[cf->pager_start];
1815 line = cf->pager_vector[pi->line] + pi->offset;
1816 unix_cli_pager_prompt_erase (cf, uf);
1817 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SCROLLDN,
1818 sizeof (ANSI_SCROLLDN) - 1);
1819 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_SAVECURSOR,
1820 sizeof (ANSI_SAVECURSOR) - 1);
1821 unix_cli_ansi_cursor (cf, uf, 1, 1);
1822 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_CLEARLINE,
1823 sizeof (ANSI_CLEARLINE) - 1);
1824 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1825 unix_vlib_cli_output_cooked (cf, uf, (u8 *) ANSI_RESTCURSOR,
1826 sizeof (ANSI_RESTCURSOR) - 1);
1827 unix_cli_pager_prompt_erase (cf, uf);
1828 unix_cli_pager_prompt (cf, uf);
1829 }
1830 else
1831 {
1832 int m = cf->pager_start + (cf->height - 1);
1833 unix_cli_pager_prompt_erase (cf, uf);
1834 for (j = cf->pager_start;
1835 j < vec_len (cf->pager_index) && j < m; j++)
1836 {
1837 pi = &cf->pager_index[j];
1838 line = cf->pager_vector[pi->line] + pi->offset;
1839 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1840 }
1841 /* if the last line didn't end in newline, add a newline */
1842 if (pi && line[pi->length - 1] != '\n')
1843 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1844 unix_cli_pager_prompt (cf, uf);
1845 }
1846 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001847 break;
1848
1849 case UNIX_CLI_PARSE_ACTION_PAGER_TOP:
1850 /* back to the first page of the buffer */
1851 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001852 {
1853 u8 *line = NULL;
1854 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04001855
Dave Barach9b8ffd92016-07-08 08:13:45 -04001856 cf->pager_start = 0;
1857 int m = cf->pager_start + (cf->height - 1);
1858 unix_cli_pager_prompt_erase (cf, uf);
1859 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
1860 j++)
1861 {
1862 pi = &cf->pager_index[j];
1863 line = cf->pager_vector[pi->line] + pi->offset;
1864 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1865 }
1866 /* if the last line didn't end in newline, add a newline */
1867 if (pi && line[pi->length - 1] != '\n')
1868 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1869 unix_cli_pager_prompt (cf, uf);
1870 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001871 break;
1872
1873 case UNIX_CLI_PARSE_ACTION_PAGER_BOTTOM:
1874 /* skip to the last page of the buffer */
Chris Luke862623d2016-05-14 10:13:34 -04001875 if (cf->pager_start < vec_len (cf->pager_index) - (cf->height - 1))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001876 {
1877 u8 *line = NULL;
1878 unix_cli_pager_index_t *pi = NULL;
Chris Luke862623d2016-05-14 10:13:34 -04001879
Dave Barach9b8ffd92016-07-08 08:13:45 -04001880 cf->pager_start = vec_len (cf->pager_index) - (cf->height - 1);
1881 unix_cli_pager_prompt_erase (cf, uf);
1882 unix_cli_pager_message (cf, uf, "skipping", "\n");
1883 for (j = cf->pager_start; j < vec_len (cf->pager_index); j++)
1884 {
1885 pi = &cf->pager_index[j];
1886 line = cf->pager_vector[pi->line] + pi->offset;
1887 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1888 }
1889 /* if the last line didn't end in newline, add a newline */
1890 if (pi && line[pi->length - 1] != '\n')
1891 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1892 unix_cli_pager_prompt (cf, uf);
1893 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001894 break;
1895
1896 case UNIX_CLI_PARSE_ACTION_PAGER_PGUP:
1897 /* wander back one page in the buffer */
1898 if (cf->pager_start > 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001899 {
1900 u8 *line = NULL;
1901 unix_cli_pager_index_t *pi = NULL;
1902 int m;
Chris Luke862623d2016-05-14 10:13:34 -04001903
Dave Barach9b8ffd92016-07-08 08:13:45 -04001904 if (cf->pager_start >= cf->height)
1905 cf->pager_start -= cf->height - 1;
1906 else
1907 cf->pager_start = 0;
1908 m = cf->pager_start + cf->height - 1;
1909 unix_cli_pager_prompt_erase (cf, uf);
1910 for (j = cf->pager_start; j < vec_len (cf->pager_index) && j < m;
1911 j++)
1912 {
1913 pi = &cf->pager_index[j];
1914 line = cf->pager_vector[pi->line] + pi->offset;
1915 unix_vlib_cli_output_cooked (cf, uf, line, pi->length);
1916 }
1917 /* if the last line didn't end in newline, add a newline */
1918 if (pi && line[pi->length - 1] != '\n')
1919 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1920 unix_cli_pager_prompt (cf, uf);
1921 }
Chris Luke7afda3a2016-04-25 13:49:22 -04001922 break;
1923
Chris Luke862623d2016-05-14 10:13:34 -04001924 case UNIX_CLI_PARSE_ACTION_PAGER_REDRAW:
1925 /* Redraw the current pager screen */
1926 unix_cli_pager_redraw (cf, uf);
1927 break;
1928
Chris Luke7afda3a2016-04-25 13:49:22 -04001929 case UNIX_CLI_PARSE_ACTION_PAGER_SEARCH:
1930 /* search forwards in the buffer */
1931 break;
1932
1933
Chris Luke0aca5eb2016-04-25 13:48:54 -04001934 case UNIX_CLI_PARSE_ACTION_CRLF:
1935 crlf:
Chris Luke0aca5eb2016-04-25 13:48:54 -04001936 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\n", 1);
1937
Chris Luke7afda3a2016-04-25 13:49:22 -04001938 if (cf->has_history && cf->history_limit)
Dave Barach9b8ffd92016-07-08 08:13:45 -04001939 {
1940 if (cf->command_history
1941 && vec_len (cf->command_history) >= cf->history_limit)
1942 {
1943 vec_free (cf->command_history[0]);
1944 vec_delete (cf->command_history, 1, 0);
1945 }
1946 /* Don't add blank lines to the cmd history */
1947 if (vec_len (cf->current_command))
1948 {
1949 /* Don't duplicate the previous command */
1950 j = vec_len (cf->command_history);
1951 if (j == 0 ||
1952 (vec_len (cf->current_command) !=
1953 vec_len (cf->command_history[j - 1])
1954 || memcmp (cf->current_command, cf->command_history[j - 1],
1955 vec_len (cf->current_command)) != 0))
1956 {
1957 /* copy the command to the history */
1958 u8 *c = 0;
1959 vec_append (c, cf->current_command);
1960 vec_add1 (cf->command_history, c);
1961 cf->command_number++;
1962 }
1963 }
1964 cf->excursion = vec_len (cf->command_history);
1965 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04001966
Chris Luke0aca5eb2016-04-25 13:48:54 -04001967 cf->search_mode = 0;
1968 vec_reset_length (cf->search_key);
1969 cf->cursor = 0;
1970
1971 return 0;
1972
Chris Luke7afda3a2016-04-25 13:49:22 -04001973 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
1974 case UNIX_CLI_PARSE_ACTION_NOMATCH:
Chris Luke862623d2016-05-14 10:13:34 -04001975 if (vec_len (cf->pager_index))
Dave Barach9b8ffd92016-07-08 08:13:45 -04001976 {
1977 /* no-op for now */
1978 }
1979 else if (cf->has_history && cf->search_mode && isprint (input))
1980 {
1981 int k, limit, offset;
1982 u8 *item;
Chris Luke0aca5eb2016-04-25 13:48:54 -04001983
Dave Barach9b8ffd92016-07-08 08:13:45 -04001984 vec_add1 (cf->search_key, input);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001985
Dave Barach9b8ffd92016-07-08 08:13:45 -04001986 search_again:
1987 for (j = 0; j < vec_len (cf->command_history); j++)
1988 {
1989 if (cf->excursion > (i32) vec_len (cf->command_history) - 1)
1990 cf->excursion = 0;
1991 else if (cf->excursion < 0)
1992 cf->excursion = vec_len (cf->command_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07001993
Dave Barach9b8ffd92016-07-08 08:13:45 -04001994 item = cf->command_history[cf->excursion];
Ed Warnickecb9cada2015-12-08 15:45:58 -07001995
Dave Barach9b8ffd92016-07-08 08:13:45 -04001996 limit = (vec_len (cf->search_key) > vec_len (item)) ?
1997 vec_len (item) : vec_len (cf->search_key);
Chris Luke0aca5eb2016-04-25 13:48:54 -04001998
Dave Barach9b8ffd92016-07-08 08:13:45 -04001999 for (offset = 0; offset <= vec_len (item) - limit; offset++)
2000 {
2001 for (k = 0; k < limit; k++)
2002 {
2003 if (item[k + offset] != cf->search_key[k])
2004 goto next_offset;
2005 }
2006 goto found_at_offset;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002007
Dave Barach9b8ffd92016-07-08 08:13:45 -04002008 next_offset:
2009 ;
2010 }
2011 goto next;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002012
Dave Barach9b8ffd92016-07-08 08:13:45 -04002013 found_at_offset:
2014 for (j = 0; j < vec_len (cf->current_command); j++)
2015 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\b \b", 3);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002016
Dave Barach9b8ffd92016-07-08 08:13:45 -04002017 vec_validate (cf->current_command, vec_len (item) - 1);
2018 clib_memcpy (cf->current_command, item, vec_len (item));
2019 _vec_len (cf->current_command) = vec_len (item);
Chris Luke93dcd1d2016-05-10 10:45:10 -04002020
Dave Barach9b8ffd92016-07-08 08:13:45 -04002021 unix_vlib_cli_output_cooked (cf, uf, cf->current_command,
2022 vec_len (cf->current_command));
2023 cf->cursor = vec_len (cf->current_command);
2024 goto found;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002025
Dave Barach9b8ffd92016-07-08 08:13:45 -04002026 next:
2027 cf->excursion += cf->search_mode;
2028 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002029
Dave Barach9b8ffd92016-07-08 08:13:45 -04002030 unix_vlib_cli_output_cooked (cf, uf, (u8 *) "\nNo match...", 12);
2031 vec_reset_length (cf->search_key);
2032 vec_reset_length (cf->current_command);
2033 cf->search_mode = 0;
2034 cf->cursor = 0;
2035 goto crlf;
2036 }
2037 else if (isprint (input)) /* skip any errant control codes */
2038 {
2039 if (cf->cursor == vec_len (cf->current_command))
2040 {
2041 /* Append to end */
2042 vec_add1 (cf->current_command, input);
2043 cf->cursor++;
Chris Luke7afda3a2016-04-25 13:49:22 -04002044
Dave Barach9b8ffd92016-07-08 08:13:45 -04002045 /* Echo the character back to the client */
2046 unix_vlib_cli_output_raw (cf, uf, &input, 1);
2047 }
2048 else
2049 {
2050 /* Insert at cursor: resize +1 byte, move everything over */
2051 j = vec_len (cf->current_command) - cf->cursor;
2052 vec_add1 (cf->current_command, (u8) 'A');
2053 memmove (cf->current_command + cf->cursor + 1,
2054 cf->current_command + cf->cursor, j);
2055 cf->current_command[cf->cursor] = input;
2056 /* Redraw the line */
2057 j++;
2058 unix_vlib_cli_output_raw (cf, uf,
2059 cf->current_command + cf->cursor, j);
2060 /* Put terminal cursor back */
2061 while (--j)
2062 unix_vlib_cli_output_raw (cf, uf, (u8 *) "\b", 1);
2063 cf->cursor++;
2064 }
2065 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002066 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002067 {
2068 /* no-op - not printable or otherwise not actionable */
2069 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002070
2071 found:
2072
2073 break;
Chris Luke7afda3a2016-04-25 13:49:22 -04002074
2075 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2076 break;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002077 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04002078 return 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002079}
2080
Chris Luke8e5b0412016-07-26 13:06:10 -04002081/** @brief Process input bytes on a stream to provide line editing and
Chris Luke0aca5eb2016-04-25 13:48:54 -04002082 * command history in the CLI. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002083static int
Damjan Marion56dd5432017-09-08 19:52:02 +02002084unix_cli_line_edit (unix_cli_main_t * cm, unix_main_t * um,
2085 clib_file_main_t * fm, unix_cli_file_t * cf)
Chris Luke0aca5eb2016-04-25 13:48:54 -04002086{
Damjan Marion56dd5432017-09-08 19:52:02 +02002087 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002088 int i;
2089
2090 for (i = 0; i < vec_len (cf->input_vector); i++)
2091 {
2092 unix_cli_parse_action_t action;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002093 i32 matched = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04002094 unix_cli_parse_actions_t *a;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002095
Chris Luke7afda3a2016-04-25 13:49:22 -04002096 /* If we're in the pager mode, search the pager actions */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002097 a =
2098 vec_len (cf->pager_index) ? unix_cli_parse_pager :
2099 unix_cli_parse_strings;
Chris Luke7afda3a2016-04-25 13:49:22 -04002100
Chris Luke93dcd1d2016-05-10 10:45:10 -04002101 /* See if the input buffer is some sort of control code */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002102 action = unix_cli_match_action (a, &cf->input_vector[i],
2103 vec_len (cf->input_vector) - i,
2104 &matched);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002105
2106 switch (action)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002107 {
2108 case UNIX_CLI_PARSE_ACTION_PARTIALMATCH:
2109 if (i)
2110 {
2111 /* There was a partial match which means we need more bytes
2112 * than the input buffer currently has.
2113 * Since the bytes before here have been processed, shift
2114 * the remaining contents to the start of the input buffer.
2115 */
2116 vec_delete (cf->input_vector, i, 0);
2117 }
2118 return 1; /* wait for more */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002119
Dave Barach9b8ffd92016-07-08 08:13:45 -04002120 case UNIX_CLI_PARSE_ACTION_TELNETIAC:
2121 /* process telnet options */
2122 matched = unix_cli_process_telnet (um, cf, uf,
2123 cf->input_vector + i,
2124 vec_len (cf->input_vector) - i);
2125 if (matched < 0)
2126 {
2127 if (i)
2128 {
2129 /* There was a partial match which means we need more bytes
2130 * than the input buffer currently has.
2131 * Since the bytes before here have been processed, shift
2132 * the remaining contents to the start of the input buffer.
2133 */
2134 vec_delete (cf->input_vector, i, 0);
2135 }
2136 return 1; /* wait for more */
2137 }
2138 break;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002139
Dave Barach9b8ffd92016-07-08 08:13:45 -04002140 default:
2141 /* process the action */
2142 if (!unix_cli_line_process_one (cm, um, cf, uf,
2143 cf->input_vector[i], action))
2144 {
2145 /* CRLF found. Consume the bytes from the input_vector */
2146 vec_delete (cf->input_vector, i + matched, 0);
2147 /* And tell our caller to execute cf->input_command */
2148 return 0;
2149 }
2150 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002151
2152 i += matched;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002153 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002154
Dave Barach9b8ffd92016-07-08 08:13:45 -04002155 vec_reset_length (cf->input_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002156 return 1;
2157}
2158
Chris Luke8e5b0412016-07-26 13:06:10 -04002159/** @brief Process input to a CLI session. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002160static void
2161unix_cli_process_input (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002162{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002163 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002164 clib_file_main_t *fm = &file_main;
2165 clib_file_t *uf;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002166 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002167 unformat_input_t input;
2168 int vlib_parse_eval (u8 *);
2169
Chris Luke93dcd1d2016-05-10 10:45:10 -04002170more:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002171 /* Try vlibplex first. Someday... */
2172 if (0 && vlib_parse_eval (cf->input_vector) == 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002173 goto done;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002174
Chris Luke93dcd1d2016-05-10 10:45:10 -04002175 if (cf->line_mode)
2176 {
2177 /* just treat whatever we got as a complete line of input */
2178 cf->current_command = cf->input_vector;
2179 }
2180 else
2181 {
2182 /* Line edit, echo, etc. */
Damjan Marion56dd5432017-09-08 19:52:02 +02002183 if (unix_cli_line_edit (cm, um, fm, cf))
Dave Barach9b8ffd92016-07-08 08:13:45 -04002184 /* want more input */
2185 return;
Chris Luke93dcd1d2016-05-10 10:45:10 -04002186 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002187
2188 if (um->log_fd)
2189 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002190 static u8 *lv;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002191 vec_reset_length (lv);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002192 lv = format (lv, "%U[%d]: %v",
2193 format_timeval, 0 /* current bat-time */ ,
2194 0 /* current bat-format */ ,
2195 cli_file_index, cf->input_vector);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002196 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002197 int rv __attribute__ ((unused)) =
2198 write (um->log_fd, lv, vec_len (lv));
Ed Warnickecb9cada2015-12-08 15:45:58 -07002199 }
2200 }
2201
Chris Luke93dcd1d2016-05-10 10:45:10 -04002202 /* Copy our input command to a new string */
2203 unformat_init_vector (&input, cf->current_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002204
2205 /* Remove leading white space from input. */
2206 (void) unformat (&input, "");
2207
2208 cm->current_input_file_index = cli_file_index;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002209 cf->pager_start = 0; /* start a new pager session */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002210
2211 if (unformat_check_input (&input) != UNFORMAT_END_OF_INPUT)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002212 vlib_cli_input (um->vlib_main, &input, unix_vlib_cli_output,
2213 cli_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002214
Ed Warnickecb9cada2015-12-08 15:45:58 -07002215 /* Zero buffer since otherwise unformat_free will call vec_free on it. */
2216 input.buffer = 0;
2217
2218 unformat_free (&input);
2219
Chris Luke93dcd1d2016-05-10 10:45:10 -04002220 /* Re-fetch pointer since pool may have moved. */
2221 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002222 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke93dcd1d2016-05-10 10:45:10 -04002223
Ed Warnickecb9cada2015-12-08 15:45:58 -07002224done:
Chris Luke93dcd1d2016-05-10 10:45:10 -04002225 /* reset vector; we'll re-use it later */
2226 if (cf->line_mode)
2227 vec_reset_length (cf->input_vector);
2228 else
2229 vec_reset_length (cf->current_command);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002230
Chris Luke7afda3a2016-04-25 13:49:22 -04002231 if (cf->no_pager == 2)
2232 {
2233 /* Pager was programmatically disabled */
2234 unix_cli_pager_message (cf, uf, "pager buffer overflowed", "\n");
2235 cf->no_pager = um->cli_no_pager;
2236 }
2237
Dave Barach9b8ffd92016-07-08 08:13:45 -04002238 if (vec_len (cf->pager_index) == 0
2239 || vec_len (cf->pager_index) < cf->height)
Chris Luke7afda3a2016-04-25 13:49:22 -04002240 {
2241 /* There was no need for the pager */
2242 unix_cli_pager_reset (cf);
2243
2244 /* Prompt. */
2245 unix_cli_cli_prompt (cf, uf);
2246 }
2247 else
2248 {
2249 /* Display the pager prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002250 unix_cli_pager_prompt (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04002251 }
Chris Luke93dcd1d2016-05-10 10:45:10 -04002252
Dave Barach9b8ffd92016-07-08 08:13:45 -04002253 /* Any residual data in the input vector? */
2254 if (vec_len (cf->input_vector))
2255 goto more;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002256}
2257
Chris Luke54ccf222016-07-25 16:38:11 -04002258/** Destroy a CLI session.
2259 * @note If we destroy the @c stdin session this additionally signals
2260 * the shutdown of VPP.
2261 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002262static void
2263unix_cli_kill (unix_cli_main_t * cm, uword cli_file_index)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002264{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002265 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002266 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002267 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002268 clib_file_t *uf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002269 int i;
2270
2271 cf = pool_elt_at_index (cm->cli_file_pool, cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002272 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002273
2274 /* Quit/EOF on stdin means quit program. */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002275 if (uf->file_descriptor == UNIX_CLI_STDIN_FD)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002276 clib_longjmp (&um->vlib_main->main_loop_exit, VLIB_MAIN_LOOP_EXIT_CLI);
2277
2278 vec_free (cf->current_command);
2279 vec_free (cf->search_key);
2280
2281 for (i = 0; i < vec_len (cf->command_history); i++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002282 vec_free (cf->command_history[i]);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002283
2284 vec_free (cf->command_history);
2285
Damjan Marion56dd5432017-09-08 19:52:02 +02002286 clib_file_del (fm, uf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002287
2288 unix_cli_file_free (cf);
2289 pool_put (cm->cli_file_pool, cf);
2290}
2291
Chris Luke54ccf222016-07-25 16:38:11 -04002292/** Handle system events. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002293static uword
2294unix_cli_process (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002295 vlib_node_runtime_t * rt, vlib_frame_t * f)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002296{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002297 unix_cli_main_t *cm = &unix_cli_main;
2298 uword i, *data = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002299
2300 while (1)
2301 {
2302 unix_cli_process_event_type_t event_type;
2303 vlib_process_wait_for_event (vm);
2304 event_type = vlib_process_get_events (vm, &data);
2305
2306 switch (event_type)
2307 {
2308 case UNIX_CLI_PROCESS_EVENT_READ_READY:
2309 for (i = 0; i < vec_len (data); i++)
2310 unix_cli_process_input (cm, data[i]);
2311 break;
2312
2313 case UNIX_CLI_PROCESS_EVENT_QUIT:
2314 /* Kill this process. */
2315 for (i = 0; i < vec_len (data); i++)
2316 unix_cli_kill (cm, data[i]);
2317 goto done;
2318 }
2319
2320 if (data)
2321 _vec_len (data) = 0;
2322 }
2323
Dave Barach9b8ffd92016-07-08 08:13:45 -04002324done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002325 vec_free (data);
2326
2327 vlib_node_set_state (vm, rt->node_index, VLIB_NODE_STATE_DISABLED);
2328
2329 /* Add node index so we can re-use this process later. */
2330 vec_add1 (cm->unused_cli_process_node_indices, rt->node_index);
2331
2332 return 0;
2333}
2334
Chris Luke54ccf222016-07-25 16:38:11 -04002335/** Called when a CLI session file descriptor can be written to without
2336 * blocking. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002337static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002338unix_cli_write_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002339{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002340 unix_cli_main_t *cm = &unix_cli_main;
2341 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002342 int n;
2343
2344 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2345
2346 /* Flush output vector. */
2347 n = write (uf->file_descriptor,
2348 cf->output_vector, vec_len (cf->output_vector));
2349
2350 if (n < 0 && errno != EAGAIN)
2351 return clib_error_return_unix (0, "write");
2352
2353 else if (n > 0)
2354 unix_cli_del_pending_output (uf, cf, n);
2355
2356 return /* no error */ 0;
2357}
2358
Chris Luke54ccf222016-07-25 16:38:11 -04002359/** Called when a CLI session file descriptor has data to be read. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002360static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002361unix_cli_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002362{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002363 unix_main_t *um = &unix_main;
2364 unix_cli_main_t *cm = &unix_cli_main;
2365 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002366 uword l;
2367 int n, n_read, n_try;
2368
2369 cf = pool_elt_at_index (cm->cli_file_pool, uf->private_data);
2370
2371 n = n_try = 4096;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002372 while (n == n_try)
2373 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002374 l = vec_len (cf->input_vector);
2375 vec_resize (cf->input_vector, l + n_try);
2376
2377 n = read (uf->file_descriptor, cf->input_vector + l, n_try);
2378
2379 /* Error? */
2380 if (n < 0 && errno != EAGAIN)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002381 return clib_error_return_unix (0, "read");
2382
Ed Warnickecb9cada2015-12-08 15:45:58 -07002383 n_read = n < 0 ? 0 : n;
2384 _vec_len (cf->input_vector) = l + n_read;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002385 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002386
Dave Barach9b8ffd92016-07-08 08:13:45 -04002387 if (!(n < 0))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002388 vlib_process_signal_event (um->vlib_main,
2389 cf->process_node_index,
2390 (n_read == 0
2391 ? UNIX_CLI_PROCESS_EVENT_QUIT
2392 : UNIX_CLI_PROCESS_EVENT_READ_READY),
2393 /* event data */ uf->private_data);
2394
2395 return /* no error */ 0;
2396}
2397
Chris Lukeb5850972016-05-03 16:34:59 -04002398/** Store a new CLI session.
2399 * @param name The name of the session.
2400 * @param fd The file descriptor for the session I/O.
2401 * @return The session ID.
2402 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002403static u32
2404unix_cli_file_add (unix_cli_main_t * cm, char *name, int fd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002405{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002406 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002407 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002408 unix_cli_file_t *cf;
Damjan Marion56dd5432017-09-08 19:52:02 +02002409 clib_file_t template = { 0 };
Dave Barach9b8ffd92016-07-08 08:13:45 -04002410 vlib_main_t *vm = um->vlib_main;
2411 vlib_node_t *n;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002412
2413 name = (char *) format (0, "unix-cli-%s", name);
2414
2415 if (vec_len (cm->unused_cli_process_node_indices) > 0)
2416 {
2417 uword l = vec_len (cm->unused_cli_process_node_indices);
2418
2419 /* Find node and give it new name. */
2420 n = vlib_get_node (vm, cm->unused_cli_process_node_indices[l - 1]);
2421 vec_free (n->name);
2422 n->name = (u8 *) name;
2423
2424 vlib_node_set_state (vm, n->index, VLIB_NODE_STATE_POLLING);
2425
2426 _vec_len (cm->unused_cli_process_node_indices) = l - 1;
2427 }
2428 else
2429 {
2430 static vlib_node_registration_t r = {
2431 .function = unix_cli_process,
2432 .type = VLIB_NODE_TYPE_PROCESS,
Dave Barach96e12032016-06-09 15:32:48 -04002433 .process_log2_n_stack_bytes = 16,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002434 };
2435
2436 r.name = name;
2437 vlib_register_node (vm, &r);
2438 vec_free (name);
2439
2440 n = vlib_get_node (vm, r.index);
2441 }
2442
2443 pool_get (cm->cli_file_pool, cf);
2444 memset (cf, 0, sizeof (*cf));
2445
2446 template.read_function = unix_cli_read_ready;
2447 template.write_function = unix_cli_write_ready;
2448 template.file_descriptor = fd;
2449 template.private_data = cf - cm->cli_file_pool;
2450
2451 cf->process_node_index = n->index;
Damjan Marion56dd5432017-09-08 19:52:02 +02002452 cf->clib_file_index = clib_file_add (fm, &template);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002453 cf->output_vector = 0;
2454 cf->input_vector = 0;
2455
Ed Warnickecb9cada2015-12-08 15:45:58 -07002456 vlib_start_process (vm, n->runtime_index);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002457
Dave Barach9b8ffd92016-07-08 08:13:45 -04002458 vlib_process_t *p = vlib_get_process_from_node (vm, n);
Andrew Yourtchenko716d9592016-05-10 10:51:34 +00002459 p->output_function = unix_vlib_cli_output;
2460 p->output_function_arg = cf - cm->cli_file_pool;
2461
Ed Warnickecb9cada2015-12-08 15:45:58 -07002462 return cf - cm->cli_file_pool;
2463}
2464
Chris Lukeb5850972016-05-03 16:34:59 -04002465/** Telnet listening socket has a new connection. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002466static clib_error_t *
Damjan Marion56dd5432017-09-08 19:52:02 +02002467unix_cli_listen_read_ready (clib_file_t * uf)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002468{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002469 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002470 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002471 unix_cli_main_t *cm = &unix_cli_main;
2472 clib_socket_t *s = &um->cli_listen_socket;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002473 clib_socket_t client;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002474 char *client_name;
2475 clib_error_t *error;
2476 unix_cli_file_t *cf;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002477 u32 cf_index;
2478
2479 error = clib_socket_accept (s, &client);
2480 if (error)
2481 return error;
2482
2483 client_name = (char *) format (0, "%U%c", format_sockaddr, &client.peer, 0);
2484
2485 cf_index = unix_cli_file_add (cm, client_name, client.fd);
2486 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
2487
2488 /* No longer need CLIB version of socket. */
2489 clib_socket_free (&client);
2490
2491 vec_free (client_name);
2492
2493 /* if we're supposed to run telnet session in character mode (default) */
2494 if (um->cli_line_mode == 0)
2495 {
Chris Luke0aca5eb2016-04-25 13:48:54 -04002496 /*
2497 * Set telnet client character mode, echo on, suppress "go-ahead".
2498 * Technically these should be negotiated, but this works.
Ed Warnickecb9cada2015-12-08 15:45:58 -07002499 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002500 u8 charmode_option[] = {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002501 IAC, WONT, TELOPT_LINEMODE, /* server will do char-by-char */
2502 IAC, DONT, TELOPT_LINEMODE, /* client should do char-by-char */
2503 IAC, WILL, TELOPT_SGA, /* server willl supress GA */
2504 IAC, DO, TELOPT_SGA, /* client should supress Go Ahead */
2505 IAC, WILL, TELOPT_ECHO, /* server will do echo */
2506 IAC, DONT, TELOPT_ECHO, /* client should not echo */
2507 IAC, DO, TELOPT_TTYPE, /* client should tell us its term type */
2508 IAC, SB, TELOPT_TTYPE, 1, IAC, SE, /* now tell me ttype */
2509 IAC, DO, TELOPT_NAWS, /* client should tell us its window sz */
2510 IAC, SB, TELOPT_NAWS, 1, IAC, SE, /* now tell me window size */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002511 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07002512
Chris Luke0aca5eb2016-04-25 13:48:54 -04002513 /* Enable history on this CLI */
Chris Luke7afda3a2016-04-25 13:49:22 -04002514 cf->history_limit = um->cli_history_limit;
2515 cf->has_history = cf->history_limit != 0;
2516
2517 /* Make sure this session is in line mode */
2518 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002519
2520 /* We need CRLF */
2521 cf->crlf_mode = 1;
2522
Chris Luke7afda3a2016-04-25 13:49:22 -04002523 /* Setup the pager */
2524 cf->no_pager = um->cli_no_pager;
2525
Damjan Marion56dd5432017-09-08 19:52:02 +02002526 uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002527
2528 /* Send the telnet options */
2529 unix_vlib_cli_output_raw (cf, uf, charmode_option,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002530 ARRAY_LEN (charmode_option));
Chris Luke0aca5eb2016-04-25 13:48:54 -04002531
2532 /* In case the client doesn't negotiate terminal type, use
2533 * a timer to kick off the initial prompt. */
2534 timer_call (unix_cli_file_welcome_timer, cf_index, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002535 }
2536
2537 return error;
2538}
2539
Chris Lukeb5850972016-05-03 16:34:59 -04002540/** The system terminal has informed us that the window size
2541 * has changed.
2542 */
Chris Luke7afda3a2016-04-25 13:49:22 -04002543static void
2544unix_cli_resize_interrupt (int signum)
2545{
Damjan Marion56dd5432017-09-08 19:52:02 +02002546 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002547 unix_cli_main_t *cm = &unix_cli_main;
2548 unix_cli_file_t *cf = pool_elt_at_index (cm->cli_file_pool,
2549 cm->stdin_cli_file_index);
Damjan Marion56dd5432017-09-08 19:52:02 +02002550 clib_file_t *uf = pool_elt_at_index (fm->file_pool, cf->clib_file_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04002551 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002552 (void) signum;
Chris Luke7afda3a2016-04-25 13:49:22 -04002553
2554 /* Terminal resized, fetch the new size */
Dave Barachb2a6e252016-07-27 10:00:58 -04002555 if (ioctl (UNIX_CLI_STDIN_FD, TIOCGWINSZ, &ws) < 0)
2556 {
2557 /* "Should never happen..." */
2558 clib_unix_warning ("TIOCGWINSZ");
2559 /* We can't trust ws.XXX... */
2560 return;
2561 }
Chris Lukeb2bcad62017-09-18 08:51:22 -04002562
Chris Luke7afda3a2016-04-25 13:49:22 -04002563 cf->width = ws.ws_col;
Chris Lukeb2bcad62017-09-18 08:51:22 -04002564 if (cf->width > UNIX_CLI_MAX_TERMINAL_WIDTH)
2565 cf->width = UNIX_CLI_MAX_TERMINAL_WIDTH;
2566 if (cf->width < UNIX_CLI_MIN_TERMINAL_WIDTH)
2567 cf->width = UNIX_CLI_MIN_TERMINAL_WIDTH;
2568
Chris Luke7afda3a2016-04-25 13:49:22 -04002569 cf->height = ws.ws_row;
Chris Lukeb2bcad62017-09-18 08:51:22 -04002570 if (cf->height > UNIX_CLI_MAX_TERMINAL_HEIGHT)
2571 cf->height = UNIX_CLI_MAX_TERMINAL_HEIGHT;
2572 if (cf->height < UNIX_CLI_MIN_TERMINAL_HEIGHT)
2573 cf->height = UNIX_CLI_MIN_TERMINAL_HEIGHT;
Chris Luke862623d2016-05-14 10:13:34 -04002574
2575 /* Reindex the pager buffer */
2576 unix_cli_pager_reindex (cf);
2577
2578 /* Redraw the page */
2579 unix_cli_pager_redraw (cf, uf);
Chris Luke7afda3a2016-04-25 13:49:22 -04002580}
2581
Chris Lukeb5850972016-05-03 16:34:59 -04002582/** Handle configuration directives in the @em unix section. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002583static clib_error_t *
2584unix_cli_config (vlib_main_t * vm, unformat_input_t * input)
2585{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002586 unix_main_t *um = &unix_main;
Damjan Marion56dd5432017-09-08 19:52:02 +02002587 clib_file_main_t *fm = &file_main;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002588 unix_cli_main_t *cm = &unix_cli_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002589 int flags;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002590 clib_error_t *error = 0;
2591 unix_cli_file_t *cf;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002592 u32 cf_index;
2593 struct termios tio;
Chris Luke7afda3a2016-04-25 13:49:22 -04002594 struct sigaction sa;
2595 struct winsize ws;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002596 u8 *term;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002597
2598 /* We depend on unix flags being set. */
2599 if ((error = vlib_call_config_function (vm, unix_config)))
2600 return error;
2601
2602 if (um->flags & UNIX_FLAG_INTERACTIVE)
2603 {
Ed Warnickecb9cada2015-12-08 15:45:58 -07002604 /* Set stdin to be non-blocking. */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002605 if ((flags = fcntl (UNIX_CLI_STDIN_FD, F_GETFL, 0)) < 0)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002606 flags = 0;
Dave Barachb2a6e252016-07-27 10:00:58 -04002607 (void) fcntl (UNIX_CLI_STDIN_FD, F_SETFL, flags | O_NONBLOCK);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002608
Chris Luke0aca5eb2016-04-25 13:48:54 -04002609 cf_index = unix_cli_file_add (cm, "stdin", UNIX_CLI_STDIN_FD);
2610 cf = pool_elt_at_index (cm->cli_file_pool, cf_index);
Chris Luke7afda3a2016-04-25 13:49:22 -04002611 cm->stdin_cli_file_index = cf_index;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002612
2613 /* If stdin is a tty and we are using chacracter mode, enable
2614 * history on the CLI and set the tty line discipline accordingly. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002615 if (isatty (UNIX_CLI_STDIN_FD) && um->cli_line_mode == 0)
2616 {
2617 /* Capture terminal resize events */
Ed Warnicke853e7202016-08-12 11:42:26 -07002618 memset (&sa, 0, sizeof (sa));
Dave Barach9b8ffd92016-07-08 08:13:45 -04002619 sa.sa_handler = unix_cli_resize_interrupt;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002620 if (sigaction (SIGWINCH, &sa, 0) < 0)
2621 clib_panic ("sigaction");
Chris Luke7afda3a2016-04-25 13:49:22 -04002622
Dave Barach9b8ffd92016-07-08 08:13:45 -04002623 /* Retrieve the current terminal size */
2624 ioctl (UNIX_CLI_STDIN_FD, TIOCGWINSZ, &ws);
2625 cf->width = ws.ws_col;
2626 cf->height = ws.ws_row;
Chris Luke7afda3a2016-04-25 13:49:22 -04002627
Dave Barach9b8ffd92016-07-08 08:13:45 -04002628 if (cf->width == 0 || cf->height == 0)
2629 /* We have a tty, but no size. Stick to line mode. */
2630 goto notty;
Chris Luke7afda3a2016-04-25 13:49:22 -04002631
Dave Barach9b8ffd92016-07-08 08:13:45 -04002632 /* Setup the history */
2633 cf->history_limit = um->cli_history_limit;
2634 cf->has_history = cf->history_limit != 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04002635
Dave Barach9b8ffd92016-07-08 08:13:45 -04002636 /* Setup the pager */
2637 cf->no_pager = um->cli_no_pager;
Chris Luke7afda3a2016-04-25 13:49:22 -04002638
Dave Barach9b8ffd92016-07-08 08:13:45 -04002639 /* We're going to be in char by char mode */
2640 cf->line_mode = 0;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002641
Dave Barach9b8ffd92016-07-08 08:13:45 -04002642 /* Save the original tty state so we can restore it later */
2643 tcgetattr (UNIX_CLI_STDIN_FD, &um->tio_stdin);
2644 um->tio_isset = 1;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002645
Dave Barach9b8ffd92016-07-08 08:13:45 -04002646 /* Tweak the tty settings */
2647 tio = um->tio_stdin;
2648 /* echo off, canonical mode off, ext'd input processing off */
2649 tio.c_lflag &= ~(ECHO | ICANON | IEXTEN);
2650 tio.c_cc[VMIN] = 1; /* 1 byte at a time */
2651 tio.c_cc[VTIME] = 0; /* no timer */
2652 tcsetattr (UNIX_CLI_STDIN_FD, TCSAFLUSH, &tio);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002653
Dave Barach9b8ffd92016-07-08 08:13:45 -04002654 /* See if we can do ANSI/VT100 output */
2655 term = (u8 *) getenv ("TERM");
2656 if (term != NULL)
2657 cf->ansi_capable = unix_cli_terminal_type (term,
2658 strlen ((char *)
2659 term));
2660 }
Chris Luke7afda3a2016-04-25 13:49:22 -04002661 else
Dave Barach9b8ffd92016-07-08 08:13:45 -04002662 {
2663 notty:
2664 /* No tty, so make sure these things are off */
2665 cf->no_pager = 1;
2666 cf->history_limit = 0;
2667 cf->has_history = 0;
2668 cf->line_mode = 1;
2669 }
Chris Luke0aca5eb2016-04-25 13:48:54 -04002670
2671 /* Send banner and initial prompt */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002672 unix_cli_file_welcome (cm, cf);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002673 }
2674
Ed Warnickea25bd1c2016-04-01 22:43:37 -05002675 /* If we have socket config, LISTEN, otherwise, don't */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002676 clib_socket_t *s = &um->cli_listen_socket;
2677 if (s->config && s->config[0] != 0)
2678 {
2679 /* CLI listen. */
Damjan Marion56dd5432017-09-08 19:52:02 +02002680 clib_file_t template = { 0 };
Ed Warnickecb9cada2015-12-08 15:45:58 -07002681
Damjan Marion57d963f2017-07-20 19:17:06 +02002682 /* mkdir of file socketu, only under /run */
2683 if (strncmp (s->config, "/run", 4) == 0)
Chris Luke475674e2017-07-05 18:02:53 -04002684 {
Damjan Marion57d963f2017-07-20 19:17:06 +02002685 u8 *tmp = format (0, "%s", s->config);
2686 int i = vec_len (tmp);
2687 while (i && tmp[--i] != '/')
2688 ;
2689
2690 tmp[i] = 0;
2691
2692 if (i)
2693 vlib_unix_recursive_mkdir ((char *) tmp);
2694 vec_free (tmp);
Chris Luke475674e2017-07-05 18:02:53 -04002695 }
2696
Damjan Marionf49921f2017-09-11 16:52:11 +02002697 s->flags = CLIB_SOCKET_F_IS_SERVER | /* listen, don't connect */
2698 CLIB_SOCKET_F_ALLOW_GROUP_WRITE; /* PF_LOCAL socket only */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002699 error = clib_socket_init (s);
Ed Warnickea25bd1c2016-04-01 22:43:37 -05002700
Dave Barach9b8ffd92016-07-08 08:13:45 -04002701 if (error)
2702 return error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002703
Dave Barach9b8ffd92016-07-08 08:13:45 -04002704 template.read_function = unix_cli_listen_read_ready;
2705 template.file_descriptor = s->fd;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002706
Damjan Marion56dd5432017-09-08 19:52:02 +02002707 clib_file_add (fm, &template);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002708 }
Ed Warnickecb9cada2015-12-08 15:45:58 -07002709
2710 /* Set CLI prompt. */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002711 if (!cm->cli_prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002712 cm->cli_prompt = format (0, "VLIB: ");
2713
2714 return 0;
2715}
2716
Chris Luke90f52bf2016-09-12 08:55:13 -04002717/*?
2718 * This module has no configurable parameters.
2719?*/
Ed Warnickecb9cada2015-12-08 15:45:58 -07002720VLIB_CONFIG_FUNCTION (unix_cli_config, "unix-cli");
2721
Chris Luke54ccf222016-07-25 16:38:11 -04002722/** Called when VPP is shutting down, this restores the system
2723 * terminal state if previously saved.
Chris Lukeb5850972016-05-03 16:34:59 -04002724 */
Chris Luke0aca5eb2016-04-25 13:48:54 -04002725static clib_error_t *
2726unix_cli_exit (vlib_main_t * vm)
2727{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002728 unix_main_t *um = &unix_main;
Chris Luke0aca5eb2016-04-25 13:48:54 -04002729
2730 /* If stdin is a tty and we saved the tty state, reset the tty state */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002731 if (isatty (UNIX_CLI_STDIN_FD) && um->tio_isset)
2732 tcsetattr (UNIX_CLI_STDIN_FD, TCSAFLUSH, &um->tio_stdin);
Chris Luke0aca5eb2016-04-25 13:48:54 -04002733
2734 return 0;
2735}
2736
2737VLIB_MAIN_LOOP_EXIT_FUNCTION (unix_cli_exit);
2738
Chris Lukeb5850972016-05-03 16:34:59 -04002739/** Set the CLI prompt.
Chris Luke54ccf222016-07-25 16:38:11 -04002740 * @param prompt The C string to set the prompt to.
Chris Lukeb5850972016-05-03 16:34:59 -04002741 * @note This setting is global; it impacts all current
2742 * and future CLI sessions.
2743 */
Dave Barach9b8ffd92016-07-08 08:13:45 -04002744void
2745vlib_unix_cli_set_prompt (char *prompt)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002746{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002747 char *fmt = (prompt[strlen (prompt) - 1] == ' ') ? "%s" : "%s ";
2748 unix_cli_main_t *cm = &unix_cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002749 if (cm->cli_prompt)
2750 vec_free (cm->cli_prompt);
2751 cm->cli_prompt = format (0, fmt, prompt);
2752}
2753
Chris Lukeb5850972016-05-03 16:34:59 -04002754/** CLI command to quit the terminal session.
2755 * @note If this is a stdin session then this will
2756 * shutdown VPP also.
2757 */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002758static clib_error_t *
2759unix_cli_quit (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002760 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002761{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002762 unix_cli_main_t *cm = &unix_cli_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002763
2764 vlib_process_signal_event (vm,
2765 vlib_current_process (vm),
2766 UNIX_CLI_PROCESS_EVENT_QUIT,
2767 cm->current_input_file_index);
2768 return 0;
2769}
2770
Chris Luke54ccf222016-07-25 16:38:11 -04002771/*?
2772 * Terminates the current CLI session.
2773 *
2774 * If VPP is running in @em interactive mode and this is the console session
2775 * (that is, the session on @c stdin) then this will also terminate VPP.
2776?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04002777/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002778VLIB_CLI_COMMAND (unix_cli_quit_command, static) = {
2779 .path = "quit",
2780 .short_help = "Exit CLI",
2781 .function = unix_cli_quit,
2782};
Dave Barach9b8ffd92016-07-08 08:13:45 -04002783/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002784
Chris Lukeb5850972016-05-03 16:34:59 -04002785/** CLI command to execute a VPP command script. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002786static clib_error_t *
2787unix_cli_exec (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002788 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002789{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002790 char *file_name;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002791 int fd;
2792 unformat_input_t sub_input;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002793 clib_error_t *error;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002794
2795 file_name = 0;
2796 fd = -1;
2797 error = 0;
2798
Dave Barach9b8ffd92016-07-08 08:13:45 -04002799 if (!unformat (input, "%s", &file_name))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002800 {
2801 error = clib_error_return (0, "expecting file name, got `%U'",
2802 format_unformat_error, input);
2803 goto done;
2804 }
2805
2806 fd = open (file_name, O_RDONLY);
2807 if (fd < 0)
2808 {
2809 error = clib_error_return_unix (0, "failed to open `%s'", file_name);
2810 goto done;
2811 }
2812
2813 /* Make sure its a regular file. */
2814 {
2815 struct stat s;
2816
2817 if (fstat (fd, &s) < 0)
2818 {
2819 error = clib_error_return_unix (0, "failed to stat `%s'", file_name);
2820 goto done;
2821 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04002822
2823 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002824 {
2825 error = clib_error_return (0, "not a regular file `%s'", file_name);
2826 goto done;
2827 }
2828 }
2829
2830 unformat_init_unix_file (&sub_input, fd);
2831
2832 vlib_cli_input (vm, &sub_input, 0, 0);
2833 unformat_free (&sub_input);
2834
Dave Barach9b8ffd92016-07-08 08:13:45 -04002835done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002836 if (fd > 0)
2837 close (fd);
2838 vec_free (file_name);
2839
2840 return error;
2841}
2842
Chris Luke54ccf222016-07-25 16:38:11 -04002843/*?
2844 * Executes a sequence of CLI commands which are read from a file.
2845 *
2846 * If a command is unrecognised or otherwise invalid then the usual CLI
2847 * feedback will be generated, however execution of subsequent commands
2848 * from the file will continue.
2849?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04002850/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002851VLIB_CLI_COMMAND (cli_exec, static) = {
2852 .path = "exec",
2853 .short_help = "Execute commands from file",
2854 .function = unix_cli_exec,
Dave Barachb2ef4dd2016-03-23 08:56:01 -04002855 .is_mp_safe = 1,
Ed Warnickecb9cada2015-12-08 15:45:58 -07002856};
Dave Barach9b8ffd92016-07-08 08:13:45 -04002857/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002858
Chris Lukeb5850972016-05-03 16:34:59 -04002859/** CLI command to show various unix error statistics. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002860static clib_error_t *
2861unix_show_errors (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002862 unformat_input_t * input, vlib_cli_command_t * cmd)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002863{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002864 unix_main_t *um = &unix_main;
2865 clib_error_t *error = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002866 int i, n_errors_to_show;
Dave Barach9b8ffd92016-07-08 08:13:45 -04002867 unix_error_history_t *unix_errors = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002868
2869 n_errors_to_show = 1 << 30;
2870
2871 if (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
2872 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002873 if (!unformat (input, "%d", &n_errors_to_show))
Ed Warnickecb9cada2015-12-08 15:45:58 -07002874 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002875 error =
2876 clib_error_return (0,
2877 "expecting integer number of errors to show, got `%U'",
2878 format_unformat_error, input);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002879 goto done;
2880 }
2881 }
2882
Dave Barach9b8ffd92016-07-08 08:13:45 -04002883 n_errors_to_show =
2884 clib_min (ARRAY_LEN (um->error_history), n_errors_to_show);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002885
Dave Barach9b8ffd92016-07-08 08:13:45 -04002886 i =
2887 um->error_history_index >
2888 0 ? um->error_history_index - 1 : ARRAY_LEN (um->error_history) - 1;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002889
2890 while (n_errors_to_show > 0)
2891 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002892 unix_error_history_t *eh = um->error_history + i;
Ed Warnickecb9cada2015-12-08 15:45:58 -07002893
Dave Barach9b8ffd92016-07-08 08:13:45 -04002894 if (!eh->error)
Ed Warnickecb9cada2015-12-08 15:45:58 -07002895 break;
2896
2897 vec_add1 (unix_errors, eh[0]);
2898 n_errors_to_show -= 1;
2899 if (i == 0)
2900 i = ARRAY_LEN (um->error_history) - 1;
2901 else
2902 i--;
2903 }
2904
2905 if (vec_len (unix_errors) == 0)
2906 vlib_cli_output (vm, "no Unix errors so far");
2907 else
2908 {
2909 vlib_cli_output (vm, "%Ld total errors seen", um->n_total_errors);
2910 for (i = vec_len (unix_errors) - 1; i >= 0; i--)
2911 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002912 unix_error_history_t *eh = vec_elt_at_index (unix_errors, i);
Ed Warnickecb9cada2015-12-08 15:45:58 -07002913 vlib_cli_output (vm, "%U: %U",
2914 format_time_interval, "h:m:s:u", eh->time,
2915 format_clib_error, eh->error);
2916 }
2917 vlib_cli_output (vm, "%U: time now",
2918 format_time_interval, "h:m:s:u", vlib_time_now (vm));
2919 }
2920
Dave Barach9b8ffd92016-07-08 08:13:45 -04002921done:
Ed Warnickecb9cada2015-12-08 15:45:58 -07002922 vec_free (unix_errors);
2923 return error;
2924}
2925
Dave Barach9b8ffd92016-07-08 08:13:45 -04002926/* *INDENT-OFF* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002927VLIB_CLI_COMMAND (cli_unix_show_errors, static) = {
2928 .path = "show unix-errors",
2929 .short_help = "Show Unix system call error history",
2930 .function = unix_show_errors,
2931};
Dave Barach9b8ffd92016-07-08 08:13:45 -04002932/* *INDENT-ON* */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002933
Chris Lukeb5850972016-05-03 16:34:59 -04002934/** CLI command to show session command history. */
Ed Warnickecb9cada2015-12-08 15:45:58 -07002935static clib_error_t *
Chris Luke6b90fe32016-04-25 13:49:15 -04002936unix_cli_show_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002937 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke6b90fe32016-04-25 13:49:15 -04002938{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002939 unix_cli_main_t *cm = &unix_cli_main;
2940 unix_cli_file_t *cf;
Chris Luke6b90fe32016-04-25 13:49:15 -04002941 int i, j;
2942
2943 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
2944
Chris Luke7afda3a2016-04-25 13:49:22 -04002945 if (cf->has_history && cf->history_limit)
Chris Luke6b90fe32016-04-25 13:49:15 -04002946 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04002947 i = 1 + cf->command_number - vec_len (cf->command_history);
Chris Luke7afda3a2016-04-25 13:49:22 -04002948 for (j = 0; j < vec_len (cf->command_history); j++)
Dave Barach9b8ffd92016-07-08 08:13:45 -04002949 vlib_cli_output (vm, "%d %v\n", i + j, cf->command_history[j]);
Chris Luke7afda3a2016-04-25 13:49:22 -04002950 }
2951 else
2952 {
2953 vlib_cli_output (vm, "History not enabled.\n");
Chris Luke6b90fe32016-04-25 13:49:15 -04002954 }
2955
2956 return 0;
2957}
2958
Chris Luke54ccf222016-07-25 16:38:11 -04002959/*?
2960 * Displays the command history for the current session, if any.
2961?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04002962/* *INDENT-OFF* */
Chris Luke6b90fe32016-04-25 13:49:15 -04002963VLIB_CLI_COMMAND (cli_unix_cli_show_history, static) = {
2964 .path = "history",
2965 .short_help = "Show current session command history",
2966 .function = unix_cli_show_history,
2967};
Dave Barach9b8ffd92016-07-08 08:13:45 -04002968/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04002969
Chris Lukeb5850972016-05-03 16:34:59 -04002970/** CLI command to show terminal status. */
Chris Luke7afda3a2016-04-25 13:49:22 -04002971static clib_error_t *
2972unix_cli_show_terminal (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04002973 unformat_input_t * input, vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04002974{
Dave Barach9b8ffd92016-07-08 08:13:45 -04002975 unix_main_t *um = &unix_main;
2976 unix_cli_main_t *cm = &unix_cli_main;
2977 unix_cli_file_t *cf;
2978 vlib_node_t *n;
Chris Luke7afda3a2016-04-25 13:49:22 -04002979
2980 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
2981 n = vlib_get_node (vm, cf->process_node_index);
2982
2983 vlib_cli_output (vm, "Terminal name: %v\n", n->name);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002984 vlib_cli_output (vm, "Terminal mode: %s\n", cf->line_mode ?
2985 "line-by-line" : "char-by-char");
Chris Luke7afda3a2016-04-25 13:49:22 -04002986 vlib_cli_output (vm, "Terminal width: %d\n", cf->width);
2987 vlib_cli_output (vm, "Terminal height: %d\n", cf->height);
Dave Barach9b8ffd92016-07-08 08:13:45 -04002988 vlib_cli_output (vm, "ANSI capable: %s\n",
2989 cf->ansi_capable ? "yes" : "no");
Chris Luke7afda3a2016-04-25 13:49:22 -04002990 vlib_cli_output (vm, "History enabled: %s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04002991 cf->has_history ? "yes" : "no", !cf->has_history
2992 || cf->history_limit ? "" :
2993 " (disabled by history limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04002994 if (cf->has_history)
2995 vlib_cli_output (vm, "History limit: %d\n", cf->history_limit);
2996 vlib_cli_output (vm, "Pager enabled: %s%s%s\n",
Dave Barach9b8ffd92016-07-08 08:13:45 -04002997 cf->no_pager ? "no" : "yes",
2998 cf->no_pager
2999 || cf->height ? "" : " (disabled by terminal height)",
3000 cf->no_pager
3001 || um->cli_pager_buffer_limit ? "" :
3002 " (disabled by buffer limit)");
Chris Luke7afda3a2016-04-25 13:49:22 -04003003 if (!cf->no_pager)
3004 vlib_cli_output (vm, "Pager limit: %d\n", um->cli_pager_buffer_limit);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003005 vlib_cli_output (vm, "CRLF mode: %s\n",
3006 cf->crlf_mode ? "CR+LF" : "LF");
Chris Luke7afda3a2016-04-25 13:49:22 -04003007
3008 return 0;
3009}
3010
Chris Luke54ccf222016-07-25 16:38:11 -04003011/*?
3012 * Displays various information about the state of the current terminal
3013 * session.
3014 *
3015 * @cliexpar
3016 * @cliexstart{show terminal}
3017 * Terminal name: unix-cli-stdin
3018 * Terminal mode: char-by-char
3019 * Terminal width: 123
3020 * Terminal height: 48
3021 * ANSI capable: yes
3022 * History enabled: yes
3023 * History limit: 50
3024 * Pager enabled: yes
3025 * Pager limit: 100000
3026 * CRLF mode: LF
3027 * @cliexend
3028?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003029/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003030VLIB_CLI_COMMAND (cli_unix_cli_show_terminal, static) = {
3031 .path = "show terminal",
3032 .short_help = "Show current session terminal settings",
3033 .function = unix_cli_show_terminal,
3034};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003035/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003036
Chris Lukeb5850972016-05-03 16:34:59 -04003037/** CLI command to set terminal pager settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003038static clib_error_t *
3039unix_cli_set_terminal_pager (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003040 unformat_input_t * input,
3041 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003042{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003043 unix_main_t *um = &unix_main;
3044 unix_cli_main_t *cm = &unix_cli_main;
3045 unix_cli_file_t *cf;
3046 unformat_input_t _line_input, *line_input = &_line_input;
Billy McFalla9a20e72017-02-15 11:39:12 -05003047 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003048
Dave Barach9b8ffd92016-07-08 08:13:45 -04003049 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003050 return 0;
3051
3052 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3053
3054 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3055 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003056 if (unformat (line_input, "on"))
3057 cf->no_pager = 0;
3058 else if (unformat (line_input, "off"))
3059 cf->no_pager = 1;
3060 else if (unformat (line_input, "limit %u", &um->cli_pager_buffer_limit))
3061 vlib_cli_output (vm,
3062 "Pager limit set to %u lines; note, this is global.\n",
3063 um->cli_pager_buffer_limit);
3064 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003065 {
3066 error = clib_error_return (0, "unknown parameter: `%U`",
3067 format_unformat_error, line_input);
3068 goto done;
3069 }
Dave Barach9b8ffd92016-07-08 08:13:45 -04003070 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003071
Billy McFalla9a20e72017-02-15 11:39:12 -05003072done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003073 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003074
Billy McFalla9a20e72017-02-15 11:39:12 -05003075 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003076}
3077
Chris Luke54ccf222016-07-25 16:38:11 -04003078/*?
3079 * Enables or disables the terminal pager for this session. Generally
3080 * this defaults to enabled.
3081 *
3082 * Additionally allows the pager buffer size to be set; though note that
3083 * this value is set globally and not per session.
3084?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003085/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003086VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_pager, static) = {
3087 .path = "set terminal pager",
3088 .short_help = "set terminal pager [on|off] [limit <lines>]",
3089 .function = unix_cli_set_terminal_pager,
3090};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003091/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003092
Chris Lukeb5850972016-05-03 16:34:59 -04003093/** CLI command to set terminal history settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003094static clib_error_t *
3095unix_cli_set_terminal_history (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003096 unformat_input_t * input,
3097 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003098{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003099 unix_cli_main_t *cm = &unix_cli_main;
3100 unix_cli_file_t *cf;
3101 unformat_input_t _line_input, *line_input = &_line_input;
Chris Luke7afda3a2016-04-25 13:49:22 -04003102 u32 limit;
Billy McFalla9a20e72017-02-15 11:39:12 -05003103 clib_error_t *error = 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003104
Dave Barach9b8ffd92016-07-08 08:13:45 -04003105 if (!unformat_user (input, unformat_line_input, line_input))
Chris Luke7afda3a2016-04-25 13:49:22 -04003106 return 0;
3107
3108 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3109
3110 while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
3111 {
Dave Barach9b8ffd92016-07-08 08:13:45 -04003112 if (unformat (line_input, "on"))
3113 cf->has_history = 1;
3114 else if (unformat (line_input, "off"))
3115 cf->has_history = 0;
3116 else if (unformat (line_input, "limit %u", &cf->history_limit))
3117 ;
3118 else
Billy McFalla9a20e72017-02-15 11:39:12 -05003119 {
3120 error = clib_error_return (0, "unknown parameter: `%U`",
3121 format_unformat_error, line_input);
3122 goto done;
3123 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003124
Dave Barach9b8ffd92016-07-08 08:13:45 -04003125 /* If we reduced history size, or turned it off, purge the history */
3126 limit = cf->has_history ? cf->history_limit : 0;
Chris Luke7afda3a2016-04-25 13:49:22 -04003127
Dave Barach9b8ffd92016-07-08 08:13:45 -04003128 while (cf->command_history && vec_len (cf->command_history) >= limit)
3129 {
3130 vec_free (cf->command_history[0]);
3131 vec_delete (cf->command_history, 1, 0);
3132 }
3133 }
Chris Luke7afda3a2016-04-25 13:49:22 -04003134
Billy McFalla9a20e72017-02-15 11:39:12 -05003135done:
Dave Barach9b8ffd92016-07-08 08:13:45 -04003136 unformat_free (line_input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003137
Billy McFalla9a20e72017-02-15 11:39:12 -05003138 return error;
Chris Luke7afda3a2016-04-25 13:49:22 -04003139}
3140
Chris Luke54ccf222016-07-25 16:38:11 -04003141/*?
3142 * Enables or disables the command history function of the current
3143 * terminal. Generally this defaults to enabled.
3144 *
3145 * This command also allows the maximum size of the history buffer for
3146 * this session to be altered.
3147?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003148/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003149VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_history, static) = {
3150 .path = "set terminal history",
3151 .short_help = "set terminal history [on|off] [limit <lines>]",
3152 .function = unix_cli_set_terminal_history,
3153};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003154/* *INDENT-ON* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003155
Chris Lukeb5850972016-05-03 16:34:59 -04003156/** CLI command to set terminal ANSI settings. */
Chris Luke7afda3a2016-04-25 13:49:22 -04003157static clib_error_t *
3158unix_cli_set_terminal_ansi (vlib_main_t * vm,
Dave Barach9b8ffd92016-07-08 08:13:45 -04003159 unformat_input_t * input,
3160 vlib_cli_command_t * cmd)
Chris Luke7afda3a2016-04-25 13:49:22 -04003161{
Dave Barach9b8ffd92016-07-08 08:13:45 -04003162 unix_cli_main_t *cm = &unix_cli_main;
3163 unix_cli_file_t *cf;
Chris Luke7afda3a2016-04-25 13:49:22 -04003164
3165 cf = pool_elt_at_index (cm->cli_file_pool, cm->current_input_file_index);
3166
3167 if (unformat (input, "on"))
3168 cf->ansi_capable = 1;
3169 else if (unformat (input, "off"))
3170 cf->ansi_capable = 0;
3171 else
3172 return clib_error_return (0, "unknown parameter: `%U`",
Dave Barach9b8ffd92016-07-08 08:13:45 -04003173 format_unformat_error, input);
Chris Luke7afda3a2016-04-25 13:49:22 -04003174
3175 return 0;
3176}
3177
Chris Luke54ccf222016-07-25 16:38:11 -04003178/*?
3179 * Enables or disables the use of ANSI control sequences by this terminal.
3180 * The default will vary based on terminal detection at the start of the
3181 * session.
3182 *
3183 * ANSI control sequences are used in a small number of places to provide,
3184 * for example, color text output and to control the cursor in the pager.
3185?*/
Dave Barach9b8ffd92016-07-08 08:13:45 -04003186/* *INDENT-OFF* */
Chris Luke7afda3a2016-04-25 13:49:22 -04003187VLIB_CLI_COMMAND (cli_unix_cli_set_terminal_ansi, static) = {
3188 .path = "set terminal ansi",
3189 .short_help = "set terminal ansi [on|off]",
3190 .function = unix_cli_set_terminal_ansi,
3191};
Dave Barach9b8ffd92016-07-08 08:13:45 -04003192/* *INDENT-ON* */
Chris Luke6b90fe32016-04-25 13:49:15 -04003193
3194static clib_error_t *
Ed Warnickecb9cada2015-12-08 15:45:58 -07003195unix_cli_init (vlib_main_t * vm)
3196{
3197 return 0;
3198}
3199
3200VLIB_INIT_FUNCTION (unix_cli_init);
Dave Barach9b8ffd92016-07-08 08:13:45 -04003201
3202/*
3203 * fd.io coding-style-patch-verification: ON
3204 *
3205 * Local Variables:
3206 * eval: (c-set-style "gnu")
3207 * End:
3208 */