blob: 37767e9253e41f9510559e62c562bbed7e50b94a [file] [log] [blame]
ajs274a4a42004-12-07 15:39:31 +00001/*
ajs274a4a42004-12-07 15:39:31 +00002 Command interpreter routine for virtual terminal [aka TeletYpe]
paul718e3742002-12-13 20:15:29 +00003 Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
Christian Frankecd40b322013-09-30 12:27:51 +00004 Copyright (C) 2013 by Open Source Routing.
5 Copyright (C) 2013 by Internet Systems Consortium, Inc. ("ISC")
paul718e3742002-12-13 20:15:29 +00006
7This file is part of GNU Zebra.
8
9GNU Zebra is free software; you can redistribute it and/or modify
10it under the terms of the GNU General Public License as published
11by the Free Software Foundation; either version 2, or (at your
12option) any later version.
13
14GNU Zebra is distributed in the hope that it will be useful, but
15WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17General Public License for more details.
18
19You should have received a copy of the GNU General Public License
20along with GNU Zebra; see the file COPYING. If not, write to the
21Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22Boston, MA 02111-1307, USA. */
23
24#include <zebra.h>
25
paulb21b19c2003-06-15 01:28:29 +000026
paul718e3742002-12-13 20:15:29 +000027#include "memory.h"
28#include "log.h"
gdt5e4fa162004-03-16 14:38:36 +000029#include <lib/version.h>
paul9ab68122003-01-18 01:16:20 +000030#include "thread.h"
paulb21b19c2003-06-15 01:28:29 +000031#include "vector.h"
32#include "vty.h"
33#include "command.h"
paul354d1192005-04-25 16:26:42 +000034#include "workqueue.h"
paul718e3742002-12-13 20:15:29 +000035
36/* Command vector which includes some level of command lists. Normally
37 each daemon maintains each own cmdvec. */
pauleb820af2005-09-05 11:54:13 +000038vector cmdvec = NULL;
paul718e3742002-12-13 20:15:29 +000039
Christian Frankecd40b322013-09-30 12:27:51 +000040struct cmd_token token_cr;
Chris Caputo228da422009-07-18 05:44:03 +000041char *command_cr = NULL;
42
Christian Frankecd40b322013-09-30 12:27:51 +000043enum filter_type
44{
45 FILTER_RELAXED,
46 FILTER_STRICT
47};
48
49enum matcher_rv
50{
51 MATCHER_OK,
52 MATCHER_COMPLETE,
53 MATCHER_INCOMPLETE,
54 MATCHER_NO_MATCH,
55 MATCHER_AMBIGUOUS,
56 MATCHER_EXCEED_ARGC_MAX
57};
58
59#define MATCHER_ERROR(matcher_rv) \
60 ( (matcher_rv) == MATCHER_INCOMPLETE \
61 || (matcher_rv) == MATCHER_NO_MATCH \
62 || (matcher_rv) == MATCHER_AMBIGUOUS \
63 || (matcher_rv) == MATCHER_EXCEED_ARGC_MAX \
64 )
65
paul718e3742002-12-13 20:15:29 +000066/* Host information structure. */
67struct host host;
68
paul718e3742002-12-13 20:15:29 +000069/* Standard command node structures. */
Stephen Hemminger7fc626d2008-12-01 11:10:34 -080070static struct cmd_node auth_node =
paul718e3742002-12-13 20:15:29 +000071{
72 AUTH_NODE,
73 "Password: ",
74};
75
Stephen Hemminger7fc626d2008-12-01 11:10:34 -080076static struct cmd_node view_node =
paul718e3742002-12-13 20:15:29 +000077{
78 VIEW_NODE,
79 "%s> ",
80};
81
Stephen Hemminger7fc626d2008-12-01 11:10:34 -080082static struct cmd_node restricted_node =
Paul Jakma62687ff2008-08-23 14:27:06 +010083{
84 RESTRICTED_NODE,
85 "%s$ ",
86};
87
Stephen Hemminger7fc626d2008-12-01 11:10:34 -080088static struct cmd_node auth_enable_node =
paul718e3742002-12-13 20:15:29 +000089{
90 AUTH_ENABLE_NODE,
91 "Password: ",
92};
93
Stephen Hemminger7fc626d2008-12-01 11:10:34 -080094static struct cmd_node enable_node =
paul718e3742002-12-13 20:15:29 +000095{
96 ENABLE_NODE,
97 "%s# ",
98};
99
Stephen Hemminger7fc626d2008-12-01 11:10:34 -0800100static struct cmd_node config_node =
paul718e3742002-12-13 20:15:29 +0000101{
102 CONFIG_NODE,
103 "%s(config)# ",
104 1
105};
hasso6590f2c2004-10-19 20:40:08 +0000106
107/* Default motd string. */
Everton Marques74b4fad2014-09-18 12:06:53 -0300108static const char *default_motd =
hasso6590f2c2004-10-19 20:40:08 +0000109"\r\n\
110Hello, this is " QUAGGA_PROGNAME " (version " QUAGGA_VERSION ").\r\n\
111" QUAGGA_COPYRIGHT "\r\n\
David Lamparter0be793e2012-11-27 01:34:56 +0000112" GIT_INFO "\r\n";
hasso6590f2c2004-10-19 20:40:08 +0000113
ajs274a4a42004-12-07 15:39:31 +0000114
Stephen Hemminger2d362d12009-12-21 12:54:58 +0300115static const struct facility_map {
ajs274a4a42004-12-07 15:39:31 +0000116 int facility;
117 const char *name;
118 size_t match;
119} syslog_facilities[] =
120 {
121 { LOG_KERN, "kern", 1 },
122 { LOG_USER, "user", 2 },
123 { LOG_MAIL, "mail", 1 },
124 { LOG_DAEMON, "daemon", 1 },
125 { LOG_AUTH, "auth", 1 },
126 { LOG_SYSLOG, "syslog", 1 },
127 { LOG_LPR, "lpr", 2 },
128 { LOG_NEWS, "news", 1 },
129 { LOG_UUCP, "uucp", 2 },
130 { LOG_CRON, "cron", 1 },
131#ifdef LOG_FTP
132 { LOG_FTP, "ftp", 1 },
133#endif
134 { LOG_LOCAL0, "local0", 6 },
135 { LOG_LOCAL1, "local1", 6 },
136 { LOG_LOCAL2, "local2", 6 },
137 { LOG_LOCAL3, "local3", 6 },
138 { LOG_LOCAL4, "local4", 6 },
139 { LOG_LOCAL5, "local5", 6 },
140 { LOG_LOCAL6, "local6", 6 },
141 { LOG_LOCAL7, "local7", 6 },
142 { 0, NULL, 0 },
143 };
144
145static const char *
146facility_name(int facility)
147{
Stephen Hemminger2d362d12009-12-21 12:54:58 +0300148 const struct facility_map *fm;
ajs274a4a42004-12-07 15:39:31 +0000149
150 for (fm = syslog_facilities; fm->name; fm++)
151 if (fm->facility == facility)
152 return fm->name;
153 return "";
154}
155
156static int
157facility_match(const char *str)
158{
Stephen Hemminger2d362d12009-12-21 12:54:58 +0300159 const struct facility_map *fm;
ajs274a4a42004-12-07 15:39:31 +0000160
161 for (fm = syslog_facilities; fm->name; fm++)
162 if (!strncmp(str,fm->name,fm->match))
163 return fm->facility;
164 return -1;
165}
166
167static int
168level_match(const char *s)
169{
170 int level ;
171
172 for ( level = 0 ; zlog_priority [level] != NULL ; level ++ )
173 if (!strncmp (s, zlog_priority[level], 2))
174 return level;
175 return ZLOG_DISABLED;
176}
177
ajscb585b62005-01-14 17:09:38 +0000178/* This is called from main when a daemon is invoked with -v or --version. */
hasso6590f2c2004-10-19 20:40:08 +0000179void
180print_version (const char *progname)
181{
ajscb585b62005-01-14 17:09:38 +0000182 printf ("%s version %s\n", progname, QUAGGA_VERSION);
183 printf ("%s\n", QUAGGA_COPYRIGHT);
David Lamparter7abd8752014-11-22 10:43:29 -0800184 printf ("configured with:\n\t%s\n", QUAGGA_CONFIG_ARGS);
hasso6590f2c2004-10-19 20:40:08 +0000185}
186
David Lamparter6b0655a2014-06-04 06:53:35 +0200187
paul718e3742002-12-13 20:15:29 +0000188/* Utility function to concatenate argv argument into a single string
189 with inserting ' ' character between each argument. */
190char *
paul42d49862004-10-13 05:22:18 +0000191argv_concat (const char **argv, int argc, int shift)
paul718e3742002-12-13 20:15:29 +0000192{
193 int i;
ajsf6834d42005-01-28 20:28:35 +0000194 size_t len;
paul718e3742002-12-13 20:15:29 +0000195 char *str;
ajsf6834d42005-01-28 20:28:35 +0000196 char *p;
paul718e3742002-12-13 20:15:29 +0000197
ajsf6834d42005-01-28 20:28:35 +0000198 len = 0;
199 for (i = shift; i < argc; i++)
200 len += strlen(argv[i])+1;
201 if (!len)
202 return NULL;
203 p = str = XMALLOC(MTYPE_TMP, len);
paul718e3742002-12-13 20:15:29 +0000204 for (i = shift; i < argc; i++)
205 {
ajsf6834d42005-01-28 20:28:35 +0000206 size_t arglen;
207 memcpy(p, argv[i], (arglen = strlen(argv[i])));
208 p += arglen;
209 *p++ = ' ';
paul718e3742002-12-13 20:15:29 +0000210 }
ajsf6834d42005-01-28 20:28:35 +0000211 *(p-1) = '\0';
paul718e3742002-12-13 20:15:29 +0000212 return str;
213}
214
215/* Install top node of command vector. */
216void
217install_node (struct cmd_node *node,
218 int (*func) (struct vty *))
219{
220 vector_set_index (cmdvec, node->node, node);
221 node->func = func;
222 node->cmd_vector = vector_init (VECTOR_MIN_SIZE);
223}
224
paul718e3742002-12-13 20:15:29 +0000225/* Breaking up string into each command piece. I assume given
226 character is separated by a space character. Return value is a
227 vector which includes char ** data element. */
228vector
hassoea8e9d92004-10-07 21:32:14 +0000229cmd_make_strvec (const char *string)
paul718e3742002-12-13 20:15:29 +0000230{
hassoea8e9d92004-10-07 21:32:14 +0000231 const char *cp, *start;
232 char *token;
paul718e3742002-12-13 20:15:29 +0000233 int strlen;
234 vector strvec;
235
236 if (string == NULL)
237 return NULL;
238
239 cp = string;
240
241 /* Skip white spaces. */
242 while (isspace ((int) *cp) && *cp != '\0')
243 cp++;
244
245 /* Return if there is only white spaces */
246 if (*cp == '\0')
247 return NULL;
248
249 if (*cp == '!' || *cp == '#')
250 return NULL;
251
252 /* Prepare return vector. */
253 strvec = vector_init (VECTOR_MIN_SIZE);
254
255 /* Copy each command piece and set into vector. */
256 while (1)
257 {
258 start = cp;
259 while (!(isspace ((int) *cp) || *cp == '\r' || *cp == '\n') &&
260 *cp != '\0')
261 cp++;
262 strlen = cp - start;
263 token = XMALLOC (MTYPE_STRVEC, strlen + 1);
264 memcpy (token, start, strlen);
265 *(token + strlen) = '\0';
266 vector_set (strvec, token);
267
268 while ((isspace ((int) *cp) || *cp == '\n' || *cp == '\r') &&
269 *cp != '\0')
270 cp++;
271
272 if (*cp == '\0')
273 return strvec;
274 }
275}
276
277/* Free allocated string vector. */
278void
279cmd_free_strvec (vector v)
280{
hasso8c328f12004-10-05 21:01:23 +0000281 unsigned int i;
paul718e3742002-12-13 20:15:29 +0000282 char *cp;
283
284 if (!v)
285 return;
286
paul55468c82005-03-14 20:19:01 +0000287 for (i = 0; i < vector_active (v); i++)
paul718e3742002-12-13 20:15:29 +0000288 if ((cp = vector_slot (v, i)) != NULL)
289 XFREE (MTYPE_STRVEC, cp);
290
291 vector_free (v);
292}
293
Christian Frankecd40b322013-09-30 12:27:51 +0000294struct format_parser_state
295{
296 vector topvect; /* Top level vector */
297 vector intvect; /* Intermediate level vector, used when there's
298 * a multiple in a keyword. */
299 vector curvect; /* current vector where read tokens should be
300 appended. */
301
302 const char *string; /* pointer to command string, not modified */
303 const char *cp; /* pointer in command string, moved along while
304 parsing */
305 const char *dp; /* pointer in description string, moved along while
306 parsing */
307
308 int in_keyword; /* flag to remember if we are in a keyword group */
309 int in_multiple; /* flag to remember if we are in a multiple group */
310 int just_read_word; /* flag to remember if the last thing we red was a
311 * real word and not some abstract token */
312};
313
314static void
315format_parser_error(struct format_parser_state *state, const char *message)
316{
317 int offset = state->cp - state->string + 1;
318
319 fprintf(stderr, "\nError parsing command: \"%s\"\n", state->string);
320 fprintf(stderr, " %*c\n", offset, '^');
321 fprintf(stderr, "%s at offset %d.\n", message, offset);
322 fprintf(stderr, "This is a programming error. Check your DEFUNs etc.\n");
323 exit(1);
324}
325
ajs274a4a42004-12-07 15:39:31 +0000326static char *
Christian Frankecd40b322013-09-30 12:27:51 +0000327format_parser_desc_str(struct format_parser_state *state)
paul718e3742002-12-13 20:15:29 +0000328{
hasso6ad96ea2004-10-07 19:33:46 +0000329 const char *cp, *start;
330 char *token;
paul718e3742002-12-13 20:15:29 +0000331 int strlen;
Christian Frankecd40b322013-09-30 12:27:51 +0000332
333 cp = state->dp;
paul718e3742002-12-13 20:15:29 +0000334
335 if (cp == NULL)
336 return NULL;
337
338 /* Skip white spaces. */
339 while (isspace ((int) *cp) && *cp != '\0')
340 cp++;
341
342 /* Return if there is only white spaces */
343 if (*cp == '\0')
344 return NULL;
345
346 start = cp;
347
348 while (!(*cp == '\r' || *cp == '\n') && *cp != '\0')
349 cp++;
350
351 strlen = cp - start;
Christian Frankecd40b322013-09-30 12:27:51 +0000352 token = XMALLOC (MTYPE_CMD_TOKENS, strlen + 1);
paul718e3742002-12-13 20:15:29 +0000353 memcpy (token, start, strlen);
354 *(token + strlen) = '\0';
355
Christian Frankecd40b322013-09-30 12:27:51 +0000356 state->dp = cp;
paul718e3742002-12-13 20:15:29 +0000357
358 return token;
359}
360
Christian Frankecd40b322013-09-30 12:27:51 +0000361static void
362format_parser_begin_keyword(struct format_parser_state *state)
paul718e3742002-12-13 20:15:29 +0000363{
Christian Frankecd40b322013-09-30 12:27:51 +0000364 struct cmd_token *token;
365 vector keyword_vect;
paul718e3742002-12-13 20:15:29 +0000366
Christian Frankecd40b322013-09-30 12:27:51 +0000367 if (state->in_keyword
368 || state->in_multiple)
369 format_parser_error(state, "Unexpected '{'");
paul718e3742002-12-13 20:15:29 +0000370
Christian Frankecd40b322013-09-30 12:27:51 +0000371 state->cp++;
372 state->in_keyword = 1;
paul718e3742002-12-13 20:15:29 +0000373
Christian Frankecd40b322013-09-30 12:27:51 +0000374 token = XCALLOC(MTYPE_CMD_TOKENS, sizeof(*token));
375 token->type = TOKEN_KEYWORD;
376 token->keyword = vector_init(VECTOR_MIN_SIZE);
paul718e3742002-12-13 20:15:29 +0000377
Christian Frankecd40b322013-09-30 12:27:51 +0000378 keyword_vect = vector_init(VECTOR_MIN_SIZE);
379 vector_set(token->keyword, keyword_vect);
380
381 vector_set(state->curvect, token);
382 state->curvect = keyword_vect;
383}
384
385static void
386format_parser_begin_multiple(struct format_parser_state *state)
387{
388 struct cmd_token *token;
389
390 if (state->in_keyword == 1)
391 format_parser_error(state, "Keyword starting with '('");
392
393 if (state->in_multiple)
394 format_parser_error(state, "Nested group");
395
396 state->cp++;
397 state->in_multiple = 1;
398 state->just_read_word = 0;
399
400 token = XCALLOC(MTYPE_CMD_TOKENS, sizeof(*token));
401 token->type = TOKEN_MULTIPLE;
402 token->multiple = vector_init(VECTOR_MIN_SIZE);
403
404 vector_set(state->curvect, token);
405 if (state->curvect != state->topvect)
406 state->intvect = state->curvect;
407 state->curvect = token->multiple;
408}
409
410static void
411format_parser_end_keyword(struct format_parser_state *state)
412{
413 if (state->in_multiple
414 || !state->in_keyword)
415 format_parser_error(state, "Unexpected '}'");
416
417 if (state->in_keyword == 1)
418 format_parser_error(state, "Empty keyword group");
419
420 state->cp++;
421 state->in_keyword = 0;
422 state->curvect = state->topvect;
423}
424
425static void
426format_parser_end_multiple(struct format_parser_state *state)
427{
428 char *dummy;
429
430 if (!state->in_multiple)
431 format_parser_error(state, "Unepexted ')'");
432
433 if (vector_active(state->curvect) == 0)
434 format_parser_error(state, "Empty multiple section");
435
436 if (!state->just_read_word)
paul718e3742002-12-13 20:15:29 +0000437 {
Christian Frankecd40b322013-09-30 12:27:51 +0000438 /* There are constructions like
439 * 'show ip ospf database ... (self-originate|)'
440 * in use.
441 * The old parser reads a description string for the
442 * word '' between |) which will never match.
443 * Simulate this behvaior by dropping the next desc
444 * string in such a case. */
paul718e3742002-12-13 20:15:29 +0000445
Christian Frankecd40b322013-09-30 12:27:51 +0000446 dummy = format_parser_desc_str(state);
447 XFREE(MTYPE_CMD_TOKENS, dummy);
448 }
paul718e3742002-12-13 20:15:29 +0000449
Christian Frankecd40b322013-09-30 12:27:51 +0000450 state->cp++;
451 state->in_multiple = 0;
paul718e3742002-12-13 20:15:29 +0000452
Christian Frankecd40b322013-09-30 12:27:51 +0000453 if (state->intvect)
454 state->curvect = state->intvect;
455 else
456 state->curvect = state->topvect;
457}
paul718e3742002-12-13 20:15:29 +0000458
Christian Frankecd40b322013-09-30 12:27:51 +0000459static void
460format_parser_handle_pipe(struct format_parser_state *state)
461{
462 struct cmd_token *keyword_token;
463 vector keyword_vect;
paul718e3742002-12-13 20:15:29 +0000464
Christian Frankecd40b322013-09-30 12:27:51 +0000465 if (state->in_multiple)
466 {
467 state->just_read_word = 0;
468 state->cp++;
469 }
470 else if (state->in_keyword)
471 {
472 state->in_keyword = 1;
473 state->cp++;
paul718e3742002-12-13 20:15:29 +0000474
Christian Frankecd40b322013-09-30 12:27:51 +0000475 keyword_token = vector_slot(state->topvect,
476 vector_active(state->topvect) - 1);
477 keyword_vect = vector_init(VECTOR_MIN_SIZE);
478 vector_set(keyword_token->keyword, keyword_vect);
479 state->curvect = keyword_vect;
480 }
481 else
482 {
483 format_parser_error(state, "Unexpected '|'");
paul718e3742002-12-13 20:15:29 +0000484 }
485}
486
Christian Frankecd40b322013-09-30 12:27:51 +0000487static void
488format_parser_read_word(struct format_parser_state *state)
paul718e3742002-12-13 20:15:29 +0000489{
Christian Frankecd40b322013-09-30 12:27:51 +0000490 const char *start;
491 int len;
492 char *cmd;
493 struct cmd_token *token;
paul718e3742002-12-13 20:15:29 +0000494
Christian Frankecd40b322013-09-30 12:27:51 +0000495 start = state->cp;
496
497 while (state->cp[0] != '\0'
498 && !strchr("\r\n(){}|", state->cp[0])
499 && !isspace((int)state->cp[0]))
500 state->cp++;
501
502 len = state->cp - start;
503 cmd = XMALLOC(MTYPE_CMD_TOKENS, len + 1);
504 memcpy(cmd, start, len);
505 cmd[len] = '\0';
506
507 token = XCALLOC(MTYPE_CMD_TOKENS, sizeof(*token));
508 token->type = TOKEN_TERMINAL;
David Lamparter14162932015-05-12 17:18:04 +0200509 if (strcmp (cmd, "A.B.C.D") == 0)
David Lamparter10bac802015-05-05 11:10:20 +0200510 token->terminal = TERMINAL_IPV4;
511 else if (strcmp (cmd, "A.B.C.D/M") == 0)
512 token->terminal = TERMINAL_IPV4_PREFIX;
513 else if (strcmp (cmd, "X:X::X:X") == 0)
514 token->terminal = TERMINAL_IPV6;
515 else if (strcmp (cmd, "X:X::X:X/M") == 0)
516 token->terminal = TERMINAL_IPV6_PREFIX;
David Lamparter14162932015-05-12 17:18:04 +0200517 else if (cmd[0] == '[')
518 token->terminal = TERMINAL_OPTION;
519 else if (cmd[0] == '.')
520 token->terminal = TERMINAL_VARARG;
521 else if (cmd[0] == '<')
522 token->terminal = TERMINAL_RANGE;
523 else if (cmd[0] >= 'A' && cmd[0] <= 'Z')
524 token->terminal = TERMINAL_VARIABLE;
David Lamparter10bac802015-05-05 11:10:20 +0200525 else
526 token->terminal = TERMINAL_LITERAL;
527
Christian Frankecd40b322013-09-30 12:27:51 +0000528 token->cmd = cmd;
529 token->desc = format_parser_desc_str(state);
530 vector_set(state->curvect, token);
531
532 if (state->in_keyword == 1)
533 state->in_keyword = 2;
534
535 state->just_read_word = 1;
536}
537
538/**
539 * Parse a given command format string and build a tree of tokens from
540 * it that is suitable to be used by the command subsystem.
541 *
542 * @param string Command format string.
543 * @param descstr Description string.
544 * @return A vector of struct cmd_token representing the given command,
545 * or NULL on error.
546 */
547static vector
548cmd_parse_format(const char *string, const char *descstr)
549{
550 struct format_parser_state state;
551
552 if (string == NULL)
553 return NULL;
554
555 memset(&state, 0, sizeof(state));
556 state.topvect = state.curvect = vector_init(VECTOR_MIN_SIZE);
557 state.cp = state.string = string;
558 state.dp = descstr;
559
560 while (1)
paul718e3742002-12-13 20:15:29 +0000561 {
Christian Frankecd40b322013-09-30 12:27:51 +0000562 while (isspace((int)state.cp[0]) && state.cp[0] != '\0')
563 state.cp++;
564
565 switch (state.cp[0])
566 {
567 case '\0':
568 if (state.in_keyword
569 || state.in_multiple)
570 format_parser_error(&state, "Unclosed group/keyword");
571 return state.topvect;
572 case '{':
573 format_parser_begin_keyword(&state);
574 break;
575 case '(':
576 format_parser_begin_multiple(&state);
577 break;
578 case '}':
579 format_parser_end_keyword(&state);
580 break;
581 case ')':
582 format_parser_end_multiple(&state);
583 break;
584 case '|':
585 format_parser_handle_pipe(&state);
586 break;
587 default:
588 format_parser_read_word(&state);
589 }
paul718e3742002-12-13 20:15:29 +0000590 }
paul718e3742002-12-13 20:15:29 +0000591}
592
593/* Return prompt character of specified node. */
hasso8c328f12004-10-05 21:01:23 +0000594const char *
paul718e3742002-12-13 20:15:29 +0000595cmd_prompt (enum node_type node)
596{
597 struct cmd_node *cnode;
598
599 cnode = vector_slot (cmdvec, node);
600 return cnode->prompt;
601}
602
603/* Install a command into a node. */
604void
605install_element (enum node_type ntype, struct cmd_element *cmd)
606{
607 struct cmd_node *cnode;
pauleb820af2005-09-05 11:54:13 +0000608
609 /* cmd_init hasn't been called */
610 if (!cmdvec)
611 return;
612
paul718e3742002-12-13 20:15:29 +0000613 cnode = vector_slot (cmdvec, ntype);
614
615 if (cnode == NULL)
616 {
617 fprintf (stderr, "Command node %d doesn't exist, please check it\n",
618 ntype);
619 exit (1);
620 }
621
622 vector_set (cnode->cmd_vector, cmd);
Christian Frankecd40b322013-09-30 12:27:51 +0000623 if (cmd->tokens == NULL)
624 cmd->tokens = cmd_parse_format(cmd->string, cmd->doc);
paul718e3742002-12-13 20:15:29 +0000625}
626
Stephen Hemminger2d362d12009-12-21 12:54:58 +0300627static const unsigned char itoa64[] =
paul718e3742002-12-13 20:15:29 +0000628"./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
629
ajs274a4a42004-12-07 15:39:31 +0000630static void
paul718e3742002-12-13 20:15:29 +0000631to64(char *s, long v, int n)
632{
633 while (--n >= 0)
634 {
635 *s++ = itoa64[v&0x3f];
636 v >>= 6;
637 }
638}
639
ajs274a4a42004-12-07 15:39:31 +0000640static char *
641zencrypt (const char *passwd)
paul718e3742002-12-13 20:15:29 +0000642{
643 char salt[6];
644 struct timeval tv;
645 char *crypt (const char *, const char *);
646
647 gettimeofday(&tv,0);
648
649 to64(&salt[0], random(), 3);
650 to64(&salt[3], tv.tv_usec, 3);
651 salt[5] = '\0';
652
653 return crypt (passwd, salt);
654}
655
656/* This function write configuration of this host. */
ajs274a4a42004-12-07 15:39:31 +0000657static int
paul718e3742002-12-13 20:15:29 +0000658config_write_host (struct vty *vty)
659{
660 if (host.name)
661 vty_out (vty, "hostname %s%s", host.name, VTY_NEWLINE);
662
663 if (host.encrypt)
664 {
665 if (host.password_encrypt)
666 vty_out (vty, "password 8 %s%s", host.password_encrypt, VTY_NEWLINE);
667 if (host.enable_encrypt)
668 vty_out (vty, "enable password 8 %s%s", host.enable_encrypt, VTY_NEWLINE);
669 }
670 else
671 {
672 if (host.password)
673 vty_out (vty, "password %s%s", host.password, VTY_NEWLINE);
674 if (host.enable)
675 vty_out (vty, "enable password %s%s", host.enable, VTY_NEWLINE);
676 }
677
ajs274a4a42004-12-07 15:39:31 +0000678 if (zlog_default->default_lvl != LOG_DEBUG)
ajs82146b82004-12-07 17:15:55 +0000679 {
680 vty_out (vty, "! N.B. The 'log trap' command is deprecated.%s",
681 VTY_NEWLINE);
682 vty_out (vty, "log trap %s%s",
683 zlog_priority[zlog_default->default_lvl], VTY_NEWLINE);
684 }
paul718e3742002-12-13 20:15:29 +0000685
ajs274a4a42004-12-07 15:39:31 +0000686 if (host.logfile && (zlog_default->maxlvl[ZLOG_DEST_FILE] != ZLOG_DISABLED))
paul12ab19f2003-07-26 06:14:55 +0000687 {
ajs274a4a42004-12-07 15:39:31 +0000688 vty_out (vty, "log file %s", host.logfile);
689 if (zlog_default->maxlvl[ZLOG_DEST_FILE] != zlog_default->default_lvl)
690 vty_out (vty, " %s",
691 zlog_priority[zlog_default->maxlvl[ZLOG_DEST_FILE]]);
paul12ab19f2003-07-26 06:14:55 +0000692 vty_out (vty, "%s", VTY_NEWLINE);
693 }
ajs274a4a42004-12-07 15:39:31 +0000694
695 if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != ZLOG_DISABLED)
696 {
697 vty_out (vty, "log stdout");
698 if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != zlog_default->default_lvl)
699 vty_out (vty, " %s",
700 zlog_priority[zlog_default->maxlvl[ZLOG_DEST_STDOUT]]);
701 vty_out (vty, "%s", VTY_NEWLINE);
702 }
703
704 if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
705 vty_out(vty,"no log monitor%s",VTY_NEWLINE);
706 else if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] != zlog_default->default_lvl)
707 vty_out(vty,"log monitor %s%s",
708 zlog_priority[zlog_default->maxlvl[ZLOG_DEST_MONITOR]],VTY_NEWLINE);
709
710 if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != ZLOG_DISABLED)
711 {
712 vty_out (vty, "log syslog");
713 if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != zlog_default->default_lvl)
714 vty_out (vty, " %s",
715 zlog_priority[zlog_default->maxlvl[ZLOG_DEST_SYSLOG]]);
716 vty_out (vty, "%s", VTY_NEWLINE);
717 }
718
719 if (zlog_default->facility != LOG_DAEMON)
720 vty_out (vty, "log facility %s%s",
721 facility_name(zlog_default->facility), VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +0000722
723 if (zlog_default->record_priority == 1)
724 vty_out (vty, "log record-priority%s", VTY_NEWLINE);
725
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +0000726 if (zlog_default->timestamp_precision > 0)
727 vty_out (vty, "log timestamp precision %d%s",
728 zlog_default->timestamp_precision, VTY_NEWLINE);
729
paul718e3742002-12-13 20:15:29 +0000730 if (host.advanced)
731 vty_out (vty, "service advanced-vty%s", VTY_NEWLINE);
732
733 if (host.encrypt)
734 vty_out (vty, "service password-encryption%s", VTY_NEWLINE);
735
736 if (host.lines >= 0)
737 vty_out (vty, "service terminal-length %d%s", host.lines,
738 VTY_NEWLINE);
739
paul3b0c5d92005-03-08 10:43:43 +0000740 if (host.motdfile)
741 vty_out (vty, "banner motd file %s%s", host.motdfile, VTY_NEWLINE);
742 else if (! host.motd)
paul718e3742002-12-13 20:15:29 +0000743 vty_out (vty, "no banner motd%s", VTY_NEWLINE);
744
745 return 1;
746}
747
748/* Utility function for getting command vector. */
ajs274a4a42004-12-07 15:39:31 +0000749static vector
paul718e3742002-12-13 20:15:29 +0000750cmd_node_vector (vector v, enum node_type ntype)
751{
752 struct cmd_node *cnode = vector_slot (v, ntype);
753 return cnode->cmd_vector;
754}
755
ajs274a4a42004-12-07 15:39:31 +0000756#if 0
757/* Filter command vector by symbol. This function is not actually used;
758 * should it be deleted? */
759static int
paul718e3742002-12-13 20:15:29 +0000760cmd_filter_by_symbol (char *command, char *symbol)
761{
762 int i, lim;
763
764 if (strcmp (symbol, "IPV4_ADDRESS") == 0)
765 {
766 i = 0;
767 lim = strlen (command);
768 while (i < lim)
769 {
770 if (! (isdigit ((int) command[i]) || command[i] == '.' || command[i] == '/'))
771 return 1;
772 i++;
773 }
774 return 0;
775 }
776 if (strcmp (symbol, "STRING") == 0)
777 {
778 i = 0;
779 lim = strlen (command);
780 while (i < lim)
781 {
782 if (! (isalpha ((int) command[i]) || command[i] == '_' || command[i] == '-'))
783 return 1;
784 i++;
785 }
786 return 0;
787 }
788 if (strcmp (symbol, "IFNAME") == 0)
789 {
790 i = 0;
791 lim = strlen (command);
792 while (i < lim)
793 {
794 if (! isalnum ((int) command[i]))
795 return 1;
796 i++;
797 }
798 return 0;
799 }
800 return 0;
801}
ajs274a4a42004-12-07 15:39:31 +0000802#endif
paul718e3742002-12-13 20:15:29 +0000803
804/* Completion match types. */
805enum match_type
806{
807 no_match,
808 extend_match,
809 ipv4_prefix_match,
810 ipv4_match,
811 ipv6_prefix_match,
812 ipv6_match,
813 range_match,
814 vararg_match,
815 partly_match,
816 exact_match
817};
818
ajs274a4a42004-12-07 15:39:31 +0000819static enum match_type
hasso8c328f12004-10-05 21:01:23 +0000820cmd_ipv4_match (const char *str)
paul718e3742002-12-13 20:15:29 +0000821{
hasso8c328f12004-10-05 21:01:23 +0000822 const char *sp;
paul718e3742002-12-13 20:15:29 +0000823 int dots = 0, nums = 0;
824 char buf[4];
825
826 if (str == NULL)
827 return partly_match;
828
829 for (;;)
830 {
831 memset (buf, 0, sizeof (buf));
832 sp = str;
833 while (*str != '\0')
834 {
835 if (*str == '.')
836 {
837 if (dots >= 3)
838 return no_match;
839
840 if (*(str + 1) == '.')
841 return no_match;
842
843 if (*(str + 1) == '\0')
844 return partly_match;
845
846 dots++;
847 break;
848 }
849 if (!isdigit ((int) *str))
850 return no_match;
851
852 str++;
853 }
854
855 if (str - sp > 3)
856 return no_match;
857
858 strncpy (buf, sp, str - sp);
859 if (atoi (buf) > 255)
860 return no_match;
861
862 nums++;
863
864 if (*str == '\0')
865 break;
866
867 str++;
868 }
869
870 if (nums < 4)
871 return partly_match;
872
873 return exact_match;
874}
875
ajs274a4a42004-12-07 15:39:31 +0000876static enum match_type
hasso8c328f12004-10-05 21:01:23 +0000877cmd_ipv4_prefix_match (const char *str)
paul718e3742002-12-13 20:15:29 +0000878{
hasso8c328f12004-10-05 21:01:23 +0000879 const char *sp;
paul718e3742002-12-13 20:15:29 +0000880 int dots = 0;
881 char buf[4];
882
883 if (str == NULL)
884 return partly_match;
885
886 for (;;)
887 {
888 memset (buf, 0, sizeof (buf));
889 sp = str;
890 while (*str != '\0' && *str != '/')
891 {
892 if (*str == '.')
893 {
894 if (dots == 3)
895 return no_match;
896
897 if (*(str + 1) == '.' || *(str + 1) == '/')
898 return no_match;
899
900 if (*(str + 1) == '\0')
901 return partly_match;
902
903 dots++;
904 break;
905 }
906
907 if (!isdigit ((int) *str))
908 return no_match;
909
910 str++;
911 }
912
913 if (str - sp > 3)
914 return no_match;
915
916 strncpy (buf, sp, str - sp);
917 if (atoi (buf) > 255)
918 return no_match;
919
920 if (dots == 3)
921 {
922 if (*str == '/')
923 {
924 if (*(str + 1) == '\0')
925 return partly_match;
926
927 str++;
928 break;
929 }
930 else if (*str == '\0')
931 return partly_match;
932 }
933
934 if (*str == '\0')
935 return partly_match;
936
937 str++;
938 }
939
940 sp = str;
941 while (*str != '\0')
942 {
943 if (!isdigit ((int) *str))
944 return no_match;
945
946 str++;
947 }
948
949 if (atoi (sp) > 32)
950 return no_match;
951
952 return exact_match;
953}
954
955#define IPV6_ADDR_STR "0123456789abcdefABCDEF:.%"
956#define IPV6_PREFIX_STR "0123456789abcdefABCDEF:.%/"
957#define STATE_START 1
958#define STATE_COLON 2
959#define STATE_DOUBLE 3
960#define STATE_ADDR 4
961#define STATE_DOT 5
962#define STATE_SLASH 6
963#define STATE_MASK 7
964
paul22e0a9e2003-07-11 17:55:46 +0000965#ifdef HAVE_IPV6
966
ajs274a4a42004-12-07 15:39:31 +0000967static enum match_type
hasso8c328f12004-10-05 21:01:23 +0000968cmd_ipv6_match (const char *str)
paul718e3742002-12-13 20:15:29 +0000969{
hasso726f9b22003-05-25 21:04:54 +0000970 struct sockaddr_in6 sin6_dummy;
971 int ret;
paul718e3742002-12-13 20:15:29 +0000972
973 if (str == NULL)
974 return partly_match;
975
976 if (strspn (str, IPV6_ADDR_STR) != strlen (str))
977 return no_match;
978
hasso726f9b22003-05-25 21:04:54 +0000979 /* use inet_pton that has a better support,
980 * for example inet_pton can support the automatic addresses:
981 * ::1.2.3.4
982 */
983 ret = inet_pton(AF_INET6, str, &sin6_dummy.sin6_addr);
984
985 if (ret == 1)
986 return exact_match;
987
Roman Hoog Antink7c9c6ae2012-05-09 06:35:34 +0000988 return no_match;
paul718e3742002-12-13 20:15:29 +0000989}
990
ajs274a4a42004-12-07 15:39:31 +0000991static enum match_type
hasso8c328f12004-10-05 21:01:23 +0000992cmd_ipv6_prefix_match (const char *str)
paul718e3742002-12-13 20:15:29 +0000993{
994 int state = STATE_START;
995 int colons = 0, nums = 0, double_colon = 0;
996 int mask;
hasso8c328f12004-10-05 21:01:23 +0000997 const char *sp = NULL;
paul718e3742002-12-13 20:15:29 +0000998 char *endptr = NULL;
999
1000 if (str == NULL)
1001 return partly_match;
1002
1003 if (strspn (str, IPV6_PREFIX_STR) != strlen (str))
1004 return no_match;
1005
1006 while (*str != '\0' && state != STATE_MASK)
1007 {
1008 switch (state)
1009 {
1010 case STATE_START:
1011 if (*str == ':')
1012 {
1013 if (*(str + 1) != ':' && *(str + 1) != '\0')
1014 return no_match;
1015 colons--;
1016 state = STATE_COLON;
1017 }
1018 else
1019 {
1020 sp = str;
1021 state = STATE_ADDR;
1022 }
1023
1024 continue;
1025 case STATE_COLON:
1026 colons++;
1027 if (*(str + 1) == '/')
1028 return no_match;
1029 else if (*(str + 1) == ':')
1030 state = STATE_DOUBLE;
1031 else
1032 {
1033 sp = str + 1;
1034 state = STATE_ADDR;
1035 }
1036 break;
1037 case STATE_DOUBLE:
1038 if (double_colon)
1039 return no_match;
1040
1041 if (*(str + 1) == ':')
1042 return no_match;
1043 else
1044 {
1045 if (*(str + 1) != '\0' && *(str + 1) != '/')
1046 colons++;
1047 sp = str + 1;
1048
1049 if (*(str + 1) == '/')
1050 state = STATE_SLASH;
1051 else
1052 state = STATE_ADDR;
1053 }
1054
1055 double_colon++;
1056 nums += 1;
1057 break;
1058 case STATE_ADDR:
1059 if (*(str + 1) == ':' || *(str + 1) == '.'
1060 || *(str + 1) == '\0' || *(str + 1) == '/')
1061 {
1062 if (str - sp > 3)
1063 return no_match;
1064
1065 for (; sp <= str; sp++)
1066 if (*sp == '/')
1067 return no_match;
1068
1069 nums++;
1070
1071 if (*(str + 1) == ':')
1072 state = STATE_COLON;
1073 else if (*(str + 1) == '.')
David Lamparteraa5cf242012-07-19 16:11:50 +02001074 {
1075 if (colons || double_colon)
1076 state = STATE_DOT;
1077 else
1078 return no_match;
1079 }
paul718e3742002-12-13 20:15:29 +00001080 else if (*(str + 1) == '/')
1081 state = STATE_SLASH;
1082 }
1083 break;
1084 case STATE_DOT:
1085 state = STATE_ADDR;
1086 break;
1087 case STATE_SLASH:
1088 if (*(str + 1) == '\0')
1089 return partly_match;
1090
1091 state = STATE_MASK;
1092 break;
1093 default:
1094 break;
1095 }
1096
1097 if (nums > 11)
1098 return no_match;
1099
1100 if (colons > 7)
1101 return no_match;
1102
1103 str++;
1104 }
1105
1106 if (state < STATE_MASK)
1107 return partly_match;
1108
1109 mask = strtol (str, &endptr, 10);
1110 if (*endptr != '\0')
1111 return no_match;
1112
1113 if (mask < 0 || mask > 128)
1114 return no_match;
1115
1116/* I don't know why mask < 13 makes command match partly.
1117 Forgive me to make this comments. I Want to set static default route
1118 because of lack of function to originate default in ospf6d; sorry
1119 yasu
1120 if (mask < 13)
1121 return partly_match;
1122*/
1123
1124 return exact_match;
1125}
1126
paul22e0a9e2003-07-11 17:55:46 +00001127#endif /* HAVE_IPV6 */
1128
paul718e3742002-12-13 20:15:29 +00001129#define DECIMAL_STRLEN_MAX 10
1130
ajs274a4a42004-12-07 15:39:31 +00001131static int
hasso8c328f12004-10-05 21:01:23 +00001132cmd_range_match (const char *range, const char *str)
paul718e3742002-12-13 20:15:29 +00001133{
1134 char *p;
1135 char buf[DECIMAL_STRLEN_MAX + 1];
1136 char *endptr = NULL;
1137 unsigned long min, max, val;
1138
1139 if (str == NULL)
1140 return 1;
1141
1142 val = strtoul (str, &endptr, 10);
1143 if (*endptr != '\0')
1144 return 0;
1145
1146 range++;
1147 p = strchr (range, '-');
1148 if (p == NULL)
1149 return 0;
1150 if (p - range > DECIMAL_STRLEN_MAX)
1151 return 0;
1152 strncpy (buf, range, p - range);
1153 buf[p - range] = '\0';
1154 min = strtoul (buf, &endptr, 10);
1155 if (*endptr != '\0')
1156 return 0;
1157
1158 range = p + 1;
1159 p = strchr (range, '>');
1160 if (p == NULL)
1161 return 0;
1162 if (p - range > DECIMAL_STRLEN_MAX)
1163 return 0;
1164 strncpy (buf, range, p - range);
1165 buf[p - range] = '\0';
1166 max = strtoul (buf, &endptr, 10);
1167 if (*endptr != '\0')
1168 return 0;
1169
1170 if (val < min || val > max)
1171 return 0;
1172
1173 return 1;
1174}
1175
ajs274a4a42004-12-07 15:39:31 +00001176static enum match_type
Christian Frankecd40b322013-09-30 12:27:51 +00001177cmd_word_match(struct cmd_token *token,
1178 enum filter_type filter,
1179 const char *word)
paul718e3742002-12-13 20:15:29 +00001180{
hasso8c328f12004-10-05 21:01:23 +00001181 const char *str;
paul718e3742002-12-13 20:15:29 +00001182 enum match_type match_type;
paul909a2152005-03-14 17:41:45 +00001183
Christian Frankecd40b322013-09-30 12:27:51 +00001184 str = token->cmd;
paul718e3742002-12-13 20:15:29 +00001185
Christian Frankecd40b322013-09-30 12:27:51 +00001186 if (filter == FILTER_RELAXED)
1187 if (!word || !strlen(word))
1188 return partly_match;
paul718e3742002-12-13 20:15:29 +00001189
Christian Frankecd40b322013-09-30 12:27:51 +00001190 if (!word)
1191 return no_match;
paul909a2152005-03-14 17:41:45 +00001192
David Lamparter10bac802015-05-05 11:10:20 +02001193 switch (token->terminal)
Christian Frankecd40b322013-09-30 12:27:51 +00001194 {
David Lamparter10bac802015-05-05 11:10:20 +02001195 case TERMINAL_VARARG:
1196 return vararg_match;
1197
1198 case TERMINAL_RANGE:
1199 if (cmd_range_match(str, word))
1200 return range_match;
1201 break;
1202
1203 case TERMINAL_IPV6:
1204 match_type = cmd_ipv6_match(word);
1205 if ((filter == FILTER_RELAXED && match_type != no_match)
Christian Frankecd40b322013-09-30 12:27:51 +00001206 || (filter == FILTER_STRICT && match_type == exact_match))
David Lamparter10bac802015-05-05 11:10:20 +02001207 return ipv6_match;
1208 break;
1209
1210 case TERMINAL_IPV6_PREFIX:
1211 match_type = cmd_ipv6_prefix_match(word);
1212 if ((filter == FILTER_RELAXED && match_type != no_match)
1213 || (filter == FILTER_STRICT && match_type == exact_match))
1214 return ipv6_prefix_match;
1215 break;
1216
1217 case TERMINAL_IPV4:
1218 match_type = cmd_ipv4_match(word);
1219 if ((filter == FILTER_RELAXED && match_type != no_match)
1220 || (filter == FILTER_STRICT && match_type == exact_match))
1221 return ipv4_match;
1222 break;
1223
1224 case TERMINAL_IPV4_PREFIX:
1225 match_type = cmd_ipv4_prefix_match(word);
1226 if ((filter == FILTER_RELAXED && match_type != no_match)
1227 || (filter == FILTER_STRICT && match_type == exact_match))
1228 return ipv4_prefix_match;
1229 break;
1230
1231 case TERMINAL_OPTION:
1232 case TERMINAL_VARIABLE:
1233 return extend_match;
1234
1235 case TERMINAL_LITERAL:
1236 if (filter == FILTER_RELAXED && !strncmp(str, word, strlen(word)))
1237 {
1238 if (!strcmp(str, word))
1239 return exact_match;
1240 return partly_match;
1241 }
1242 if (filter == FILTER_STRICT && !strcmp(str, word))
1243 return exact_match;
1244 break;
1245
1246 default:
1247 assert (0);
Christian Frankecd40b322013-09-30 12:27:51 +00001248 }
paul718e3742002-12-13 20:15:29 +00001249
Christian Frankecd40b322013-09-30 12:27:51 +00001250 return no_match;
paul718e3742002-12-13 20:15:29 +00001251}
1252
Christian Frankecd40b322013-09-30 12:27:51 +00001253struct cmd_matcher
1254{
1255 struct cmd_element *cmd; /* The command element the matcher is using */
1256 enum filter_type filter; /* Whether to use strict or relaxed matching */
1257 vector vline; /* The tokenized commandline which is to be matched */
1258 unsigned int index; /* The index up to which matching should be done */
1259
1260 /* If set, construct a list of matches at the position given by index */
1261 enum match_type *match_type;
1262 vector *match;
1263
1264 unsigned int word_index; /* iterating over vline */
1265};
1266
1267static int
1268push_argument(int *argc, const char **argv, const char *arg)
1269{
1270 if (!arg || !strlen(arg))
1271 arg = NULL;
1272
1273 if (!argc || !argv)
1274 return 0;
1275
1276 if (*argc >= CMD_ARGC_MAX)
1277 return -1;
1278
1279 argv[(*argc)++] = arg;
1280 return 0;
1281}
1282
1283static void
1284cmd_matcher_record_match(struct cmd_matcher *matcher,
1285 enum match_type match_type,
1286 struct cmd_token *token)
1287{
1288 if (matcher->word_index != matcher->index)
1289 return;
1290
1291 if (matcher->match)
1292 {
1293 if (!*matcher->match)
1294 *matcher->match = vector_init(VECTOR_MIN_SIZE);
1295 vector_set(*matcher->match, token);
1296 }
1297
1298 if (matcher->match_type)
1299 {
1300 if (match_type > *matcher->match_type)
1301 *matcher->match_type = match_type;
1302 }
1303}
1304
1305static int
1306cmd_matcher_words_left(struct cmd_matcher *matcher)
1307{
1308 return matcher->word_index < vector_active(matcher->vline);
1309}
1310
1311static const char*
1312cmd_matcher_get_word(struct cmd_matcher *matcher)
1313{
1314 assert(cmd_matcher_words_left(matcher));
1315
1316 return vector_slot(matcher->vline, matcher->word_index);
1317}
1318
1319static enum matcher_rv
1320cmd_matcher_match_terminal(struct cmd_matcher *matcher,
1321 struct cmd_token *token,
1322 int *argc, const char **argv)
1323{
1324 const char *word;
1325 enum match_type word_match;
1326
1327 assert(token->type == TOKEN_TERMINAL);
1328
1329 if (!cmd_matcher_words_left(matcher))
1330 {
David Lamparter10bac802015-05-05 11:10:20 +02001331 if (token->terminal == TERMINAL_OPTION)
Christian Frankecd40b322013-09-30 12:27:51 +00001332 return MATCHER_OK; /* missing optional args are NOT pushed as NULL */
1333 else
1334 return MATCHER_INCOMPLETE;
1335 }
1336
1337 word = cmd_matcher_get_word(matcher);
1338 word_match = cmd_word_match(token, matcher->filter, word);
1339 if (word_match == no_match)
1340 return MATCHER_NO_MATCH;
1341
1342 /* We have to record the input word as argument if it matched
1343 * against a variable. */
David Lamparter14162932015-05-12 17:18:04 +02001344 if (TERMINAL_RECORD (token->terminal))
Christian Frankecd40b322013-09-30 12:27:51 +00001345 {
1346 if (push_argument(argc, argv, word))
1347 return MATCHER_EXCEED_ARGC_MAX;
1348 }
1349
1350 cmd_matcher_record_match(matcher, word_match, token);
1351
1352 matcher->word_index++;
1353
1354 /* A vararg token should consume all left over words as arguments */
David Lamparter10bac802015-05-05 11:10:20 +02001355 if (token->terminal == TERMINAL_VARARG)
Christian Frankecd40b322013-09-30 12:27:51 +00001356 while (cmd_matcher_words_left(matcher))
1357 {
1358 word = cmd_matcher_get_word(matcher);
1359 if (word && strlen(word))
1360 push_argument(argc, argv, word);
1361 matcher->word_index++;
1362 }
1363
1364 return MATCHER_OK;
1365}
1366
1367static enum matcher_rv
1368cmd_matcher_match_multiple(struct cmd_matcher *matcher,
1369 struct cmd_token *token,
1370 int *argc, const char **argv)
1371{
1372 enum match_type multiple_match;
1373 unsigned int multiple_index;
1374 const char *word;
David Lamparterab90fc02015-03-03 09:07:25 +01001375 const char *arg = NULL;
Christian Frankecd40b322013-09-30 12:27:51 +00001376 struct cmd_token *word_token;
1377 enum match_type word_match;
1378
1379 assert(token->type == TOKEN_MULTIPLE);
1380
1381 multiple_match = no_match;
1382
1383 if (!cmd_matcher_words_left(matcher))
1384 return MATCHER_INCOMPLETE;
1385
1386 word = cmd_matcher_get_word(matcher);
1387 for (multiple_index = 0;
1388 multiple_index < vector_active(token->multiple);
1389 multiple_index++)
1390 {
1391 word_token = vector_slot(token->multiple, multiple_index);
1392
1393 word_match = cmd_word_match(word_token, matcher->filter, word);
1394 if (word_match == no_match)
1395 continue;
1396
1397 cmd_matcher_record_match(matcher, word_match, word_token);
1398
1399 if (word_match > multiple_match)
1400 {
1401 multiple_match = word_match;
1402 arg = word;
1403 }
1404 /* To mimic the behavior of the old command implementation, we
1405 * tolerate any ambiguities here :/ */
1406 }
1407
1408 matcher->word_index++;
1409
1410 if (multiple_match == no_match)
1411 return MATCHER_NO_MATCH;
1412
1413 if (push_argument(argc, argv, arg))
1414 return MATCHER_EXCEED_ARGC_MAX;
1415
1416 return MATCHER_OK;
1417}
1418
1419static enum matcher_rv
1420cmd_matcher_read_keywords(struct cmd_matcher *matcher,
1421 struct cmd_token *token,
1422 vector args_vector)
paul718e3742002-12-13 20:15:29 +00001423{
hasso8c328f12004-10-05 21:01:23 +00001424 unsigned int i;
Christian Frankecd40b322013-09-30 12:27:51 +00001425 unsigned long keyword_mask;
1426 unsigned int keyword_found;
1427 enum match_type keyword_match;
1428 enum match_type word_match;
1429 vector keyword_vector;
1430 struct cmd_token *word_token;
1431 const char *word;
1432 int keyword_argc;
1433 const char **keyword_argv;
Paul Jakma7aa9dce2014-09-19 14:42:23 +01001434 enum matcher_rv rv = MATCHER_NO_MATCH;
Christian Frankecd40b322013-09-30 12:27:51 +00001435
1436 keyword_mask = 0;
1437 while (1)
1438 {
1439 if (!cmd_matcher_words_left(matcher))
1440 return MATCHER_OK;
1441
1442 word = cmd_matcher_get_word(matcher);
1443
1444 keyword_found = -1;
1445 keyword_match = no_match;
1446 for (i = 0; i < vector_active(token->keyword); i++)
1447 {
1448 if (keyword_mask & (1 << i))
1449 continue;
1450
1451 keyword_vector = vector_slot(token->keyword, i);
1452 word_token = vector_slot(keyword_vector, 0);
1453
1454 word_match = cmd_word_match(word_token, matcher->filter, word);
1455 if (word_match == no_match)
1456 continue;
1457
1458 cmd_matcher_record_match(matcher, word_match, word_token);
1459
1460 if (word_match > keyword_match)
1461 {
1462 keyword_match = word_match;
1463 keyword_found = i;
1464 }
1465 else if (word_match == keyword_match)
1466 {
1467 if (matcher->word_index != matcher->index || args_vector)
1468 return MATCHER_AMBIGUOUS;
1469 }
1470 }
1471
1472 if (keyword_found == (unsigned int)-1)
1473 return MATCHER_NO_MATCH;
1474
1475 matcher->word_index++;
1476
1477 if (matcher->word_index > matcher->index)
1478 return MATCHER_OK;
1479
1480 keyword_mask |= (1 << keyword_found);
1481
1482 if (args_vector)
1483 {
1484 keyword_argc = 0;
1485 keyword_argv = XMALLOC(MTYPE_TMP, (CMD_ARGC_MAX + 1) * sizeof(char*));
1486 /* We use -1 as a marker for unused fields as NULL might be a valid value */
1487 for (i = 0; i < CMD_ARGC_MAX + 1; i++)
1488 keyword_argv[i] = (void*)-1;
1489 vector_set_index(args_vector, keyword_found, keyword_argv);
1490 }
1491 else
1492 {
1493 keyword_argv = NULL;
1494 }
1495
1496 keyword_vector = vector_slot(token->keyword, keyword_found);
1497 /* the keyword itself is at 0. We are only interested in the arguments,
1498 * so start counting at 1. */
1499 for (i = 1; i < vector_active(keyword_vector); i++)
1500 {
1501 word_token = vector_slot(keyword_vector, i);
1502
1503 switch (word_token->type)
1504 {
1505 case TOKEN_TERMINAL:
1506 rv = cmd_matcher_match_terminal(matcher, word_token,
1507 &keyword_argc, keyword_argv);
1508 break;
1509 case TOKEN_MULTIPLE:
1510 rv = cmd_matcher_match_multiple(matcher, word_token,
1511 &keyword_argc, keyword_argv);
1512 break;
1513 case TOKEN_KEYWORD:
1514 assert(!"Keywords should never be nested.");
1515 break;
1516 }
1517
1518 if (MATCHER_ERROR(rv))
1519 return rv;
1520
1521 if (matcher->word_index > matcher->index)
1522 return MATCHER_OK;
1523 }
1524 }
1525 /* not reached */
1526}
1527
1528static enum matcher_rv
1529cmd_matcher_build_keyword_args(struct cmd_matcher *matcher,
1530 struct cmd_token *token,
1531 int *argc, const char **argv,
1532 vector keyword_args_vector)
1533{
1534 unsigned int i, j;
1535 const char **keyword_args;
1536 vector keyword_vector;
1537 struct cmd_token *word_token;
1538 const char *arg;
1539 enum matcher_rv rv;
1540
1541 rv = MATCHER_OK;
1542
1543 if (keyword_args_vector == NULL)
1544 return rv;
1545
1546 for (i = 0; i < vector_active(token->keyword); i++)
1547 {
1548 keyword_vector = vector_slot(token->keyword, i);
1549 keyword_args = vector_lookup(keyword_args_vector, i);
1550
1551 if (vector_active(keyword_vector) == 1)
1552 {
1553 /* this is a keyword without arguments */
1554 if (keyword_args)
1555 {
1556 word_token = vector_slot(keyword_vector, 0);
1557 arg = word_token->cmd;
1558 }
1559 else
1560 {
1561 arg = NULL;
1562 }
1563
1564 if (push_argument(argc, argv, arg))
1565 rv = MATCHER_EXCEED_ARGC_MAX;
1566 }
1567 else
1568 {
1569 /* this is a keyword with arguments */
1570 if (keyword_args)
1571 {
1572 /* the keyword was present, so just fill in the arguments */
1573 for (j = 0; keyword_args[j] != (void*)-1; j++)
1574 if (push_argument(argc, argv, keyword_args[j]))
1575 rv = MATCHER_EXCEED_ARGC_MAX;
1576 XFREE(MTYPE_TMP, keyword_args);
1577 }
1578 else
1579 {
1580 /* the keyword was not present, insert NULL for the arguments
1581 * the keyword would have taken. */
1582 for (j = 1; j < vector_active(keyword_vector); j++)
1583 {
1584 word_token = vector_slot(keyword_vector, j);
1585 if ((word_token->type == TOKEN_TERMINAL
David Lamparter14162932015-05-12 17:18:04 +02001586 && TERMINAL_RECORD (word_token->terminal))
Christian Frankecd40b322013-09-30 12:27:51 +00001587 || word_token->type == TOKEN_MULTIPLE)
1588 {
1589 if (push_argument(argc, argv, NULL))
1590 rv = MATCHER_EXCEED_ARGC_MAX;
1591 }
1592 }
1593 }
1594 }
1595 }
1596 vector_free(keyword_args_vector);
1597 return rv;
1598}
1599
1600static enum matcher_rv
1601cmd_matcher_match_keyword(struct cmd_matcher *matcher,
1602 struct cmd_token *token,
1603 int *argc, const char **argv)
1604{
1605 vector keyword_args_vector;
1606 enum matcher_rv reader_rv;
1607 enum matcher_rv builder_rv;
1608
1609 assert(token->type == TOKEN_KEYWORD);
1610
1611 if (argc && argv)
1612 keyword_args_vector = vector_init(VECTOR_MIN_SIZE);
1613 else
1614 keyword_args_vector = NULL;
1615
1616 reader_rv = cmd_matcher_read_keywords(matcher, token, keyword_args_vector);
1617 builder_rv = cmd_matcher_build_keyword_args(matcher, token, argc,
1618 argv, keyword_args_vector);
1619 /* keyword_args_vector is consumed by cmd_matcher_build_keyword_args */
1620
1621 if (!MATCHER_ERROR(reader_rv) && MATCHER_ERROR(builder_rv))
1622 return builder_rv;
1623
1624 return reader_rv;
1625}
1626
1627static void
1628cmd_matcher_init(struct cmd_matcher *matcher,
1629 struct cmd_element *cmd,
1630 enum filter_type filter,
1631 vector vline,
1632 unsigned int index,
1633 enum match_type *match_type,
1634 vector *match)
1635{
1636 memset(matcher, 0, sizeof(*matcher));
1637
1638 matcher->cmd = cmd;
1639 matcher->filter = filter;
1640 matcher->vline = vline;
1641 matcher->index = index;
1642
1643 matcher->match_type = match_type;
1644 if (matcher->match_type)
1645 *matcher->match_type = no_match;
1646 matcher->match = match;
1647
1648 matcher->word_index = 0;
1649}
1650
1651static enum matcher_rv
1652cmd_element_match(struct cmd_element *cmd_element,
1653 enum filter_type filter,
1654 vector vline,
1655 unsigned int index,
1656 enum match_type *match_type,
1657 vector *match,
1658 int *argc,
1659 const char **argv)
1660{
1661 struct cmd_matcher matcher;
1662 unsigned int token_index;
Paul Jakma7aa9dce2014-09-19 14:42:23 +01001663 enum matcher_rv rv = MATCHER_NO_MATCH;
Christian Frankecd40b322013-09-30 12:27:51 +00001664
1665 cmd_matcher_init(&matcher, cmd_element, filter,
1666 vline, index, match_type, match);
1667
1668 if (argc != NULL)
1669 *argc = 0;
1670
1671 for (token_index = 0;
1672 token_index < vector_active(cmd_element->tokens);
1673 token_index++)
1674 {
1675 struct cmd_token *token = vector_slot(cmd_element->tokens, token_index);
1676
1677 switch (token->type)
1678 {
1679 case TOKEN_TERMINAL:
1680 rv = cmd_matcher_match_terminal(&matcher, token, argc, argv);
1681 break;
1682 case TOKEN_MULTIPLE:
1683 rv = cmd_matcher_match_multiple(&matcher, token, argc, argv);
1684 break;
1685 case TOKEN_KEYWORD:
1686 rv = cmd_matcher_match_keyword(&matcher, token, argc, argv);
1687 }
1688
1689 if (MATCHER_ERROR(rv))
1690 return rv;
1691
1692 if (matcher.word_index > index)
1693 return MATCHER_OK;
1694 }
1695
1696 /* return MATCHER_COMPLETE if all words were consumed */
1697 if (matcher.word_index >= vector_active(vline))
1698 return MATCHER_COMPLETE;
1699
1700 /* return MATCHER_COMPLETE also if only an empty word is left. */
1701 if (matcher.word_index == vector_active(vline) - 1
1702 && (!vector_slot(vline, matcher.word_index)
1703 || !strlen((char*)vector_slot(vline, matcher.word_index))))
1704 return MATCHER_COMPLETE;
1705
1706 return MATCHER_NO_MATCH; /* command is too long to match */
1707}
1708
1709/**
1710 * Filter a given vector of commands against a given commandline and
1711 * calculate possible completions.
1712 *
1713 * @param commands A vector of struct cmd_element*. Commands that don't
1714 * match against the given command line will be overwritten
1715 * with NULL in that vector.
1716 * @param filter Either FILTER_RELAXED or FILTER_STRICT. This basically
1717 * determines how incomplete commands are handled, compare with
1718 * cmd_word_match for details.
1719 * @param vline A vector of char* containing the tokenized commandline.
1720 * @param index Only match up to the given token of the commandline.
1721 * @param match_type Record the type of the best match here.
1722 * @param matches Record the matches here. For each cmd_element in the commands
1723 * vector, a match vector will be created in the matches vector.
1724 * That vector will contain all struct command_token* of the
1725 * cmd_element which matched against the given vline at the given
1726 * index.
1727 * @return A code specifying if an error occured. If all went right, it's
1728 * CMD_SUCCESS.
1729 */
1730static int
1731cmd_vector_filter(vector commands,
1732 enum filter_type filter,
1733 vector vline,
1734 unsigned int index,
1735 enum match_type *match_type,
1736 vector *matches)
1737{
1738 unsigned int i;
paul718e3742002-12-13 20:15:29 +00001739 struct cmd_element *cmd_element;
Christian Frankecd40b322013-09-30 12:27:51 +00001740 enum match_type best_match;
1741 enum match_type element_match;
1742 enum matcher_rv matcher_rv;
paul909a2152005-03-14 17:41:45 +00001743
Christian Frankecd40b322013-09-30 12:27:51 +00001744 best_match = no_match;
1745 *matches = vector_init(VECTOR_MIN_SIZE);
paul718e3742002-12-13 20:15:29 +00001746
Christian Frankecd40b322013-09-30 12:27:51 +00001747 for (i = 0; i < vector_active (commands); i++)
1748 if ((cmd_element = vector_slot (commands, i)) != NULL)
paul718e3742002-12-13 20:15:29 +00001749 {
Christian Frankecd40b322013-09-30 12:27:51 +00001750 vector_set_index(*matches, i, NULL);
1751 matcher_rv = cmd_element_match(cmd_element, filter,
1752 vline, index,
1753 &element_match,
1754 (vector*)&vector_slot(*matches, i),
1755 NULL, NULL);
1756 if (MATCHER_ERROR(matcher_rv))
1757 {
1758 vector_slot(commands, i) = NULL;
1759 if (matcher_rv == MATCHER_AMBIGUOUS)
1760 return CMD_ERR_AMBIGUOUS;
1761 if (matcher_rv == MATCHER_EXCEED_ARGC_MAX)
1762 return CMD_ERR_EXEED_ARGC_MAX;
1763 }
1764 else if (element_match > best_match)
1765 {
1766 best_match = element_match;
1767 }
paul718e3742002-12-13 20:15:29 +00001768 }
Christian Frankecd40b322013-09-30 12:27:51 +00001769 *match_type = best_match;
1770 return CMD_SUCCESS;
1771}
1772
1773/**
1774 * Check whether a given commandline is complete if used for a specific
1775 * cmd_element.
1776 *
1777 * @param cmd_element A cmd_element against which the commandline should be
1778 * checked.
1779 * @param vline The tokenized commandline.
1780 * @return 1 if the given commandline is complete, 0 otherwise.
1781 */
1782static int
1783cmd_is_complete(struct cmd_element *cmd_element,
1784 vector vline)
1785{
1786 enum matcher_rv rv;
1787
1788 rv = cmd_element_match(cmd_element,
1789 FILTER_RELAXED,
1790 vline, -1,
1791 NULL, NULL,
1792 NULL, NULL);
1793 return (rv == MATCHER_COMPLETE);
1794}
1795
1796/**
1797 * Parse a given commandline and construct a list of arguments for the
1798 * given command_element.
1799 *
1800 * @param cmd_element The cmd_element for which we want to construct arguments.
1801 * @param vline The tokenized commandline.
1802 * @param argc Where to store the argument count.
1803 * @param argv Where to store the argument list. Should be at least
1804 * CMD_ARGC_MAX elements long.
1805 * @return CMD_SUCCESS if everything went alright, an error otherwise.
1806 */
1807static int
1808cmd_parse(struct cmd_element *cmd_element,
1809 vector vline,
1810 int *argc, const char **argv)
1811{
1812 enum matcher_rv rv = cmd_element_match(cmd_element,
1813 FILTER_RELAXED,
1814 vline, -1,
1815 NULL, NULL,
1816 argc, argv);
1817 switch (rv)
1818 {
1819 case MATCHER_COMPLETE:
1820 return CMD_SUCCESS;
1821
1822 case MATCHER_NO_MATCH:
1823 return CMD_ERR_NO_MATCH;
1824
1825 case MATCHER_AMBIGUOUS:
1826 return CMD_ERR_AMBIGUOUS;
1827
1828 case MATCHER_EXCEED_ARGC_MAX:
1829 return CMD_ERR_EXEED_ARGC_MAX;
1830
1831 default:
1832 return CMD_ERR_INCOMPLETE;
1833 }
paul718e3742002-12-13 20:15:29 +00001834}
1835
1836/* Check ambiguous match */
ajs274a4a42004-12-07 15:39:31 +00001837static int
Christian Frankecd40b322013-09-30 12:27:51 +00001838is_cmd_ambiguous (vector cmd_vector,
1839 const char *command,
1840 vector matches,
1841 enum match_type type)
paul718e3742002-12-13 20:15:29 +00001842{
hasso8c328f12004-10-05 21:01:23 +00001843 unsigned int i;
1844 unsigned int j;
1845 const char *str = NULL;
hasso8c328f12004-10-05 21:01:23 +00001846 const char *matched = NULL;
Christian Frankecd40b322013-09-30 12:27:51 +00001847 vector match_vector;
1848 struct cmd_token *cmd_token;
paul909a2152005-03-14 17:41:45 +00001849
Christian Frankecd40b322013-09-30 12:27:51 +00001850 if (command == NULL)
1851 command = "";
1852
1853 for (i = 0; i < vector_active (matches); i++)
1854 if ((match_vector = vector_slot (matches, i)) != NULL)
paul718e3742002-12-13 20:15:29 +00001855 {
1856 int match = 0;
1857
Christian Frankecd40b322013-09-30 12:27:51 +00001858 for (j = 0; j < vector_active (match_vector); j++)
1859 if ((cmd_token = vector_slot (match_vector, j)) != NULL)
paul909a2152005-03-14 17:41:45 +00001860 {
1861 enum match_type ret;
Christian Frankecd40b322013-09-30 12:27:51 +00001862
1863 assert(cmd_token->type == TOKEN_TERMINAL);
1864 if (cmd_token->type != TOKEN_TERMINAL)
1865 continue;
1866
1867 str = cmd_token->cmd;
paul718e3742002-12-13 20:15:29 +00001868
paul909a2152005-03-14 17:41:45 +00001869 switch (type)
1870 {
1871 case exact_match:
David Lamparter14162932015-05-12 17:18:04 +02001872 if (!TERMINAL_RECORD (cmd_token->terminal)
paul909a2152005-03-14 17:41:45 +00001873 && strcmp (command, str) == 0)
1874 match++;
1875 break;
1876 case partly_match:
David Lamparter14162932015-05-12 17:18:04 +02001877 if (!TERMINAL_RECORD (cmd_token->terminal)
paul909a2152005-03-14 17:41:45 +00001878 && strncmp (command, str, strlen (command)) == 0)
1879 {
1880 if (matched && strcmp (matched, str) != 0)
1881 return 1; /* There is ambiguous match. */
1882 else
1883 matched = str;
1884 match++;
1885 }
1886 break;
1887 case range_match:
1888 if (cmd_range_match (str, command))
1889 {
1890 if (matched && strcmp (matched, str) != 0)
1891 return 1;
1892 else
1893 matched = str;
1894 match++;
1895 }
1896 break;
1897#ifdef HAVE_IPV6
1898 case ipv6_match:
David Lamparter10bac802015-05-05 11:10:20 +02001899 if (cmd_token->terminal == TERMINAL_IPV6)
paul909a2152005-03-14 17:41:45 +00001900 match++;
1901 break;
1902 case ipv6_prefix_match:
1903 if ((ret = cmd_ipv6_prefix_match (command)) != no_match)
1904 {
1905 if (ret == partly_match)
1906 return 2; /* There is incomplete match. */
paul718e3742002-12-13 20:15:29 +00001907
paul909a2152005-03-14 17:41:45 +00001908 match++;
1909 }
1910 break;
1911#endif /* HAVE_IPV6 */
1912 case ipv4_match:
David Lamparter10bac802015-05-05 11:10:20 +02001913 if (cmd_token->terminal == TERMINAL_IPV4)
paul718e3742002-12-13 20:15:29 +00001914 match++;
paul909a2152005-03-14 17:41:45 +00001915 break;
1916 case ipv4_prefix_match:
1917 if ((ret = cmd_ipv4_prefix_match (command)) != no_match)
1918 {
1919 if (ret == partly_match)
1920 return 2; /* There is incomplete match. */
paul718e3742002-12-13 20:15:29 +00001921
paul909a2152005-03-14 17:41:45 +00001922 match++;
1923 }
1924 break;
1925 case extend_match:
David Lamparter14162932015-05-12 17:18:04 +02001926 if (TERMINAL_RECORD (cmd_token->terminal))
paul718e3742002-12-13 20:15:29 +00001927 match++;
paul909a2152005-03-14 17:41:45 +00001928 break;
1929 case no_match:
1930 default:
1931 break;
1932 }
1933 }
1934 if (!match)
Christian Frankecd40b322013-09-30 12:27:51 +00001935 vector_slot (cmd_vector, i) = NULL;
paul718e3742002-12-13 20:15:29 +00001936 }
1937 return 0;
1938}
1939
1940/* If src matches dst return dst string, otherwise return NULL */
ajs274a4a42004-12-07 15:39:31 +00001941static const char *
David Lamparter10bac802015-05-05 11:10:20 +02001942cmd_entry_function (const char *src, struct cmd_token *token)
paul718e3742002-12-13 20:15:29 +00001943{
David Lamparter10bac802015-05-05 11:10:20 +02001944 const char *dst = token->cmd;
1945
paul718e3742002-12-13 20:15:29 +00001946 /* Skip variable arguments. */
David Lamparter14162932015-05-12 17:18:04 +02001947 if (TERMINAL_RECORD (token->terminal))
1948 return NULL;
paul718e3742002-12-13 20:15:29 +00001949
1950 /* In case of 'command \t', given src is NULL string. */
1951 if (src == NULL)
1952 return dst;
1953
1954 /* Matched with input string. */
1955 if (strncmp (src, dst, strlen (src)) == 0)
1956 return dst;
1957
1958 return NULL;
1959}
1960
1961/* If src matches dst return dst string, otherwise return NULL */
1962/* This version will return the dst string always if it is
1963 CMD_VARIABLE for '?' key processing */
ajs274a4a42004-12-07 15:39:31 +00001964static const char *
David Lamparter10bac802015-05-05 11:10:20 +02001965cmd_entry_function_desc (const char *src, struct cmd_token *token)
paul718e3742002-12-13 20:15:29 +00001966{
David Lamparter10bac802015-05-05 11:10:20 +02001967 const char *dst = token->cmd;
paul718e3742002-12-13 20:15:29 +00001968
David Lamparter10bac802015-05-05 11:10:20 +02001969 switch (token->terminal)
paul718e3742002-12-13 20:15:29 +00001970 {
David Lamparter10bac802015-05-05 11:10:20 +02001971 case TERMINAL_VARARG:
1972 return dst;
1973
1974 case TERMINAL_RANGE:
1975 if (cmd_range_match (dst, src))
1976 return dst;
1977 else
1978 return NULL;
1979
1980 case TERMINAL_IPV6:
1981 if (cmd_ipv6_match (src))
1982 return dst;
1983 else
1984 return NULL;
1985
1986 case TERMINAL_IPV6_PREFIX:
1987 if (cmd_ipv6_prefix_match (src))
1988 return dst;
1989 else
1990 return NULL;
1991
1992 case TERMINAL_IPV4:
1993 if (cmd_ipv4_match (src))
1994 return dst;
1995 else
1996 return NULL;
1997
1998 case TERMINAL_IPV4_PREFIX:
1999 if (cmd_ipv4_prefix_match (src))
2000 return dst;
2001 else
2002 return NULL;
2003
2004 /* Optional or variable commands always match on '?' */
2005 case TERMINAL_OPTION:
2006 case TERMINAL_VARIABLE:
2007 return dst;
2008
2009 case TERMINAL_LITERAL:
2010 /* In case of 'command \t', given src is NULL string. */
2011 if (src == NULL)
2012 return dst;
2013
2014 if (strncmp (src, dst, strlen (src)) == 0)
2015 return dst;
2016 else
2017 return NULL;
2018
2019 default:
2020 assert(0);
David Lamparterf1fc3272015-05-13 12:44:50 +02002021 return NULL;
paul718e3742002-12-13 20:15:29 +00002022 }
paul718e3742002-12-13 20:15:29 +00002023}
2024
Christian Frankecd40b322013-09-30 12:27:51 +00002025/**
2026 * Check whether a string is already present in a vector of strings.
2027 * @param v A vector of char*.
2028 * @param str A char*.
2029 * @return 0 if str is already present in the vector, 1 otherwise.
2030 */
ajs274a4a42004-12-07 15:39:31 +00002031static int
hasso8c328f12004-10-05 21:01:23 +00002032cmd_unique_string (vector v, const char *str)
paul718e3742002-12-13 20:15:29 +00002033{
hasso8c328f12004-10-05 21:01:23 +00002034 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002035 char *match;
2036
paul55468c82005-03-14 20:19:01 +00002037 for (i = 0; i < vector_active (v); i++)
paul718e3742002-12-13 20:15:29 +00002038 if ((match = vector_slot (v, i)) != NULL)
2039 if (strcmp (match, str) == 0)
2040 return 0;
2041 return 1;
2042}
2043
Christian Frankecd40b322013-09-30 12:27:51 +00002044/**
2045 * Check whether a struct cmd_token matching a given string is already
2046 * present in a vector of struct cmd_token.
2047 * @param v A vector of struct cmd_token*.
2048 * @param str A char* which should be searched for.
2049 * @return 0 if there is a struct cmd_token* with its cmd matching str,
2050 * 1 otherwise.
2051 */
ajs274a4a42004-12-07 15:39:31 +00002052static int
hasso8c328f12004-10-05 21:01:23 +00002053desc_unique_string (vector v, const char *str)
paul718e3742002-12-13 20:15:29 +00002054{
hasso8c328f12004-10-05 21:01:23 +00002055 unsigned int i;
Christian Frankecd40b322013-09-30 12:27:51 +00002056 struct cmd_token *token;
paul718e3742002-12-13 20:15:29 +00002057
paul55468c82005-03-14 20:19:01 +00002058 for (i = 0; i < vector_active (v); i++)
Christian Frankecd40b322013-09-30 12:27:51 +00002059 if ((token = vector_slot (v, i)) != NULL)
2060 if (strcmp (token->cmd, str) == 0)
2061 return 0;
2062 return 1;
paul718e3742002-12-13 20:15:29 +00002063}
2064
ajs274a4a42004-12-07 15:39:31 +00002065static int
paulb92938a2002-12-13 21:20:42 +00002066cmd_try_do_shortcut (enum node_type node, char* first_word) {
2067 if ( first_word != NULL &&
2068 node != AUTH_NODE &&
2069 node != VIEW_NODE &&
2070 node != AUTH_ENABLE_NODE &&
2071 node != ENABLE_NODE &&
Paul Jakma62687ff2008-08-23 14:27:06 +01002072 node != RESTRICTED_NODE &&
paulb92938a2002-12-13 21:20:42 +00002073 0 == strcmp( "do", first_word ) )
2074 return 1;
2075 return 0;
2076}
2077
Christian Frankecd40b322013-09-30 12:27:51 +00002078static void
2079cmd_matches_free(vector *matches)
2080{
2081 unsigned int i;
2082 vector cmd_matches;
2083
2084 for (i = 0; i < vector_active(*matches); i++)
2085 if ((cmd_matches = vector_slot(*matches, i)) != NULL)
2086 vector_free(cmd_matches);
2087 vector_free(*matches);
2088 *matches = NULL;
2089}
2090
2091static int
2092cmd_describe_cmp(const void *a, const void *b)
2093{
2094 const struct cmd_token *first = *(struct cmd_token * const *)a;
2095 const struct cmd_token *second = *(struct cmd_token * const *)b;
2096
2097 return strcmp(first->cmd, second->cmd);
2098}
2099
2100static void
2101cmd_describe_sort(vector matchvec)
2102{
2103 qsort(matchvec->index, vector_active(matchvec),
2104 sizeof(void*), cmd_describe_cmp);
2105}
2106
paul718e3742002-12-13 20:15:29 +00002107/* '?' describe command support. */
ajs274a4a42004-12-07 15:39:31 +00002108static vector
paulb92938a2002-12-13 21:20:42 +00002109cmd_describe_command_real (vector vline, struct vty *vty, int *status)
paul718e3742002-12-13 20:15:29 +00002110{
paulb8961472005-03-14 17:35:52 +00002111 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002112 vector cmd_vector;
2113#define INIT_MATCHVEC_SIZE 10
2114 vector matchvec;
2115 struct cmd_element *cmd_element;
paulb8961472005-03-14 17:35:52 +00002116 unsigned int index;
paul54aba542003-08-21 20:28:24 +00002117 int ret;
2118 enum match_type match;
2119 char *command;
Christian Frankecd40b322013-09-30 12:27:51 +00002120 vector matches = NULL;
2121 vector match_vector;
Donald Sharpf7332802015-07-17 22:36:57 -04002122 uint32_t command_found = 0;
2123 const char *last_word;
paul718e3742002-12-13 20:15:29 +00002124
2125 /* Set index. */
paul55468c82005-03-14 20:19:01 +00002126 if (vector_active (vline) == 0)
paulb8961472005-03-14 17:35:52 +00002127 {
2128 *status = CMD_ERR_NO_MATCH;
2129 return NULL;
2130 }
Christian Frankecd40b322013-09-30 12:27:51 +00002131
2132 index = vector_active (vline) - 1;
2133
paul718e3742002-12-13 20:15:29 +00002134 /* Make copy vector of current node's command vector. */
2135 cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node));
2136
2137 /* Prepare match vector */
2138 matchvec = vector_init (INIT_MATCHVEC_SIZE);
2139
Christian Frankecd40b322013-09-30 12:27:51 +00002140 /* Filter commands and build a list how they could possibly continue. */
2141 for (i = 0; i <= index; i++)
2142 {
2143 command = vector_slot (vline, i);
paul718e3742002-12-13 20:15:29 +00002144
Christian Frankecd40b322013-09-30 12:27:51 +00002145 if (matches)
2146 cmd_matches_free(&matches);
paul718e3742002-12-13 20:15:29 +00002147
Christian Frankecd40b322013-09-30 12:27:51 +00002148 ret = cmd_vector_filter(cmd_vector,
2149 FILTER_RELAXED,
2150 vline, i,
2151 &match,
2152 &matches);
paul718e3742002-12-13 20:15:29 +00002153
Christian Frankecd40b322013-09-30 12:27:51 +00002154 if (ret != CMD_SUCCESS)
2155 {
2156 vector_free (cmd_vector);
2157 vector_free (matchvec);
2158 cmd_matches_free(&matches);
2159 *status = ret;
2160 return NULL;
2161 }
paul718e3742002-12-13 20:15:29 +00002162
Christian Frankecd40b322013-09-30 12:27:51 +00002163 /* The last match may well be ambigious, so break here */
2164 if (i == index)
2165 break;
paul718e3742002-12-13 20:15:29 +00002166
Christian Frankecd40b322013-09-30 12:27:51 +00002167 if (match == vararg_match)
2168 {
2169 /* We found a vararg match - so we can throw out the current matches here
2170 * and don't need to continue checking the command input */
2171 unsigned int j, k;
2172
2173 for (j = 0; j < vector_active (matches); j++)
2174 if ((match_vector = vector_slot (matches, j)) != NULL)
2175 for (k = 0; k < vector_active (match_vector); k++)
2176 {
2177 struct cmd_token *token = vector_slot (match_vector, k);
2178 vector_set (matchvec, token);
2179 }
2180
2181 *status = CMD_SUCCESS;
2182 vector_set(matchvec, &token_cr);
2183 vector_free (cmd_vector);
2184 cmd_matches_free(&matches);
2185 cmd_describe_sort(matchvec);
2186 return matchvec;
2187 }
2188
2189 ret = is_cmd_ambiguous(cmd_vector, command, matches, match);
2190 if (ret == 1)
2191 {
2192 vector_free (cmd_vector);
2193 vector_free (matchvec);
2194 cmd_matches_free(&matches);
2195 *status = CMD_ERR_AMBIGUOUS;
2196 return NULL;
2197 }
2198 else if (ret == 2)
2199 {
2200 vector_free (cmd_vector);
2201 vector_free (matchvec);
2202 cmd_matches_free(&matches);
2203 *status = CMD_ERR_NO_MATCH;
2204 return NULL;
2205 }
2206 }
paul54aba542003-08-21 20:28:24 +00002207
paul718e3742002-12-13 20:15:29 +00002208 /* Make description vector. */
Christian Frankecd40b322013-09-30 12:27:51 +00002209 for (i = 0; i < vector_active (matches); i++)
Donald Sharpf7332802015-07-17 22:36:57 -04002210 {
2211 if ((cmd_element = vector_slot (cmd_vector, i)) != NULL)
2212 {
2213 unsigned int j;
2214 vector vline_trimmed;
paul718e3742002-12-13 20:15:29 +00002215
Donald Sharpf7332802015-07-17 22:36:57 -04002216 command_found++;
2217 last_word = vector_slot(vline, vector_active(vline) - 1);
2218 if (last_word == NULL || !strlen(last_word))
2219 {
2220 vline_trimmed = vector_copy(vline);
2221 vector_unset(vline_trimmed, vector_active(vline_trimmed) - 1);
paul718e3742002-12-13 20:15:29 +00002222
Donald Sharpf7332802015-07-17 22:36:57 -04002223 if (cmd_is_complete(cmd_element, vline_trimmed)
2224 && desc_unique_string(matchvec, command_cr))
2225 {
2226 if (match != vararg_match)
2227 vector_set(matchvec, &token_cr);
2228 }
Chris Caputo228da422009-07-18 05:44:03 +00002229
Donald Sharpf7332802015-07-17 22:36:57 -04002230 vector_free(vline_trimmed);
2231 }
Christian Frankecd40b322013-09-30 12:27:51 +00002232
Donald Sharpf7332802015-07-17 22:36:57 -04002233 match_vector = vector_slot (matches, i);
2234 if (match_vector)
2235 {
2236 for (j = 0; j < vector_active(match_vector); j++)
2237 {
2238 struct cmd_token *token = vector_slot(match_vector, j);
2239 const char *string;
Christian Frankecd40b322013-09-30 12:27:51 +00002240
Donald Sharpf7332802015-07-17 22:36:57 -04002241 string = cmd_entry_function_desc(command, token);
2242 if (string && desc_unique_string(matchvec, string))
2243 vector_set(matchvec, token);
2244 }
2245 }
2246 }
2247 }
2248
2249 /*
2250 * We can get into this situation when the command is complete
2251 * but the last part of the command is an optional piece of
2252 * the cli.
2253 */
2254 last_word = vector_slot(vline, vector_active(vline) - 1);
2255 if (command_found == 0 && (last_word == NULL || !strlen(last_word)))
2256 vector_set(matchvec, &token_cr);
2257
paul718e3742002-12-13 20:15:29 +00002258 vector_free (cmd_vector);
Christian Frankecd40b322013-09-30 12:27:51 +00002259 cmd_matches_free(&matches);
paul718e3742002-12-13 20:15:29 +00002260
2261 if (vector_slot (matchvec, 0) == NULL)
2262 {
2263 vector_free (matchvec);
paul909a2152005-03-14 17:41:45 +00002264 *status = CMD_ERR_NO_MATCH;
Paul Jakma5fc60512006-05-12 23:24:09 +00002265 return NULL;
paul718e3742002-12-13 20:15:29 +00002266 }
paul718e3742002-12-13 20:15:29 +00002267
Paul Jakma5fc60512006-05-12 23:24:09 +00002268 *status = CMD_SUCCESS;
Christian Frankecd40b322013-09-30 12:27:51 +00002269 cmd_describe_sort(matchvec);
paul718e3742002-12-13 20:15:29 +00002270 return matchvec;
2271}
2272
paulb92938a2002-12-13 21:20:42 +00002273vector
2274cmd_describe_command (vector vline, struct vty *vty, int *status)
2275{
2276 vector ret;
2277
2278 if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) )
2279 {
2280 enum node_type onode;
2281 vector shifted_vline;
hasso8c328f12004-10-05 21:01:23 +00002282 unsigned int index;
paulb92938a2002-12-13 21:20:42 +00002283
2284 onode = vty->node;
2285 vty->node = ENABLE_NODE;
2286 /* We can try it on enable node, cos' the vty is authenticated */
2287
2288 shifted_vline = vector_init (vector_count(vline));
2289 /* use memcpy? */
paul55468c82005-03-14 20:19:01 +00002290 for (index = 1; index < vector_active (vline); index++)
paulb92938a2002-12-13 21:20:42 +00002291 {
2292 vector_set_index (shifted_vline, index-1, vector_lookup(vline, index));
2293 }
2294
2295 ret = cmd_describe_command_real (shifted_vline, vty, status);
2296
2297 vector_free(shifted_vline);
2298 vty->node = onode;
2299 return ret;
2300 }
2301
2302
2303 return cmd_describe_command_real (vline, vty, status);
2304}
2305
2306
paul718e3742002-12-13 20:15:29 +00002307/* Check LCD of matched command. */
ajs274a4a42004-12-07 15:39:31 +00002308static int
paul718e3742002-12-13 20:15:29 +00002309cmd_lcd (char **matched)
2310{
2311 int i;
2312 int j;
2313 int lcd = -1;
2314 char *s1, *s2;
2315 char c1, c2;
2316
2317 if (matched[0] == NULL || matched[1] == NULL)
2318 return 0;
2319
2320 for (i = 1; matched[i] != NULL; i++)
2321 {
2322 s1 = matched[i - 1];
2323 s2 = matched[i];
2324
2325 for (j = 0; (c1 = s1[j]) && (c2 = s2[j]); j++)
2326 if (c1 != c2)
2327 break;
2328
2329 if (lcd < 0)
2330 lcd = j;
2331 else
2332 {
2333 if (lcd > j)
2334 lcd = j;
2335 }
2336 }
2337 return lcd;
2338}
2339
Christian Frankecd40b322013-09-30 12:27:51 +00002340static int
2341cmd_complete_cmp(const void *a, const void *b)
2342{
2343 const char *first = *(char * const *)a;
2344 const char *second = *(char * const *)b;
2345
2346 if (!first)
2347 {
2348 if (!second)
2349 return 0;
2350 return 1;
2351 }
2352 if (!second)
2353 return -1;
2354
2355 return strcmp(first, second);
2356}
2357
2358static void
2359cmd_complete_sort(vector matchvec)
2360{
2361 qsort(matchvec->index, vector_active(matchvec),
2362 sizeof(void*), cmd_complete_cmp);
2363}
2364
paul718e3742002-12-13 20:15:29 +00002365/* Command line completion support. */
ajs274a4a42004-12-07 15:39:31 +00002366static char **
paulb92938a2002-12-13 21:20:42 +00002367cmd_complete_command_real (vector vline, struct vty *vty, int *status)
paul718e3742002-12-13 20:15:29 +00002368{
paulb8961472005-03-14 17:35:52 +00002369 unsigned int i;
paul718e3742002-12-13 20:15:29 +00002370 vector cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node));
2371#define INIT_MATCHVEC_SIZE 10
2372 vector matchvec;
paulb8961472005-03-14 17:35:52 +00002373 unsigned int index;
paul718e3742002-12-13 20:15:29 +00002374 char **match_str;
Christian Frankecd40b322013-09-30 12:27:51 +00002375 struct cmd_token *token;
paul718e3742002-12-13 20:15:29 +00002376 char *command;
2377 int lcd;
Christian Frankecd40b322013-09-30 12:27:51 +00002378 vector matches = NULL;
2379 vector match_vector;
paul718e3742002-12-13 20:15:29 +00002380
paul55468c82005-03-14 20:19:01 +00002381 if (vector_active (vline) == 0)
paulb8961472005-03-14 17:35:52 +00002382 {
Paul Jakmad2519962006-05-12 23:19:37 +00002383 vector_free (cmd_vector);
paulb8961472005-03-14 17:35:52 +00002384 *status = CMD_ERR_NO_MATCH;
2385 return NULL;
2386 }
2387 else
paul55468c82005-03-14 20:19:01 +00002388 index = vector_active (vline) - 1;
paulb8961472005-03-14 17:35:52 +00002389
Christian Frankecd40b322013-09-30 12:27:51 +00002390 /* First, filter by command string */
2391 for (i = 0; i <= index; i++)
2392 {
2393 command = vector_slot (vline, i);
2394 enum match_type match;
2395 int ret;
paul718e3742002-12-13 20:15:29 +00002396
Christian Frankecd40b322013-09-30 12:27:51 +00002397 if (matches)
2398 cmd_matches_free(&matches);
paul718e3742002-12-13 20:15:29 +00002399
Christian Frankecd40b322013-09-30 12:27:51 +00002400 /* First try completion match, if there is exactly match return 1 */
2401 ret = cmd_vector_filter(cmd_vector,
2402 FILTER_RELAXED,
2403 vline, i,
2404 &match,
2405 &matches);
2406
2407 if (ret != CMD_SUCCESS)
2408 {
2409 vector_free(cmd_vector);
2410 cmd_matches_free(&matches);
2411 *status = ret;
2412 return NULL;
2413 }
2414
2415 /* Break here - the completion mustn't be checked to be non-ambiguous */
2416 if (i == index)
2417 break;
2418
2419 /* If there is exact match then filter ambiguous match else check
2420 ambiguousness. */
2421 ret = is_cmd_ambiguous (cmd_vector, command, matches, match);
2422 if (ret == 1)
2423 {
2424 vector_free (cmd_vector);
2425 cmd_matches_free(&matches);
2426 *status = CMD_ERR_AMBIGUOUS;
2427 return NULL;
2428 }
2429 /*
paul909a2152005-03-14 17:41:45 +00002430 else if (ret == 2)
2431 {
2432 vector_free (cmd_vector);
Christian Frankecd40b322013-09-30 12:27:51 +00002433 cmd_matches_free(&matches);
paul909a2152005-03-14 17:41:45 +00002434 *status = CMD_ERR_NO_MATCH;
2435 return NULL;
2436 }
2437 */
Christian Frankecd40b322013-09-30 12:27:51 +00002438 }
paul909a2152005-03-14 17:41:45 +00002439
paul718e3742002-12-13 20:15:29 +00002440 /* Prepare match vector. */
2441 matchvec = vector_init (INIT_MATCHVEC_SIZE);
2442
Christian Frankecd40b322013-09-30 12:27:51 +00002443 /* Build the possible list of continuations into a list of completions */
2444 for (i = 0; i < vector_active (matches); i++)
2445 if ((match_vector = vector_slot (matches, i)))
paul718e3742002-12-13 20:15:29 +00002446 {
hasso8c328f12004-10-05 21:01:23 +00002447 const char *string;
Christian Frankecd40b322013-09-30 12:27:51 +00002448 unsigned int j;
paul909a2152005-03-14 17:41:45 +00002449
Christian Frankecd40b322013-09-30 12:27:51 +00002450 for (j = 0; j < vector_active (match_vector); j++)
2451 if ((token = vector_slot (match_vector, j)))
paul909a2152005-03-14 17:41:45 +00002452 {
paulb8961472005-03-14 17:35:52 +00002453 if ((string =
2454 cmd_entry_function (vector_slot (vline, index),
David Lamparter10bac802015-05-05 11:10:20 +02002455 token)))
paul909a2152005-03-14 17:41:45 +00002456 if (cmd_unique_string (matchvec, string))
2457 vector_set (matchvec, XSTRDUP (MTYPE_TMP, string));
2458 }
paul718e3742002-12-13 20:15:29 +00002459 }
2460
2461 /* We don't need cmd_vector any more. */
2462 vector_free (cmd_vector);
Christian Frankecd40b322013-09-30 12:27:51 +00002463 cmd_matches_free(&matches);
paul718e3742002-12-13 20:15:29 +00002464
2465 /* No matched command */
2466 if (vector_slot (matchvec, 0) == NULL)
2467 {
2468 vector_free (matchvec);
2469
2470 /* In case of 'command \t' pattern. Do you need '?' command at
2471 the end of the line. */
2472 if (vector_slot (vline, index) == '\0')
2473 *status = CMD_ERR_NOTHING_TODO;
2474 else
2475 *status = CMD_ERR_NO_MATCH;
2476 return NULL;
2477 }
2478
2479 /* Only one matched */
2480 if (vector_slot (matchvec, 1) == NULL)
2481 {
2482 match_str = (char **) matchvec->index;
2483 vector_only_wrapper_free (matchvec);
2484 *status = CMD_COMPLETE_FULL_MATCH;
2485 return match_str;
2486 }
2487 /* Make it sure last element is NULL. */
2488 vector_set (matchvec, NULL);
2489
2490 /* Check LCD of matched strings. */
2491 if (vector_slot (vline, index) != NULL)
2492 {
2493 lcd = cmd_lcd ((char **) matchvec->index);
2494
2495 if (lcd)
2496 {
2497 int len = strlen (vector_slot (vline, index));
paul909a2152005-03-14 17:41:45 +00002498
paul718e3742002-12-13 20:15:29 +00002499 if (len < lcd)
2500 {
2501 char *lcdstr;
paul909a2152005-03-14 17:41:45 +00002502
Christian Frankecd40b322013-09-30 12:27:51 +00002503 lcdstr = XMALLOC (MTYPE_TMP, lcd + 1);
paul718e3742002-12-13 20:15:29 +00002504 memcpy (lcdstr, matchvec->index[0], lcd);
2505 lcdstr[lcd] = '\0';
2506
2507 /* match_str = (char **) &lcdstr; */
2508
2509 /* Free matchvec. */
paul55468c82005-03-14 20:19:01 +00002510 for (i = 0; i < vector_active (matchvec); i++)
paul718e3742002-12-13 20:15:29 +00002511 {
2512 if (vector_slot (matchvec, i))
Christian Frankecd40b322013-09-30 12:27:51 +00002513 XFREE (MTYPE_TMP, vector_slot (matchvec, i));
paul718e3742002-12-13 20:15:29 +00002514 }
2515 vector_free (matchvec);
2516
paul909a2152005-03-14 17:41:45 +00002517 /* Make new matchvec. */
paul718e3742002-12-13 20:15:29 +00002518 matchvec = vector_init (INIT_MATCHVEC_SIZE);
2519 vector_set (matchvec, lcdstr);
2520 match_str = (char **) matchvec->index;
2521 vector_only_wrapper_free (matchvec);
2522
2523 *status = CMD_COMPLETE_MATCH;
2524 return match_str;
2525 }
2526 }
2527 }
2528
2529 match_str = (char **) matchvec->index;
Christian Frankecd40b322013-09-30 12:27:51 +00002530 cmd_complete_sort(matchvec);
paul718e3742002-12-13 20:15:29 +00002531 vector_only_wrapper_free (matchvec);
2532 *status = CMD_COMPLETE_LIST_MATCH;
2533 return match_str;
2534}
2535
paulb92938a2002-12-13 21:20:42 +00002536char **
paul9ab68122003-01-18 01:16:20 +00002537cmd_complete_command (vector vline, struct vty *vty, int *status)
paulb92938a2002-12-13 21:20:42 +00002538{
2539 char **ret;
2540
2541 if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) )
2542 {
2543 enum node_type onode;
2544 vector shifted_vline;
hasso8c328f12004-10-05 21:01:23 +00002545 unsigned int index;
paulb92938a2002-12-13 21:20:42 +00002546
2547 onode = vty->node;
2548 vty->node = ENABLE_NODE;
2549 /* We can try it on enable node, cos' the vty is authenticated */
2550
2551 shifted_vline = vector_init (vector_count(vline));
2552 /* use memcpy? */
paul55468c82005-03-14 20:19:01 +00002553 for (index = 1; index < vector_active (vline); index++)
paulb92938a2002-12-13 21:20:42 +00002554 {
2555 vector_set_index (shifted_vline, index-1, vector_lookup(vline, index));
2556 }
2557
2558 ret = cmd_complete_command_real (shifted_vline, vty, status);
2559
2560 vector_free(shifted_vline);
2561 vty->node = onode;
2562 return ret;
2563 }
2564
2565
2566 return cmd_complete_command_real (vline, vty, status);
2567}
2568
2569/* return parent node */
2570/* MUST eventually converge on CONFIG_NODE */
hasso13bfca72005-01-23 21:42:25 +00002571enum node_type
ajs274a4a42004-12-07 15:39:31 +00002572node_parent ( enum node_type node )
paulb92938a2002-12-13 21:20:42 +00002573{
2574 enum node_type ret;
2575
paul9ab68122003-01-18 01:16:20 +00002576 assert (node > CONFIG_NODE);
2577
2578 switch (node)
2579 {
2580 case BGP_VPNV4_NODE:
2581 case BGP_IPV4_NODE:
2582 case BGP_IPV4M_NODE:
2583 case BGP_IPV6_NODE:
paul1e836592005-08-22 22:39:56 +00002584 case BGP_IPV6M_NODE:
paul9ab68122003-01-18 01:16:20 +00002585 ret = BGP_NODE;
2586 break;
2587 case KEYCHAIN_KEY_NODE:
2588 ret = KEYCHAIN_NODE;
2589 break;
2590 default:
2591 ret = CONFIG_NODE;
paulb92938a2002-12-13 21:20:42 +00002592 }
2593
2594 return ret;
2595}
2596
paul718e3742002-12-13 20:15:29 +00002597/* Execute command by argument vline vector. */
ajs274a4a42004-12-07 15:39:31 +00002598static int
Christian Frankecd40b322013-09-30 12:27:51 +00002599cmd_execute_command_real (vector vline,
2600 enum filter_type filter,
2601 struct vty *vty,
paulb8961472005-03-14 17:35:52 +00002602 struct cmd_element **cmd)
paul718e3742002-12-13 20:15:29 +00002603{
hasso8c328f12004-10-05 21:01:23 +00002604 unsigned int i;
2605 unsigned int index;
paul718e3742002-12-13 20:15:29 +00002606 vector cmd_vector;
2607 struct cmd_element *cmd_element;
2608 struct cmd_element *matched_element;
2609 unsigned int matched_count, incomplete_count;
2610 int argc;
paul9035efa2004-10-10 11:56:56 +00002611 const char *argv[CMD_ARGC_MAX];
paul718e3742002-12-13 20:15:29 +00002612 enum match_type match = 0;
paul718e3742002-12-13 20:15:29 +00002613 char *command;
Christian Frankecd40b322013-09-30 12:27:51 +00002614 int ret;
2615 vector matches;
paul718e3742002-12-13 20:15:29 +00002616
2617 /* Make copy of command elements. */
2618 cmd_vector = vector_copy (cmd_node_vector (cmdvec, vty->node));
2619
paul55468c82005-03-14 20:19:01 +00002620 for (index = 0; index < vector_active (vline); index++)
Christian Frankecd40b322013-09-30 12:27:51 +00002621 {
2622 command = vector_slot (vline, index);
2623 ret = cmd_vector_filter(cmd_vector,
2624 filter,
2625 vline, index,
2626 &match,
2627 &matches);
paul718e3742002-12-13 20:15:29 +00002628
Christian Frankecd40b322013-09-30 12:27:51 +00002629 if (ret != CMD_SUCCESS)
2630 {
2631 cmd_matches_free(&matches);
2632 return ret;
2633 }
paul718e3742002-12-13 20:15:29 +00002634
Christian Frankecd40b322013-09-30 12:27:51 +00002635 if (match == vararg_match)
2636 {
2637 cmd_matches_free(&matches);
paul909a2152005-03-14 17:41:45 +00002638 break;
Christian Frankecd40b322013-09-30 12:27:51 +00002639 }
paul718e3742002-12-13 20:15:29 +00002640
Christian Frankecd40b322013-09-30 12:27:51 +00002641 ret = is_cmd_ambiguous (cmd_vector, command, matches, match);
2642 cmd_matches_free(&matches);
2643
2644 if (ret == 1)
2645 {
2646 vector_free(cmd_vector);
2647 return CMD_ERR_AMBIGUOUS;
2648 }
2649 else if (ret == 2)
2650 {
2651 vector_free(cmd_vector);
2652 return CMD_ERR_NO_MATCH;
2653 }
2654 }
paul718e3742002-12-13 20:15:29 +00002655
2656 /* Check matched count. */
2657 matched_element = NULL;
2658 matched_count = 0;
2659 incomplete_count = 0;
2660
paul55468c82005-03-14 20:19:01 +00002661 for (i = 0; i < vector_active (cmd_vector); i++)
paulb8961472005-03-14 17:35:52 +00002662 if ((cmd_element = vector_slot (cmd_vector, i)))
paul718e3742002-12-13 20:15:29 +00002663 {
Christian Frankecd40b322013-09-30 12:27:51 +00002664 if (cmd_is_complete(cmd_element, vline))
paul718e3742002-12-13 20:15:29 +00002665 {
2666 matched_element = cmd_element;
paul718e3742002-12-13 20:15:29 +00002667 matched_count++;
2668 }
2669 else
2670 {
2671 incomplete_count++;
2672 }
2673 }
paul909a2152005-03-14 17:41:45 +00002674
paul718e3742002-12-13 20:15:29 +00002675 /* Finish of using cmd_vector. */
2676 vector_free (cmd_vector);
2677
paul909a2152005-03-14 17:41:45 +00002678 /* To execute command, matched_count must be 1. */
2679 if (matched_count == 0)
paul718e3742002-12-13 20:15:29 +00002680 {
2681 if (incomplete_count)
2682 return CMD_ERR_INCOMPLETE;
2683 else
2684 return CMD_ERR_NO_MATCH;
2685 }
2686
paul909a2152005-03-14 17:41:45 +00002687 if (matched_count > 1)
paul718e3742002-12-13 20:15:29 +00002688 return CMD_ERR_AMBIGUOUS;
2689
Christian Frankecd40b322013-09-30 12:27:51 +00002690 ret = cmd_parse(matched_element, vline, &argc, argv);
2691 if (ret != CMD_SUCCESS)
2692 return ret;
paul718e3742002-12-13 20:15:29 +00002693
2694 /* For vtysh execution. */
2695 if (cmd)
2696 *cmd = matched_element;
2697
2698 if (matched_element->daemon)
2699 return CMD_SUCCESS_DAEMON;
2700
2701 /* Execute matched command. */
2702 return (*matched_element->func) (matched_element, vty, argc, argv);
2703}
2704
Christian Frankecd40b322013-09-30 12:27:51 +00002705/**
2706 * Execute a given command, handling things like "do ..." and checking
2707 * whether the given command might apply at a parent node if doesn't
2708 * apply for the current node.
2709 *
2710 * @param vline Command line input, vector of char* where each element is
2711 * one input token.
2712 * @param vty The vty context in which the command should be executed.
2713 * @param cmd Pointer where the struct cmd_element of the matched command
2714 * will be stored, if any. May be set to NULL if this info is
2715 * not needed.
2716 * @param vtysh If set != 0, don't lookup the command at parent nodes.
2717 * @return The status of the command that has been executed or an error code
2718 * as to why no command could be executed.
2719 */
paulb92938a2002-12-13 21:20:42 +00002720int
hasso87d683b2005-01-16 23:31:54 +00002721cmd_execute_command (vector vline, struct vty *vty, struct cmd_element **cmd,
2722 int vtysh) {
paul9ab68122003-01-18 01:16:20 +00002723 int ret, saved_ret, tried = 0;
2724 enum node_type onode, try_node;
2725
2726 onode = try_node = vty->node;
paulb92938a2002-12-13 21:20:42 +00002727
2728 if ( cmd_try_do_shortcut(vty->node, vector_slot(vline, 0) ) )
2729 {
2730 vector shifted_vline;
hasso8c328f12004-10-05 21:01:23 +00002731 unsigned int index;
paulb92938a2002-12-13 21:20:42 +00002732
2733 vty->node = ENABLE_NODE;
2734 /* We can try it on enable node, cos' the vty is authenticated */
2735
2736 shifted_vline = vector_init (vector_count(vline));
2737 /* use memcpy? */
paul55468c82005-03-14 20:19:01 +00002738 for (index = 1; index < vector_active (vline); index++)
paulb92938a2002-12-13 21:20:42 +00002739 {
2740 vector_set_index (shifted_vline, index-1, vector_lookup(vline, index));
2741 }
2742
Christian Frankecd40b322013-09-30 12:27:51 +00002743 ret = cmd_execute_command_real (shifted_vline, FILTER_RELAXED, vty, cmd);
paulb92938a2002-12-13 21:20:42 +00002744
2745 vector_free(shifted_vline);
2746 vty->node = onode;
2747 return ret;
2748 }
2749
2750
Christian Frankecd40b322013-09-30 12:27:51 +00002751 saved_ret = ret = cmd_execute_command_real (vline, FILTER_RELAXED, vty, cmd);
paulb92938a2002-12-13 21:20:42 +00002752
hasso87d683b2005-01-16 23:31:54 +00002753 if (vtysh)
2754 return saved_ret;
2755
paulb92938a2002-12-13 21:20:42 +00002756 /* This assumes all nodes above CONFIG_NODE are childs of CONFIG_NODE */
paul9ab68122003-01-18 01:16:20 +00002757 while ( ret != CMD_SUCCESS && ret != CMD_WARNING
paulb92938a2002-12-13 21:20:42 +00002758 && vty->node > CONFIG_NODE )
2759 {
paul9ab68122003-01-18 01:16:20 +00002760 try_node = node_parent(try_node);
2761 vty->node = try_node;
Christian Frankecd40b322013-09-30 12:27:51 +00002762 ret = cmd_execute_command_real (vline, FILTER_RELAXED, vty, cmd);
paul9ab68122003-01-18 01:16:20 +00002763 tried = 1;
2764 if (ret == CMD_SUCCESS || ret == CMD_WARNING)
paulb92938a2002-12-13 21:20:42 +00002765 {
paul9ab68122003-01-18 01:16:20 +00002766 /* succesfull command, leave the node as is */
paulb92938a2002-12-13 21:20:42 +00002767 return ret;
2768 }
paulb92938a2002-12-13 21:20:42 +00002769 }
paul9ab68122003-01-18 01:16:20 +00002770 /* no command succeeded, reset the vty to the original node and
2771 return the error for this node */
2772 if ( tried )
2773 vty->node = onode;
2774 return saved_ret;
pauleda031f2003-01-18 00:39:19 +00002775}
2776
Christian Frankecd40b322013-09-30 12:27:51 +00002777/**
2778 * Execute a given command, matching it strictly against the current node.
2779 * This mode is used when reading config files.
2780 *
2781 * @param vline Command line input, vector of char* where each element is
2782 * one input token.
2783 * @param vty The vty context in which the command should be executed.
2784 * @param cmd Pointer where the struct cmd_element* of the matched command
2785 * will be stored, if any. May be set to NULL if this info is
2786 * not needed.
2787 * @return The status of the command that has been executed or an error code
2788 * as to why no command could be executed.
2789 */
paul718e3742002-12-13 20:15:29 +00002790int
paul909a2152005-03-14 17:41:45 +00002791cmd_execute_command_strict (vector vline, struct vty *vty,
paul718e3742002-12-13 20:15:29 +00002792 struct cmd_element **cmd)
2793{
Christian Frankecd40b322013-09-30 12:27:51 +00002794 return cmd_execute_command_real(vline, FILTER_STRICT, vty, cmd);
paul718e3742002-12-13 20:15:29 +00002795}
2796
Donald Sharpd8aa4be2015-09-28 20:10:40 -04002797/**
2798 * Parse one line of config, walking up the parse tree attempting to find a match
2799 *
2800 * @param vty The vty context in which the command should be executed.
2801 * @param cmd Pointer where the struct cmd_element* of the match command
2802 * will be stored, if any. May be set to NULL if this info is
2803 * not needed.
2804 * @param use_daemon Boolean to control whether or not we match on CMD_SUCCESS_DAEMON
2805 * or not.
2806 * @return The status of the command that has been executed or an error code
2807 * as to why no command could be executed.
2808 */
2809int
2810command_config_read_one_line (struct vty *vty, struct cmd_element **cmd, int use_daemon)
2811{
2812 vector vline;
2813 int saved_node;
2814 int ret;
2815
2816 vline = cmd_make_strvec (vty->buf);
2817
2818 /* In case of comment line */
2819 if (vline == NULL)
2820 return CMD_SUCCESS;
2821
2822 /* Execute configuration command : this is strict match */
2823 ret = cmd_execute_command_strict (vline, vty, cmd);
2824
2825 saved_node = vty->node;
2826
2827 while (!(use_daemon && ret == CMD_SUCCESS_DAEMON) &&
2828 ret != CMD_SUCCESS && ret != CMD_WARNING &&
2829 ret != CMD_ERR_NOTHING_TODO && vty->node != CONFIG_NODE) {
2830 vty->node = node_parent(vty->node);
2831 ret = cmd_execute_command_strict (vline, vty, NULL);
2832 }
2833
2834 // If climbing the tree did not work then ignore the command and
2835 // stay at the same node
2836 if (!(use_daemon && ret == CMD_SUCCESS_DAEMON) &&
2837 ret != CMD_SUCCESS && ret != CMD_WARNING &&
2838 ret != CMD_ERR_NOTHING_TODO)
2839 {
2840 vty->node = saved_node;
2841 }
2842
2843 cmd_free_strvec (vline);
2844
2845 return ret;
2846}
2847
paul718e3742002-12-13 20:15:29 +00002848/* Configration make from file. */
2849int
Steve Hillea555002009-07-28 16:36:14 -04002850config_from_file (struct vty *vty, FILE *fp, unsigned int *line_num)
paul718e3742002-12-13 20:15:29 +00002851{
2852 int ret;
Steve Hillea555002009-07-28 16:36:14 -04002853 *line_num = 0;
paul718e3742002-12-13 20:15:29 +00002854
2855 while (fgets (vty->buf, VTY_BUFSIZ, fp))
2856 {
Steve Hillea555002009-07-28 16:36:14 -04002857 ++(*line_num);
paul718e3742002-12-13 20:15:29 +00002858
Donald Sharpd8aa4be2015-09-28 20:10:40 -04002859 ret = command_config_read_one_line (vty, NULL, 0);
paul718e3742002-12-13 20:15:29 +00002860
hassoddd85ed2004-10-13 08:18:07 +00002861 if (ret != CMD_SUCCESS && ret != CMD_WARNING
2862 && ret != CMD_ERR_NOTHING_TODO)
paul718e3742002-12-13 20:15:29 +00002863 return ret;
2864 }
2865 return CMD_SUCCESS;
2866}
2867
2868/* Configration from terminal */
2869DEFUN (config_terminal,
2870 config_terminal_cmd,
2871 "configure terminal",
2872 "Configuration from vty interface\n"
2873 "Configuration terminal\n")
2874{
2875 if (vty_config_lock (vty))
2876 vty->node = CONFIG_NODE;
2877 else
2878 {
2879 vty_out (vty, "VTY configuration is locked by other VTY%s", VTY_NEWLINE);
2880 return CMD_WARNING;
2881 }
2882 return CMD_SUCCESS;
2883}
2884
2885/* Enable command */
2886DEFUN (enable,
2887 config_enable_cmd,
2888 "enable",
2889 "Turn on privileged mode command\n")
2890{
2891 /* If enable password is NULL, change to ENABLE_NODE */
2892 if ((host.enable == NULL && host.enable_encrypt == NULL) ||
2893 vty->type == VTY_SHELL_SERV)
2894 vty->node = ENABLE_NODE;
2895 else
2896 vty->node = AUTH_ENABLE_NODE;
2897
2898 return CMD_SUCCESS;
2899}
2900
2901/* Disable command */
2902DEFUN (disable,
2903 config_disable_cmd,
2904 "disable",
2905 "Turn off privileged mode command\n")
2906{
2907 if (vty->node == ENABLE_NODE)
2908 vty->node = VIEW_NODE;
2909 return CMD_SUCCESS;
2910}
2911
2912/* Down vty node level. */
2913DEFUN (config_exit,
2914 config_exit_cmd,
2915 "exit",
2916 "Exit current mode and down to previous mode\n")
2917{
2918 switch (vty->node)
2919 {
2920 case VIEW_NODE:
2921 case ENABLE_NODE:
Paul Jakma62687ff2008-08-23 14:27:06 +01002922 case RESTRICTED_NODE:
paul718e3742002-12-13 20:15:29 +00002923 if (vty_shell (vty))
2924 exit (0);
2925 else
2926 vty->status = VTY_CLOSE;
2927 break;
2928 case CONFIG_NODE:
2929 vty->node = ENABLE_NODE;
2930 vty_config_unlock (vty);
2931 break;
2932 case INTERFACE_NODE:
2933 case ZEBRA_NODE:
2934 case BGP_NODE:
2935 case RIP_NODE:
2936 case RIPNG_NODE:
Paul Jakma57345092011-12-25 17:52:09 +01002937 case BABEL_NODE:
paul718e3742002-12-13 20:15:29 +00002938 case OSPF_NODE:
2939 case OSPF6_NODE:
jardin9e867fe2003-12-23 08:56:18 +00002940 case ISIS_NODE:
paul718e3742002-12-13 20:15:29 +00002941 case KEYCHAIN_NODE:
2942 case MASC_NODE:
2943 case RMAP_NODE:
Everton Marques42e30782009-11-18 17:19:43 -02002944 case PIM_NODE:
paul718e3742002-12-13 20:15:29 +00002945 case VTY_NODE:
2946 vty->node = CONFIG_NODE;
2947 break;
2948 case BGP_VPNV4_NODE:
2949 case BGP_IPV4_NODE:
2950 case BGP_IPV4M_NODE:
2951 case BGP_IPV6_NODE:
paul1e836592005-08-22 22:39:56 +00002952 case BGP_IPV6M_NODE:
paul718e3742002-12-13 20:15:29 +00002953 vty->node = BGP_NODE;
2954 break;
2955 case KEYCHAIN_KEY_NODE:
2956 vty->node = KEYCHAIN_NODE;
2957 break;
2958 default:
2959 break;
2960 }
2961 return CMD_SUCCESS;
2962}
2963
2964/* quit is alias of exit. */
2965ALIAS (config_exit,
2966 config_quit_cmd,
2967 "quit",
2968 "Exit current mode and down to previous mode\n")
2969
2970/* End of configuration. */
2971DEFUN (config_end,
2972 config_end_cmd,
2973 "end",
2974 "End current mode and change to enable mode.")
2975{
2976 switch (vty->node)
2977 {
2978 case VIEW_NODE:
2979 case ENABLE_NODE:
Paul Jakma62687ff2008-08-23 14:27:06 +01002980 case RESTRICTED_NODE:
paul718e3742002-12-13 20:15:29 +00002981 /* Nothing to do. */
2982 break;
2983 case CONFIG_NODE:
2984 case INTERFACE_NODE:
2985 case ZEBRA_NODE:
2986 case RIP_NODE:
2987 case RIPNG_NODE:
Paul Jakma57345092011-12-25 17:52:09 +01002988 case BABEL_NODE:
paul718e3742002-12-13 20:15:29 +00002989 case BGP_NODE:
2990 case BGP_VPNV4_NODE:
2991 case BGP_IPV4_NODE:
2992 case BGP_IPV4M_NODE:
2993 case BGP_IPV6_NODE:
paul1e836592005-08-22 22:39:56 +00002994 case BGP_IPV6M_NODE:
paul718e3742002-12-13 20:15:29 +00002995 case RMAP_NODE:
2996 case OSPF_NODE:
2997 case OSPF6_NODE:
jardin9e867fe2003-12-23 08:56:18 +00002998 case ISIS_NODE:
paul718e3742002-12-13 20:15:29 +00002999 case KEYCHAIN_NODE:
3000 case KEYCHAIN_KEY_NODE:
3001 case MASC_NODE:
Everton Marques42e30782009-11-18 17:19:43 -02003002 case PIM_NODE:
paul718e3742002-12-13 20:15:29 +00003003 case VTY_NODE:
3004 vty_config_unlock (vty);
3005 vty->node = ENABLE_NODE;
3006 break;
3007 default:
3008 break;
3009 }
3010 return CMD_SUCCESS;
3011}
3012
3013/* Show version. */
3014DEFUN (show_version,
3015 show_version_cmd,
3016 "show version",
3017 SHOW_STR
3018 "Displays zebra version\n")
3019{
hasso12f6ea22005-03-07 08:35:39 +00003020 vty_out (vty, "Quagga %s (%s).%s", QUAGGA_VERSION, host.name?host.name:"",
3021 VTY_NEWLINE);
David Lamparter0be793e2012-11-27 01:34:56 +00003022 vty_out (vty, "%s%s%s", QUAGGA_COPYRIGHT, GIT_INFO, VTY_NEWLINE);
David Lamparter7abd8752014-11-22 10:43:29 -08003023 vty_out (vty, "configured with:%s %s%s", VTY_NEWLINE,
3024 QUAGGA_CONFIG_ARGS, VTY_NEWLINE);
paul718e3742002-12-13 20:15:29 +00003025
3026 return CMD_SUCCESS;
3027}
3028
3029/* Help display function for all node. */
3030DEFUN (config_help,
3031 config_help_cmd,
3032 "help",
3033 "Description of the interactive help system\n")
3034{
3035 vty_out (vty,
hasso6590f2c2004-10-19 20:40:08 +00003036 "Quagga VTY provides advanced help feature. When you need help,%s\
paul718e3742002-12-13 20:15:29 +00003037anytime at the command line please press '?'.%s\
3038%s\
3039If nothing matches, the help list will be empty and you must backup%s\
3040 until entering a '?' shows the available options.%s\
3041Two styles of help are provided:%s\
30421. Full help is available when you are ready to enter a%s\
3043command argument (e.g. 'show ?') and describes each possible%s\
3044argument.%s\
30452. Partial help is provided when an abbreviated argument is entered%s\
3046 and you want to know what arguments match the input%s\
3047 (e.g. 'show me?'.)%s%s", VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
3048 VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE,
3049 VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE);
3050 return CMD_SUCCESS;
3051}
3052
3053/* Help display function for all node. */
3054DEFUN (config_list,
3055 config_list_cmd,
3056 "list",
3057 "Print command list\n")
3058{
hasso8c328f12004-10-05 21:01:23 +00003059 unsigned int i;
paul718e3742002-12-13 20:15:29 +00003060 struct cmd_node *cnode = vector_slot (cmdvec, vty->node);
3061 struct cmd_element *cmd;
3062
paul55468c82005-03-14 20:19:01 +00003063 for (i = 0; i < vector_active (cnode->cmd_vector); i++)
paul4275b1d2005-03-09 13:42:23 +00003064 if ((cmd = vector_slot (cnode->cmd_vector, i)) != NULL
3065 && !(cmd->attr == CMD_ATTR_DEPRECATED
3066 || cmd->attr == CMD_ATTR_HIDDEN))
paul718e3742002-12-13 20:15:29 +00003067 vty_out (vty, " %s%s", cmd->string,
3068 VTY_NEWLINE);
3069 return CMD_SUCCESS;
3070}
3071
3072/* Write current configuration into file. */
3073DEFUN (config_write_file,
3074 config_write_file_cmd,
3075 "write file",
3076 "Write running configuration to memory, network, or terminal\n"
3077 "Write to configuration file\n")
3078{
hasso8c328f12004-10-05 21:01:23 +00003079 unsigned int i;
paul718e3742002-12-13 20:15:29 +00003080 int fd;
3081 struct cmd_node *node;
3082 char *config_file;
3083 char *config_file_tmp = NULL;
3084 char *config_file_sav = NULL;
paul05865c92005-10-26 05:49:54 +00003085 int ret = CMD_WARNING;
paul718e3742002-12-13 20:15:29 +00003086 struct vty *file_vty;
3087
3088 /* Check and see if we are operating under vtysh configuration */
3089 if (host.config == NULL)
3090 {
3091 vty_out (vty, "Can't save to configuration file, using vtysh.%s",
3092 VTY_NEWLINE);
3093 return CMD_WARNING;
3094 }
3095
3096 /* Get filename. */
3097 config_file = host.config;
3098
paul05865c92005-10-26 05:49:54 +00003099 config_file_sav =
3100 XMALLOC (MTYPE_TMP, strlen (config_file) + strlen (CONF_BACKUP_EXT) + 1);
paul718e3742002-12-13 20:15:29 +00003101 strcpy (config_file_sav, config_file);
3102 strcat (config_file_sav, CONF_BACKUP_EXT);
3103
3104
paul05865c92005-10-26 05:49:54 +00003105 config_file_tmp = XMALLOC (MTYPE_TMP, strlen (config_file) + 8);
paul718e3742002-12-13 20:15:29 +00003106 sprintf (config_file_tmp, "%s.XXXXXX", config_file);
3107
3108 /* Open file to configuration write. */
3109 fd = mkstemp (config_file_tmp);
3110 if (fd < 0)
3111 {
3112 vty_out (vty, "Can't open configuration file %s.%s", config_file_tmp,
3113 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003114 goto finished;
paul718e3742002-12-13 20:15:29 +00003115 }
3116
3117 /* Make vty for configuration file. */
3118 file_vty = vty_new ();
David Lamparter4715a532013-05-30 16:31:49 +02003119 file_vty->wfd = fd;
paul718e3742002-12-13 20:15:29 +00003120 file_vty->type = VTY_FILE;
3121
3122 /* Config file header print. */
3123 vty_out (file_vty, "!\n! Zebra configuration saved from vty\n! ");
3124 vty_time_print (file_vty, 1);
3125 vty_out (file_vty, "!\n");
3126
paul55468c82005-03-14 20:19:01 +00003127 for (i = 0; i < vector_active (cmdvec); i++)
paul718e3742002-12-13 20:15:29 +00003128 if ((node = vector_slot (cmdvec, i)) && node->func)
3129 {
3130 if ((*node->func) (file_vty))
3131 vty_out (file_vty, "!\n");
3132 }
3133 vty_close (file_vty);
3134
3135 if (unlink (config_file_sav) != 0)
3136 if (errno != ENOENT)
3137 {
3138 vty_out (vty, "Can't unlink backup configuration file %s.%s", config_file_sav,
3139 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003140 goto finished;
paul718e3742002-12-13 20:15:29 +00003141 }
3142 if (link (config_file, config_file_sav) != 0)
3143 {
3144 vty_out (vty, "Can't backup old configuration file %s.%s", config_file_sav,
3145 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003146 goto finished;
paul718e3742002-12-13 20:15:29 +00003147 }
3148 sync ();
3149 if (unlink (config_file) != 0)
3150 {
3151 vty_out (vty, "Can't unlink configuration file %s.%s", config_file,
3152 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003153 goto finished;
paul718e3742002-12-13 20:15:29 +00003154 }
3155 if (link (config_file_tmp, config_file) != 0)
3156 {
3157 vty_out (vty, "Can't save configuration file %s.%s", config_file,
3158 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003159 goto finished;
paul718e3742002-12-13 20:15:29 +00003160 }
paul718e3742002-12-13 20:15:29 +00003161 sync ();
3162
gdtaa593d52003-12-22 20:15:53 +00003163 if (chmod (config_file, CONFIGFILE_MASK) != 0)
3164 {
3165 vty_out (vty, "Can't chmod configuration file %s: %s (%d).%s",
ajs6099b3b2004-11-20 02:06:59 +00003166 config_file, safe_strerror(errno), errno, VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003167 goto finished;
gdtaa593d52003-12-22 20:15:53 +00003168 }
3169
paul718e3742002-12-13 20:15:29 +00003170 vty_out (vty, "Configuration saved to %s%s", config_file,
3171 VTY_NEWLINE);
paul05865c92005-10-26 05:49:54 +00003172 ret = CMD_SUCCESS;
3173
3174finished:
3175 unlink (config_file_tmp);
3176 XFREE (MTYPE_TMP, config_file_tmp);
3177 XFREE (MTYPE_TMP, config_file_sav);
3178 return ret;
paul718e3742002-12-13 20:15:29 +00003179}
3180
3181ALIAS (config_write_file,
3182 config_write_cmd,
3183 "write",
3184 "Write running configuration to memory, network, or terminal\n")
3185
3186ALIAS (config_write_file,
3187 config_write_memory_cmd,
3188 "write memory",
3189 "Write running configuration to memory, network, or terminal\n"
3190 "Write configuration to the file (same as write file)\n")
3191
3192ALIAS (config_write_file,
3193 copy_runningconfig_startupconfig_cmd,
3194 "copy running-config startup-config",
3195 "Copy configuration\n"
3196 "Copy running config to... \n"
3197 "Copy running config to startup config (same as write file)\n")
3198
3199/* Write current configuration into the terminal. */
3200DEFUN (config_write_terminal,
3201 config_write_terminal_cmd,
3202 "write terminal",
3203 "Write running configuration to memory, network, or terminal\n"
3204 "Write to terminal\n")
3205{
hasso8c328f12004-10-05 21:01:23 +00003206 unsigned int i;
paul718e3742002-12-13 20:15:29 +00003207 struct cmd_node *node;
3208
3209 if (vty->type == VTY_SHELL_SERV)
3210 {
paul55468c82005-03-14 20:19:01 +00003211 for (i = 0; i < vector_active (cmdvec); i++)
paul718e3742002-12-13 20:15:29 +00003212 if ((node = vector_slot (cmdvec, i)) && node->func && node->vtysh)
3213 {
3214 if ((*node->func) (vty))
3215 vty_out (vty, "!%s", VTY_NEWLINE);
3216 }
3217 }
3218 else
3219 {
3220 vty_out (vty, "%sCurrent configuration:%s", VTY_NEWLINE,
3221 VTY_NEWLINE);
3222 vty_out (vty, "!%s", VTY_NEWLINE);
3223
paul55468c82005-03-14 20:19:01 +00003224 for (i = 0; i < vector_active (cmdvec); i++)
paul718e3742002-12-13 20:15:29 +00003225 if ((node = vector_slot (cmdvec, i)) && node->func)
3226 {
3227 if ((*node->func) (vty))
3228 vty_out (vty, "!%s", VTY_NEWLINE);
3229 }
3230 vty_out (vty, "end%s",VTY_NEWLINE);
3231 }
3232 return CMD_SUCCESS;
3233}
3234
3235/* Write current configuration into the terminal. */
3236ALIAS (config_write_terminal,
3237 show_running_config_cmd,
3238 "show running-config",
3239 SHOW_STR
3240 "running configuration\n")
3241
3242/* Write startup configuration into the terminal. */
3243DEFUN (show_startup_config,
3244 show_startup_config_cmd,
3245 "show startup-config",
3246 SHOW_STR
3247 "Contentes of startup configuration\n")
3248{
3249 char buf[BUFSIZ];
3250 FILE *confp;
3251
3252 confp = fopen (host.config, "r");
3253 if (confp == NULL)
3254 {
3255 vty_out (vty, "Can't open configuration file [%s]%s",
3256 host.config, VTY_NEWLINE);
3257 return CMD_WARNING;
3258 }
3259
3260 while (fgets (buf, BUFSIZ, confp))
3261 {
3262 char *cp = buf;
3263
3264 while (*cp != '\r' && *cp != '\n' && *cp != '\0')
3265 cp++;
3266 *cp = '\0';
3267
3268 vty_out (vty, "%s%s", buf, VTY_NEWLINE);
3269 }
3270
3271 fclose (confp);
3272
3273 return CMD_SUCCESS;
3274}
3275
3276/* Hostname configuration */
3277DEFUN (config_hostname,
3278 hostname_cmd,
3279 "hostname WORD",
3280 "Set system's network name\n"
3281 "This system's network name\n")
3282{
3283 if (!isalpha((int) *argv[0]))
3284 {
3285 vty_out (vty, "Please specify string starting with alphabet%s", VTY_NEWLINE);
3286 return CMD_WARNING;
3287 }
3288
3289 if (host.name)
paul05865c92005-10-26 05:49:54 +00003290 XFREE (MTYPE_HOST, host.name);
paul718e3742002-12-13 20:15:29 +00003291
paul05865c92005-10-26 05:49:54 +00003292 host.name = XSTRDUP (MTYPE_HOST, argv[0]);
paul718e3742002-12-13 20:15:29 +00003293 return CMD_SUCCESS;
3294}
3295
3296DEFUN (config_no_hostname,
3297 no_hostname_cmd,
3298 "no hostname [HOSTNAME]",
3299 NO_STR
3300 "Reset system's network name\n"
3301 "Host name of this router\n")
3302{
3303 if (host.name)
paul05865c92005-10-26 05:49:54 +00003304 XFREE (MTYPE_HOST, host.name);
paul718e3742002-12-13 20:15:29 +00003305 host.name = NULL;
3306 return CMD_SUCCESS;
3307}
3308
3309/* VTY interface password set. */
3310DEFUN (config_password, password_cmd,
3311 "password (8|) WORD",
3312 "Assign the terminal connection password\n"
3313 "Specifies a HIDDEN password will follow\n"
3314 "dummy string \n"
3315 "The HIDDEN line password string\n")
3316{
3317 /* Argument check. */
3318 if (argc == 0)
3319 {
3320 vty_out (vty, "Please specify password.%s", VTY_NEWLINE);
3321 return CMD_WARNING;
3322 }
3323
3324 if (argc == 2)
3325 {
3326 if (*argv[0] == '8')
3327 {
3328 if (host.password)
paul05865c92005-10-26 05:49:54 +00003329 XFREE (MTYPE_HOST, host.password);
paul718e3742002-12-13 20:15:29 +00003330 host.password = NULL;
3331 if (host.password_encrypt)
paul05865c92005-10-26 05:49:54 +00003332 XFREE (MTYPE_HOST, host.password_encrypt);
3333 host.password_encrypt = XSTRDUP (MTYPE_HOST, argv[1]);
paul718e3742002-12-13 20:15:29 +00003334 return CMD_SUCCESS;
3335 }
3336 else
3337 {
3338 vty_out (vty, "Unknown encryption type.%s", VTY_NEWLINE);
3339 return CMD_WARNING;
3340 }
3341 }
3342
3343 if (!isalnum ((int) *argv[0]))
3344 {
3345 vty_out (vty,
3346 "Please specify string starting with alphanumeric%s", VTY_NEWLINE);
3347 return CMD_WARNING;
3348 }
3349
3350 if (host.password)
paul05865c92005-10-26 05:49:54 +00003351 XFREE (MTYPE_HOST, host.password);
paul718e3742002-12-13 20:15:29 +00003352 host.password = NULL;
3353
3354 if (host.encrypt)
3355 {
3356 if (host.password_encrypt)
paul05865c92005-10-26 05:49:54 +00003357 XFREE (MTYPE_HOST, host.password_encrypt);
3358 host.password_encrypt = XSTRDUP (MTYPE_HOST, zencrypt (argv[0]));
paul718e3742002-12-13 20:15:29 +00003359 }
3360 else
paul05865c92005-10-26 05:49:54 +00003361 host.password = XSTRDUP (MTYPE_HOST, argv[0]);
paul718e3742002-12-13 20:15:29 +00003362
3363 return CMD_SUCCESS;
3364}
3365
3366ALIAS (config_password, password_text_cmd,
3367 "password LINE",
3368 "Assign the terminal connection password\n"
3369 "The UNENCRYPTED (cleartext) line password\n")
3370
3371/* VTY enable password set. */
3372DEFUN (config_enable_password, enable_password_cmd,
3373 "enable password (8|) WORD",
3374 "Modify enable password parameters\n"
3375 "Assign the privileged level password\n"
3376 "Specifies a HIDDEN password will follow\n"
3377 "dummy string \n"
3378 "The HIDDEN 'enable' password string\n")
3379{
3380 /* Argument check. */
3381 if (argc == 0)
3382 {
3383 vty_out (vty, "Please specify password.%s", VTY_NEWLINE);
3384 return CMD_WARNING;
3385 }
3386
3387 /* Crypt type is specified. */
3388 if (argc == 2)
3389 {
3390 if (*argv[0] == '8')
3391 {
3392 if (host.enable)
paul05865c92005-10-26 05:49:54 +00003393 XFREE (MTYPE_HOST, host.enable);
paul718e3742002-12-13 20:15:29 +00003394 host.enable = NULL;
3395
3396 if (host.enable_encrypt)
paul05865c92005-10-26 05:49:54 +00003397 XFREE (MTYPE_HOST, host.enable_encrypt);
3398 host.enable_encrypt = XSTRDUP (MTYPE_HOST, argv[1]);
paul718e3742002-12-13 20:15:29 +00003399
3400 return CMD_SUCCESS;
3401 }
3402 else
3403 {
3404 vty_out (vty, "Unknown encryption type.%s", VTY_NEWLINE);
3405 return CMD_WARNING;
3406 }
3407 }
3408
3409 if (!isalnum ((int) *argv[0]))
3410 {
3411 vty_out (vty,
3412 "Please specify string starting with alphanumeric%s", VTY_NEWLINE);
3413 return CMD_WARNING;
3414 }
3415
3416 if (host.enable)
paul05865c92005-10-26 05:49:54 +00003417 XFREE (MTYPE_HOST, host.enable);
paul718e3742002-12-13 20:15:29 +00003418 host.enable = NULL;
3419
3420 /* Plain password input. */
3421 if (host.encrypt)
3422 {
3423 if (host.enable_encrypt)
paul05865c92005-10-26 05:49:54 +00003424 XFREE (MTYPE_HOST, host.enable_encrypt);
3425 host.enable_encrypt = XSTRDUP (MTYPE_HOST, zencrypt (argv[0]));
paul718e3742002-12-13 20:15:29 +00003426 }
3427 else
paul05865c92005-10-26 05:49:54 +00003428 host.enable = XSTRDUP (MTYPE_HOST, argv[0]);
paul718e3742002-12-13 20:15:29 +00003429
3430 return CMD_SUCCESS;
3431}
3432
3433ALIAS (config_enable_password,
3434 enable_password_text_cmd,
3435 "enable password LINE",
3436 "Modify enable password parameters\n"
3437 "Assign the privileged level password\n"
3438 "The UNENCRYPTED (cleartext) 'enable' password\n")
3439
3440/* VTY enable password delete. */
3441DEFUN (no_config_enable_password, no_enable_password_cmd,
3442 "no enable password",
3443 NO_STR
3444 "Modify enable password parameters\n"
3445 "Assign the privileged level password\n")
3446{
3447 if (host.enable)
paul05865c92005-10-26 05:49:54 +00003448 XFREE (MTYPE_HOST, host.enable);
paul718e3742002-12-13 20:15:29 +00003449 host.enable = NULL;
3450
3451 if (host.enable_encrypt)
paul05865c92005-10-26 05:49:54 +00003452 XFREE (MTYPE_HOST, host.enable_encrypt);
paul718e3742002-12-13 20:15:29 +00003453 host.enable_encrypt = NULL;
3454
3455 return CMD_SUCCESS;
3456}
3457
3458DEFUN (service_password_encrypt,
3459 service_password_encrypt_cmd,
3460 "service password-encryption",
3461 "Set up miscellaneous service\n"
3462 "Enable encrypted passwords\n")
3463{
3464 if (host.encrypt)
3465 return CMD_SUCCESS;
3466
3467 host.encrypt = 1;
3468
3469 if (host.password)
3470 {
3471 if (host.password_encrypt)
paul05865c92005-10-26 05:49:54 +00003472 XFREE (MTYPE_HOST, host.password_encrypt);
3473 host.password_encrypt = XSTRDUP (MTYPE_HOST, zencrypt (host.password));
paul718e3742002-12-13 20:15:29 +00003474 }
3475 if (host.enable)
3476 {
3477 if (host.enable_encrypt)
paul05865c92005-10-26 05:49:54 +00003478 XFREE (MTYPE_HOST, host.enable_encrypt);
3479 host.enable_encrypt = XSTRDUP (MTYPE_HOST, zencrypt (host.enable));
paul718e3742002-12-13 20:15:29 +00003480 }
3481
3482 return CMD_SUCCESS;
3483}
3484
3485DEFUN (no_service_password_encrypt,
3486 no_service_password_encrypt_cmd,
3487 "no service password-encryption",
3488 NO_STR
3489 "Set up miscellaneous service\n"
3490 "Enable encrypted passwords\n")
3491{
3492 if (! host.encrypt)
3493 return CMD_SUCCESS;
3494
3495 host.encrypt = 0;
3496
3497 if (host.password_encrypt)
paul05865c92005-10-26 05:49:54 +00003498 XFREE (MTYPE_HOST, host.password_encrypt);
paul718e3742002-12-13 20:15:29 +00003499 host.password_encrypt = NULL;
3500
3501 if (host.enable_encrypt)
paul05865c92005-10-26 05:49:54 +00003502 XFREE (MTYPE_HOST, host.enable_encrypt);
paul718e3742002-12-13 20:15:29 +00003503 host.enable_encrypt = NULL;
3504
3505 return CMD_SUCCESS;
3506}
3507
3508DEFUN (config_terminal_length, config_terminal_length_cmd,
3509 "terminal length <0-512>",
3510 "Set terminal line parameters\n"
3511 "Set number of lines on a screen\n"
3512 "Number of lines on screen (0 for no pausing)\n")
3513{
3514 int lines;
3515 char *endptr = NULL;
3516
3517 lines = strtol (argv[0], &endptr, 10);
3518 if (lines < 0 || lines > 512 || *endptr != '\0')
3519 {
3520 vty_out (vty, "length is malformed%s", VTY_NEWLINE);
3521 return CMD_WARNING;
3522 }
3523 vty->lines = lines;
3524
3525 return CMD_SUCCESS;
3526}
3527
3528DEFUN (config_terminal_no_length, config_terminal_no_length_cmd,
3529 "terminal no length",
3530 "Set terminal line parameters\n"
3531 NO_STR
3532 "Set number of lines on a screen\n")
3533{
3534 vty->lines = -1;
3535 return CMD_SUCCESS;
3536}
3537
3538DEFUN (service_terminal_length, service_terminal_length_cmd,
3539 "service terminal-length <0-512>",
3540 "Set up miscellaneous service\n"
3541 "System wide terminal length configuration\n"
3542 "Number of lines of VTY (0 means no line control)\n")
3543{
3544 int lines;
3545 char *endptr = NULL;
3546
3547 lines = strtol (argv[0], &endptr, 10);
3548 if (lines < 0 || lines > 512 || *endptr != '\0')
3549 {
3550 vty_out (vty, "length is malformed%s", VTY_NEWLINE);
3551 return CMD_WARNING;
3552 }
3553 host.lines = lines;
3554
3555 return CMD_SUCCESS;
3556}
3557
3558DEFUN (no_service_terminal_length, no_service_terminal_length_cmd,
3559 "no service terminal-length [<0-512>]",
3560 NO_STR
3561 "Set up miscellaneous service\n"
3562 "System wide terminal length configuration\n"
3563 "Number of lines of VTY (0 means no line control)\n")
3564{
3565 host.lines = -1;
3566 return CMD_SUCCESS;
3567}
3568
ajs2885f722004-12-17 23:16:33 +00003569DEFUN_HIDDEN (do_echo,
3570 echo_cmd,
3571 "echo .MESSAGE",
3572 "Echo a message back to the vty\n"
3573 "The message to echo\n")
3574{
3575 char *message;
3576
ajsf6834d42005-01-28 20:28:35 +00003577 vty_out (vty, "%s%s", ((message = argv_concat(argv, argc, 0)) ? message : ""),
3578 VTY_NEWLINE);
3579 if (message)
3580 XFREE(MTYPE_TMP, message);
ajs2885f722004-12-17 23:16:33 +00003581 return CMD_SUCCESS;
3582}
3583
ajs274a4a42004-12-07 15:39:31 +00003584DEFUN (config_logmsg,
3585 config_logmsg_cmd,
3586 "logmsg "LOG_LEVELS" .MESSAGE",
3587 "Send a message to enabled logging destinations\n"
3588 LOG_LEVEL_DESC
3589 "The message to send\n")
3590{
3591 int level;
3592 char *message;
3593
3594 if ((level = level_match(argv[0])) == ZLOG_DISABLED)
3595 return CMD_ERR_NO_MATCH;
3596
Christian Hammersfc951862011-03-23 13:07:55 +03003597 zlog(NULL, level, "%s", ((message = argv_concat(argv, argc, 1)) ? message : ""));
ajsf6834d42005-01-28 20:28:35 +00003598 if (message)
3599 XFREE(MTYPE_TMP, message);
ajs274a4a42004-12-07 15:39:31 +00003600 return CMD_SUCCESS;
3601}
3602
3603DEFUN (show_logging,
3604 show_logging_cmd,
3605 "show logging",
3606 SHOW_STR
3607 "Show current logging configuration\n")
3608{
3609 struct zlog *zl = zlog_default;
3610
3611 vty_out (vty, "Syslog logging: ");
3612 if (zl->maxlvl[ZLOG_DEST_SYSLOG] == ZLOG_DISABLED)
3613 vty_out (vty, "disabled");
3614 else
3615 vty_out (vty, "level %s, facility %s, ident %s",
3616 zlog_priority[zl->maxlvl[ZLOG_DEST_SYSLOG]],
3617 facility_name(zl->facility), zl->ident);
3618 vty_out (vty, "%s", VTY_NEWLINE);
3619
3620 vty_out (vty, "Stdout logging: ");
3621 if (zl->maxlvl[ZLOG_DEST_STDOUT] == ZLOG_DISABLED)
3622 vty_out (vty, "disabled");
3623 else
3624 vty_out (vty, "level %s",
3625 zlog_priority[zl->maxlvl[ZLOG_DEST_STDOUT]]);
3626 vty_out (vty, "%s", VTY_NEWLINE);
3627
3628 vty_out (vty, "Monitor logging: ");
3629 if (zl->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
3630 vty_out (vty, "disabled");
3631 else
3632 vty_out (vty, "level %s",
3633 zlog_priority[zl->maxlvl[ZLOG_DEST_MONITOR]]);
3634 vty_out (vty, "%s", VTY_NEWLINE);
3635
3636 vty_out (vty, "File logging: ");
3637 if ((zl->maxlvl[ZLOG_DEST_FILE] == ZLOG_DISABLED) ||
3638 !zl->fp)
3639 vty_out (vty, "disabled");
3640 else
3641 vty_out (vty, "level %s, filename %s",
3642 zlog_priority[zl->maxlvl[ZLOG_DEST_FILE]],
3643 zl->filename);
3644 vty_out (vty, "%s", VTY_NEWLINE);
3645
3646 vty_out (vty, "Protocol name: %s%s",
3647 zlog_proto_names[zl->protocol], VTY_NEWLINE);
3648 vty_out (vty, "Record priority: %s%s",
3649 (zl->record_priority ? "enabled" : "disabled"), VTY_NEWLINE);
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +00003650 vty_out (vty, "Timestamp precision: %d%s",
3651 zl->timestamp_precision, VTY_NEWLINE);
ajs274a4a42004-12-07 15:39:31 +00003652
3653 return CMD_SUCCESS;
3654}
3655
paul718e3742002-12-13 20:15:29 +00003656DEFUN (config_log_stdout,
3657 config_log_stdout_cmd,
3658 "log stdout",
3659 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003660 "Set stdout logging level\n")
paul718e3742002-12-13 20:15:29 +00003661{
ajs274a4a42004-12-07 15:39:31 +00003662 zlog_set_level (NULL, ZLOG_DEST_STDOUT, zlog_default->default_lvl);
3663 return CMD_SUCCESS;
3664}
3665
3666DEFUN (config_log_stdout_level,
3667 config_log_stdout_level_cmd,
3668 "log stdout "LOG_LEVELS,
3669 "Logging control\n"
3670 "Set stdout logging level\n"
3671 LOG_LEVEL_DESC)
3672{
3673 int level;
3674
3675 if ((level = level_match(argv[0])) == ZLOG_DISABLED)
3676 return CMD_ERR_NO_MATCH;
3677 zlog_set_level (NULL, ZLOG_DEST_STDOUT, level);
paul718e3742002-12-13 20:15:29 +00003678 return CMD_SUCCESS;
3679}
3680
3681DEFUN (no_config_log_stdout,
3682 no_config_log_stdout_cmd,
ajs274a4a42004-12-07 15:39:31 +00003683 "no log stdout [LEVEL]",
paul718e3742002-12-13 20:15:29 +00003684 NO_STR
3685 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003686 "Cancel logging to stdout\n"
3687 "Logging level\n")
paul718e3742002-12-13 20:15:29 +00003688{
ajs274a4a42004-12-07 15:39:31 +00003689 zlog_set_level (NULL, ZLOG_DEST_STDOUT, ZLOG_DISABLED);
paul718e3742002-12-13 20:15:29 +00003690 return CMD_SUCCESS;
3691}
3692
ajs274a4a42004-12-07 15:39:31 +00003693DEFUN (config_log_monitor,
3694 config_log_monitor_cmd,
3695 "log monitor",
paul718e3742002-12-13 20:15:29 +00003696 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003697 "Set terminal line (monitor) logging level\n")
3698{
3699 zlog_set_level (NULL, ZLOG_DEST_MONITOR, zlog_default->default_lvl);
3700 return CMD_SUCCESS;
3701}
3702
3703DEFUN (config_log_monitor_level,
3704 config_log_monitor_level_cmd,
3705 "log monitor "LOG_LEVELS,
3706 "Logging control\n"
3707 "Set terminal line (monitor) logging level\n"
3708 LOG_LEVEL_DESC)
3709{
3710 int level;
3711
3712 if ((level = level_match(argv[0])) == ZLOG_DISABLED)
3713 return CMD_ERR_NO_MATCH;
3714 zlog_set_level (NULL, ZLOG_DEST_MONITOR, level);
3715 return CMD_SUCCESS;
3716}
3717
3718DEFUN (no_config_log_monitor,
3719 no_config_log_monitor_cmd,
3720 "no log monitor [LEVEL]",
3721 NO_STR
3722 "Logging control\n"
3723 "Disable terminal line (monitor) logging\n"
3724 "Logging level\n")
3725{
3726 zlog_set_level (NULL, ZLOG_DEST_MONITOR, ZLOG_DISABLED);
3727 return CMD_SUCCESS;
3728}
3729
3730static int
3731set_log_file(struct vty *vty, const char *fname, int loglevel)
paul718e3742002-12-13 20:15:29 +00003732{
3733 int ret;
paul9035efa2004-10-10 11:56:56 +00003734 char *p = NULL;
3735 const char *fullpath;
3736
paul718e3742002-12-13 20:15:29 +00003737 /* Path detection. */
ajs274a4a42004-12-07 15:39:31 +00003738 if (! IS_DIRECTORY_SEP (*fname))
paul718e3742002-12-13 20:15:29 +00003739 {
paul9035efa2004-10-10 11:56:56 +00003740 char cwd[MAXPATHLEN+1];
3741 cwd[MAXPATHLEN] = '\0';
3742
3743 if (getcwd (cwd, MAXPATHLEN) == NULL)
3744 {
3745 zlog_err ("config_log_file: Unable to alloc mem!");
3746 return CMD_WARNING;
3747 }
3748
ajs274a4a42004-12-07 15:39:31 +00003749 if ( (p = XMALLOC (MTYPE_TMP, strlen (cwd) + strlen (fname) + 2))
paul9035efa2004-10-10 11:56:56 +00003750 == NULL)
3751 {
3752 zlog_err ("config_log_file: Unable to alloc mem!");
3753 return CMD_WARNING;
3754 }
ajs274a4a42004-12-07 15:39:31 +00003755 sprintf (p, "%s/%s", cwd, fname);
paul9035efa2004-10-10 11:56:56 +00003756 fullpath = p;
paul718e3742002-12-13 20:15:29 +00003757 }
3758 else
ajs274a4a42004-12-07 15:39:31 +00003759 fullpath = fname;
paul718e3742002-12-13 20:15:29 +00003760
ajs274a4a42004-12-07 15:39:31 +00003761 ret = zlog_set_file (NULL, fullpath, loglevel);
paul718e3742002-12-13 20:15:29 +00003762
paul9035efa2004-10-10 11:56:56 +00003763 if (p)
3764 XFREE (MTYPE_TMP, p);
3765
paul718e3742002-12-13 20:15:29 +00003766 if (!ret)
3767 {
ajs274a4a42004-12-07 15:39:31 +00003768 vty_out (vty, "can't open logfile %s\n", fname);
paul718e3742002-12-13 20:15:29 +00003769 return CMD_WARNING;
3770 }
3771
3772 if (host.logfile)
paul05865c92005-10-26 05:49:54 +00003773 XFREE (MTYPE_HOST, host.logfile);
paul718e3742002-12-13 20:15:29 +00003774
paul05865c92005-10-26 05:49:54 +00003775 host.logfile = XSTRDUP (MTYPE_HOST, fname);
paul718e3742002-12-13 20:15:29 +00003776
3777 return CMD_SUCCESS;
3778}
3779
ajs274a4a42004-12-07 15:39:31 +00003780DEFUN (config_log_file,
3781 config_log_file_cmd,
3782 "log file FILENAME",
3783 "Logging control\n"
3784 "Logging to file\n"
3785 "Logging filename\n")
3786{
3787 return set_log_file(vty, argv[0], zlog_default->default_lvl);
3788}
3789
3790DEFUN (config_log_file_level,
3791 config_log_file_level_cmd,
3792 "log file FILENAME "LOG_LEVELS,
3793 "Logging control\n"
3794 "Logging to file\n"
3795 "Logging filename\n"
3796 LOG_LEVEL_DESC)
3797{
3798 int level;
3799
3800 if ((level = level_match(argv[1])) == ZLOG_DISABLED)
3801 return CMD_ERR_NO_MATCH;
3802 return set_log_file(vty, argv[0], level);
3803}
3804
paul718e3742002-12-13 20:15:29 +00003805DEFUN (no_config_log_file,
3806 no_config_log_file_cmd,
3807 "no log file [FILENAME]",
3808 NO_STR
3809 "Logging control\n"
3810 "Cancel logging to file\n"
3811 "Logging file name\n")
3812{
3813 zlog_reset_file (NULL);
3814
3815 if (host.logfile)
paul05865c92005-10-26 05:49:54 +00003816 XFREE (MTYPE_HOST, host.logfile);
paul718e3742002-12-13 20:15:29 +00003817
3818 host.logfile = NULL;
3819
3820 return CMD_SUCCESS;
3821}
3822
ajs274a4a42004-12-07 15:39:31 +00003823ALIAS (no_config_log_file,
3824 no_config_log_file_level_cmd,
3825 "no log file FILENAME LEVEL",
3826 NO_STR
3827 "Logging control\n"
3828 "Cancel logging to file\n"
3829 "Logging file name\n"
3830 "Logging level\n")
3831
paul718e3742002-12-13 20:15:29 +00003832DEFUN (config_log_syslog,
3833 config_log_syslog_cmd,
3834 "log syslog",
3835 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003836 "Set syslog logging level\n")
paul718e3742002-12-13 20:15:29 +00003837{
ajs274a4a42004-12-07 15:39:31 +00003838 zlog_set_level (NULL, ZLOG_DEST_SYSLOG, zlog_default->default_lvl);
paul12ab19f2003-07-26 06:14:55 +00003839 return CMD_SUCCESS;
3840}
3841
ajs274a4a42004-12-07 15:39:31 +00003842DEFUN (config_log_syslog_level,
3843 config_log_syslog_level_cmd,
3844 "log syslog "LOG_LEVELS,
paul12ab19f2003-07-26 06:14:55 +00003845 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003846 "Set syslog logging level\n"
3847 LOG_LEVEL_DESC)
paul12ab19f2003-07-26 06:14:55 +00003848{
ajs274a4a42004-12-07 15:39:31 +00003849 int level;
paul12ab19f2003-07-26 06:14:55 +00003850
ajs274a4a42004-12-07 15:39:31 +00003851 if ((level = level_match(argv[0])) == ZLOG_DISABLED)
3852 return CMD_ERR_NO_MATCH;
3853 zlog_set_level (NULL, ZLOG_DEST_SYSLOG, level);
3854 return CMD_SUCCESS;
3855}
paul12ab19f2003-07-26 06:14:55 +00003856
ajs274a4a42004-12-07 15:39:31 +00003857DEFUN_DEPRECATED (config_log_syslog_facility,
3858 config_log_syslog_facility_cmd,
3859 "log syslog facility "LOG_FACILITIES,
3860 "Logging control\n"
3861 "Logging goes to syslog\n"
3862 "(Deprecated) Facility parameter for syslog messages\n"
3863 LOG_FACILITY_DESC)
3864{
3865 int facility;
paul12ab19f2003-07-26 06:14:55 +00003866
ajs274a4a42004-12-07 15:39:31 +00003867 if ((facility = facility_match(argv[0])) < 0)
3868 return CMD_ERR_NO_MATCH;
3869
3870 zlog_set_level (NULL, ZLOG_DEST_SYSLOG, zlog_default->default_lvl);
paul12ab19f2003-07-26 06:14:55 +00003871 zlog_default->facility = facility;
paul718e3742002-12-13 20:15:29 +00003872 return CMD_SUCCESS;
3873}
3874
3875DEFUN (no_config_log_syslog,
3876 no_config_log_syslog_cmd,
ajs274a4a42004-12-07 15:39:31 +00003877 "no log syslog [LEVEL]",
paul718e3742002-12-13 20:15:29 +00003878 NO_STR
3879 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003880 "Cancel logging to syslog\n"
3881 "Logging level\n")
paul718e3742002-12-13 20:15:29 +00003882{
ajs274a4a42004-12-07 15:39:31 +00003883 zlog_set_level (NULL, ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
paul718e3742002-12-13 20:15:29 +00003884 return CMD_SUCCESS;
3885}
3886
paul12ab19f2003-07-26 06:14:55 +00003887ALIAS (no_config_log_syslog,
3888 no_config_log_syslog_facility_cmd,
ajs274a4a42004-12-07 15:39:31 +00003889 "no log syslog facility "LOG_FACILITIES,
paul12ab19f2003-07-26 06:14:55 +00003890 NO_STR
3891 "Logging control\n"
3892 "Logging goes to syslog\n"
3893 "Facility parameter for syslog messages\n"
ajs274a4a42004-12-07 15:39:31 +00003894 LOG_FACILITY_DESC)
paul12ab19f2003-07-26 06:14:55 +00003895
ajs274a4a42004-12-07 15:39:31 +00003896DEFUN (config_log_facility,
3897 config_log_facility_cmd,
3898 "log facility "LOG_FACILITIES,
paul718e3742002-12-13 20:15:29 +00003899 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003900 "Facility parameter for syslog messages\n"
3901 LOG_FACILITY_DESC)
paul718e3742002-12-13 20:15:29 +00003902{
ajs274a4a42004-12-07 15:39:31 +00003903 int facility;
3904
3905 if ((facility = facility_match(argv[0])) < 0)
3906 return CMD_ERR_NO_MATCH;
3907 zlog_default->facility = facility;
3908 return CMD_SUCCESS;
paul718e3742002-12-13 20:15:29 +00003909}
3910
ajs274a4a42004-12-07 15:39:31 +00003911DEFUN (no_config_log_facility,
3912 no_config_log_facility_cmd,
3913 "no log facility [FACILITY]",
paul718e3742002-12-13 20:15:29 +00003914 NO_STR
3915 "Logging control\n"
ajs274a4a42004-12-07 15:39:31 +00003916 "Reset syslog facility to default (daemon)\n"
3917 "Syslog facility\n")
paul718e3742002-12-13 20:15:29 +00003918{
ajs274a4a42004-12-07 15:39:31 +00003919 zlog_default->facility = LOG_DAEMON;
3920 return CMD_SUCCESS;
3921}
3922
3923DEFUN_DEPRECATED (config_log_trap,
3924 config_log_trap_cmd,
3925 "log trap "LOG_LEVELS,
3926 "Logging control\n"
3927 "(Deprecated) Set logging level and default for all destinations\n"
3928 LOG_LEVEL_DESC)
3929{
3930 int new_level ;
3931 int i;
3932
3933 if ((new_level = level_match(argv[0])) == ZLOG_DISABLED)
3934 return CMD_ERR_NO_MATCH;
3935
3936 zlog_default->default_lvl = new_level;
3937 for (i = 0; i < ZLOG_NUM_DESTS; i++)
3938 if (zlog_default->maxlvl[i] != ZLOG_DISABLED)
3939 zlog_default->maxlvl[i] = new_level;
3940 return CMD_SUCCESS;
3941}
3942
3943DEFUN_DEPRECATED (no_config_log_trap,
3944 no_config_log_trap_cmd,
3945 "no log trap [LEVEL]",
3946 NO_STR
3947 "Logging control\n"
3948 "Permit all logging information\n"
3949 "Logging level\n")
3950{
3951 zlog_default->default_lvl = LOG_DEBUG;
paul718e3742002-12-13 20:15:29 +00003952 return CMD_SUCCESS;
3953}
3954
3955DEFUN (config_log_record_priority,
3956 config_log_record_priority_cmd,
3957 "log record-priority",
3958 "Logging control\n"
3959 "Log the priority of the message within the message\n")
3960{
3961 zlog_default->record_priority = 1 ;
3962 return CMD_SUCCESS;
3963}
3964
3965DEFUN (no_config_log_record_priority,
3966 no_config_log_record_priority_cmd,
3967 "no log record-priority",
3968 NO_STR
3969 "Logging control\n"
3970 "Do not log the priority of the message within the message\n")
3971{
3972 zlog_default->record_priority = 0 ;
3973 return CMD_SUCCESS;
3974}
3975
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +00003976DEFUN (config_log_timestamp_precision,
3977 config_log_timestamp_precision_cmd,
3978 "log timestamp precision <0-6>",
3979 "Logging control\n"
3980 "Timestamp configuration\n"
3981 "Set the timestamp precision\n"
3982 "Number of subsecond digits\n")
3983{
3984 if (argc != 1)
3985 {
3986 vty_out (vty, "Insufficient arguments%s", VTY_NEWLINE);
3987 return CMD_WARNING;
3988 }
3989
3990 VTY_GET_INTEGER_RANGE("Timestamp Precision",
3991 zlog_default->timestamp_precision, argv[0], 0, 6);
3992 return CMD_SUCCESS;
3993}
3994
3995DEFUN (no_config_log_timestamp_precision,
3996 no_config_log_timestamp_precision_cmd,
3997 "no log timestamp precision",
3998 NO_STR
3999 "Logging control\n"
4000 "Timestamp configuration\n"
4001 "Reset the timestamp precision to the default value of 0\n")
4002{
4003 zlog_default->timestamp_precision = 0 ;
4004 return CMD_SUCCESS;
4005}
4006
paul3b0c5d92005-03-08 10:43:43 +00004007DEFUN (banner_motd_file,
4008 banner_motd_file_cmd,
4009 "banner motd file [FILE]",
4010 "Set banner\n"
4011 "Banner for motd\n"
4012 "Banner from a file\n"
4013 "Filename\n")
4014{
paulb45da6f2005-03-08 15:16:57 +00004015 if (host.motdfile)
paul05865c92005-10-26 05:49:54 +00004016 XFREE (MTYPE_HOST, host.motdfile);
4017 host.motdfile = XSTRDUP (MTYPE_HOST, argv[0]);
paulb45da6f2005-03-08 15:16:57 +00004018
paul3b0c5d92005-03-08 10:43:43 +00004019 return CMD_SUCCESS;
4020}
paul718e3742002-12-13 20:15:29 +00004021
4022DEFUN (banner_motd_default,
4023 banner_motd_default_cmd,
4024 "banner motd default",
4025 "Set banner string\n"
4026 "Strings for motd\n"
4027 "Default string\n")
4028{
4029 host.motd = default_motd;
4030 return CMD_SUCCESS;
4031}
4032
4033DEFUN (no_banner_motd,
4034 no_banner_motd_cmd,
4035 "no banner motd",
4036 NO_STR
4037 "Set banner string\n"
4038 "Strings for motd\n")
4039{
4040 host.motd = NULL;
paul22085182005-03-08 16:00:12 +00004041 if (host.motdfile)
paul05865c92005-10-26 05:49:54 +00004042 XFREE (MTYPE_HOST, host.motdfile);
paul3b0c5d92005-03-08 10:43:43 +00004043 host.motdfile = NULL;
paul718e3742002-12-13 20:15:29 +00004044 return CMD_SUCCESS;
4045}
4046
4047/* Set config filename. Called from vty.c */
4048void
4049host_config_set (char *filename)
4050{
Chris Caputo228da422009-07-18 05:44:03 +00004051 if (host.config)
4052 XFREE (MTYPE_HOST, host.config);
paul05865c92005-10-26 05:49:54 +00004053 host.config = XSTRDUP (MTYPE_HOST, filename);
paul718e3742002-12-13 20:15:29 +00004054}
4055
4056void
4057install_default (enum node_type node)
4058{
4059 install_element (node, &config_exit_cmd);
4060 install_element (node, &config_quit_cmd);
4061 install_element (node, &config_end_cmd);
4062 install_element (node, &config_help_cmd);
4063 install_element (node, &config_list_cmd);
4064
4065 install_element (node, &config_write_terminal_cmd);
4066 install_element (node, &config_write_file_cmd);
4067 install_element (node, &config_write_memory_cmd);
4068 install_element (node, &config_write_cmd);
4069 install_element (node, &show_running_config_cmd);
4070}
4071
4072/* Initialize command interface. Install basic nodes and commands. */
4073void
4074cmd_init (int terminal)
4075{
Christian Frankecd40b322013-09-30 12:27:51 +00004076 command_cr = XSTRDUP(MTYPE_CMD_TOKENS, "<cr>");
4077 token_cr.type = TOKEN_TERMINAL;
David Lamparter10bac802015-05-05 11:10:20 +02004078 token_cr.terminal = TERMINAL_LITERAL;
Christian Frankecd40b322013-09-30 12:27:51 +00004079 token_cr.cmd = command_cr;
4080 token_cr.desc = XSTRDUP(MTYPE_CMD_TOKENS, "");
Chris Caputo228da422009-07-18 05:44:03 +00004081
paul718e3742002-12-13 20:15:29 +00004082 /* Allocate initial top vector of commands. */
4083 cmdvec = vector_init (VECTOR_MIN_SIZE);
4084
4085 /* Default host value settings. */
4086 host.name = NULL;
4087 host.password = NULL;
4088 host.enable = NULL;
4089 host.logfile = NULL;
4090 host.config = NULL;
4091 host.lines = -1;
4092 host.motd = default_motd;
paul3b0c5d92005-03-08 10:43:43 +00004093 host.motdfile = NULL;
paul718e3742002-12-13 20:15:29 +00004094
4095 /* Install top nodes. */
4096 install_node (&view_node, NULL);
4097 install_node (&enable_node, NULL);
4098 install_node (&auth_node, NULL);
4099 install_node (&auth_enable_node, NULL);
Paul Jakma62687ff2008-08-23 14:27:06 +01004100 install_node (&restricted_node, NULL);
paul718e3742002-12-13 20:15:29 +00004101 install_node (&config_node, config_write_host);
4102
4103 /* Each node's basic commands. */
4104 install_element (VIEW_NODE, &show_version_cmd);
4105 if (terminal)
4106 {
4107 install_element (VIEW_NODE, &config_list_cmd);
4108 install_element (VIEW_NODE, &config_exit_cmd);
4109 install_element (VIEW_NODE, &config_quit_cmd);
4110 install_element (VIEW_NODE, &config_help_cmd);
4111 install_element (VIEW_NODE, &config_enable_cmd);
4112 install_element (VIEW_NODE, &config_terminal_length_cmd);
4113 install_element (VIEW_NODE, &config_terminal_no_length_cmd);
ajs274a4a42004-12-07 15:39:31 +00004114 install_element (VIEW_NODE, &show_logging_cmd);
ajs2885f722004-12-17 23:16:33 +00004115 install_element (VIEW_NODE, &echo_cmd);
Paul Jakma62687ff2008-08-23 14:27:06 +01004116
4117 install_element (RESTRICTED_NODE, &config_list_cmd);
4118 install_element (RESTRICTED_NODE, &config_exit_cmd);
4119 install_element (RESTRICTED_NODE, &config_quit_cmd);
4120 install_element (RESTRICTED_NODE, &config_help_cmd);
4121 install_element (RESTRICTED_NODE, &config_enable_cmd);
4122 install_element (RESTRICTED_NODE, &config_terminal_length_cmd);
4123 install_element (RESTRICTED_NODE, &config_terminal_no_length_cmd);
4124 install_element (RESTRICTED_NODE, &echo_cmd);
paul718e3742002-12-13 20:15:29 +00004125 }
4126
4127 if (terminal)
4128 {
4129 install_default (ENABLE_NODE);
4130 install_element (ENABLE_NODE, &config_disable_cmd);
4131 install_element (ENABLE_NODE, &config_terminal_cmd);
4132 install_element (ENABLE_NODE, &copy_runningconfig_startupconfig_cmd);
4133 }
4134 install_element (ENABLE_NODE, &show_startup_config_cmd);
4135 install_element (ENABLE_NODE, &show_version_cmd);
paul718e3742002-12-13 20:15:29 +00004136
4137 if (terminal)
paul718e3742002-12-13 20:15:29 +00004138 {
hassoe7168df2004-10-03 20:11:32 +00004139 install_element (ENABLE_NODE, &config_terminal_length_cmd);
4140 install_element (ENABLE_NODE, &config_terminal_no_length_cmd);
ajs274a4a42004-12-07 15:39:31 +00004141 install_element (ENABLE_NODE, &show_logging_cmd);
ajs2885f722004-12-17 23:16:33 +00004142 install_element (ENABLE_NODE, &echo_cmd);
ajs274a4a42004-12-07 15:39:31 +00004143 install_element (ENABLE_NODE, &config_logmsg_cmd);
hassoe7168df2004-10-03 20:11:32 +00004144
4145 install_default (CONFIG_NODE);
hassoea8e9d92004-10-07 21:32:14 +00004146 }
4147
4148 install_element (CONFIG_NODE, &hostname_cmd);
4149 install_element (CONFIG_NODE, &no_hostname_cmd);
hassoe7168df2004-10-03 20:11:32 +00004150
hassoea8e9d92004-10-07 21:32:14 +00004151 if (terminal)
4152 {
hassoe7168df2004-10-03 20:11:32 +00004153 install_element (CONFIG_NODE, &password_cmd);
4154 install_element (CONFIG_NODE, &password_text_cmd);
4155 install_element (CONFIG_NODE, &enable_password_cmd);
4156 install_element (CONFIG_NODE, &enable_password_text_cmd);
4157 install_element (CONFIG_NODE, &no_enable_password_cmd);
4158
paul718e3742002-12-13 20:15:29 +00004159 install_element (CONFIG_NODE, &config_log_stdout_cmd);
ajs274a4a42004-12-07 15:39:31 +00004160 install_element (CONFIG_NODE, &config_log_stdout_level_cmd);
paul718e3742002-12-13 20:15:29 +00004161 install_element (CONFIG_NODE, &no_config_log_stdout_cmd);
ajs274a4a42004-12-07 15:39:31 +00004162 install_element (CONFIG_NODE, &config_log_monitor_cmd);
4163 install_element (CONFIG_NODE, &config_log_monitor_level_cmd);
4164 install_element (CONFIG_NODE, &no_config_log_monitor_cmd);
paul718e3742002-12-13 20:15:29 +00004165 install_element (CONFIG_NODE, &config_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00004166 install_element (CONFIG_NODE, &config_log_file_level_cmd);
paul718e3742002-12-13 20:15:29 +00004167 install_element (CONFIG_NODE, &no_config_log_file_cmd);
ajs274a4a42004-12-07 15:39:31 +00004168 install_element (CONFIG_NODE, &no_config_log_file_level_cmd);
paul718e3742002-12-13 20:15:29 +00004169 install_element (CONFIG_NODE, &config_log_syslog_cmd);
ajs274a4a42004-12-07 15:39:31 +00004170 install_element (CONFIG_NODE, &config_log_syslog_level_cmd);
paul12ab19f2003-07-26 06:14:55 +00004171 install_element (CONFIG_NODE, &config_log_syslog_facility_cmd);
paul718e3742002-12-13 20:15:29 +00004172 install_element (CONFIG_NODE, &no_config_log_syslog_cmd);
paul12ab19f2003-07-26 06:14:55 +00004173 install_element (CONFIG_NODE, &no_config_log_syslog_facility_cmd);
ajs274a4a42004-12-07 15:39:31 +00004174 install_element (CONFIG_NODE, &config_log_facility_cmd);
4175 install_element (CONFIG_NODE, &no_config_log_facility_cmd);
paul718e3742002-12-13 20:15:29 +00004176 install_element (CONFIG_NODE, &config_log_trap_cmd);
4177 install_element (CONFIG_NODE, &no_config_log_trap_cmd);
4178 install_element (CONFIG_NODE, &config_log_record_priority_cmd);
4179 install_element (CONFIG_NODE, &no_config_log_record_priority_cmd);
Andrew J. Schorr1ed72e02007-04-28 22:14:10 +00004180 install_element (CONFIG_NODE, &config_log_timestamp_precision_cmd);
4181 install_element (CONFIG_NODE, &no_config_log_timestamp_precision_cmd);
paul718e3742002-12-13 20:15:29 +00004182 install_element (CONFIG_NODE, &service_password_encrypt_cmd);
4183 install_element (CONFIG_NODE, &no_service_password_encrypt_cmd);
4184 install_element (CONFIG_NODE, &banner_motd_default_cmd);
paul3b0c5d92005-03-08 10:43:43 +00004185 install_element (CONFIG_NODE, &banner_motd_file_cmd);
paul718e3742002-12-13 20:15:29 +00004186 install_element (CONFIG_NODE, &no_banner_motd_cmd);
4187 install_element (CONFIG_NODE, &service_terminal_length_cmd);
4188 install_element (CONFIG_NODE, &no_service_terminal_length_cmd);
paul718e3742002-12-13 20:15:29 +00004189
paul354d1192005-04-25 16:26:42 +00004190 install_element (VIEW_NODE, &show_thread_cpu_cmd);
4191 install_element (ENABLE_NODE, &show_thread_cpu_cmd);
Paul Jakma62687ff2008-08-23 14:27:06 +01004192 install_element (RESTRICTED_NODE, &show_thread_cpu_cmd);
Paul Jakmae276eb82010-01-09 16:15:00 +00004193
4194 install_element (ENABLE_NODE, &clear_thread_cpu_cmd);
paul354d1192005-04-25 16:26:42 +00004195 install_element (VIEW_NODE, &show_work_queues_cmd);
4196 install_element (ENABLE_NODE, &show_work_queues_cmd);
paul9ab68122003-01-18 01:16:20 +00004197 }
Donald Sharpf31bab42015-06-19 19:26:19 -04004198 srandom(time(NULL));
paul718e3742002-12-13 20:15:29 +00004199}
Chris Caputo228da422009-07-18 05:44:03 +00004200
Christian Frankecd40b322013-09-30 12:27:51 +00004201static void
4202cmd_terminate_token(struct cmd_token *token)
4203{
4204 unsigned int i, j;
4205 vector keyword_vect;
4206
4207 if (token->multiple)
4208 {
4209 for (i = 0; i < vector_active(token->multiple); i++)
4210 cmd_terminate_token(vector_slot(token->multiple, i));
4211 vector_free(token->multiple);
4212 token->multiple = NULL;
4213 }
4214
4215 if (token->keyword)
4216 {
4217 for (i = 0; i < vector_active(token->keyword); i++)
4218 {
4219 keyword_vect = vector_slot(token->keyword, i);
4220 for (j = 0; j < vector_active(keyword_vect); j++)
4221 cmd_terminate_token(vector_slot(keyword_vect, j));
4222 vector_free(keyword_vect);
4223 }
4224 vector_free(token->keyword);
4225 token->keyword = NULL;
4226 }
4227
4228 XFREE(MTYPE_CMD_TOKENS, token->cmd);
4229 XFREE(MTYPE_CMD_TOKENS, token->desc);
4230
4231 XFREE(MTYPE_CMD_TOKENS, token);
4232}
4233
4234static void
4235cmd_terminate_element(struct cmd_element *cmd)
4236{
4237 unsigned int i;
4238
4239 if (cmd->tokens == NULL)
4240 return;
4241
4242 for (i = 0; i < vector_active(cmd->tokens); i++)
4243 cmd_terminate_token(vector_slot(cmd->tokens, i));
4244
4245 vector_free(cmd->tokens);
4246 cmd->tokens = NULL;
4247}
4248
Chris Caputo228da422009-07-18 05:44:03 +00004249void
4250cmd_terminate ()
4251{
Christian Frankecd40b322013-09-30 12:27:51 +00004252 unsigned int i, j;
Chris Caputo228da422009-07-18 05:44:03 +00004253 struct cmd_node *cmd_node;
4254 struct cmd_element *cmd_element;
Christian Frankecd40b322013-09-30 12:27:51 +00004255 vector cmd_node_v;
Chris Caputo228da422009-07-18 05:44:03 +00004256
4257 if (cmdvec)
4258 {
4259 for (i = 0; i < vector_active (cmdvec); i++)
4260 if ((cmd_node = vector_slot (cmdvec, i)) != NULL)
4261 {
4262 cmd_node_v = cmd_node->cmd_vector;
4263
4264 for (j = 0; j < vector_active (cmd_node_v); j++)
Christian Frankecd40b322013-09-30 12:27:51 +00004265 if ((cmd_element = vector_slot (cmd_node_v, j)) != NULL)
4266 cmd_terminate_element(cmd_element);
Chris Caputo228da422009-07-18 05:44:03 +00004267
4268 vector_free (cmd_node_v);
4269 }
4270
4271 vector_free (cmdvec);
4272 cmdvec = NULL;
4273 }
4274
4275 if (command_cr)
Christian Frankecd40b322013-09-30 12:27:51 +00004276 XFREE(MTYPE_CMD_TOKENS, command_cr);
4277 if (token_cr.desc)
4278 XFREE(MTYPE_CMD_TOKENS, token_cr.desc);
Chris Caputo228da422009-07-18 05:44:03 +00004279 if (host.name)
4280 XFREE (MTYPE_HOST, host.name);
4281 if (host.password)
4282 XFREE (MTYPE_HOST, host.password);
4283 if (host.password_encrypt)
4284 XFREE (MTYPE_HOST, host.password_encrypt);
4285 if (host.enable)
4286 XFREE (MTYPE_HOST, host.enable);
4287 if (host.enable_encrypt)
4288 XFREE (MTYPE_HOST, host.enable_encrypt);
4289 if (host.logfile)
4290 XFREE (MTYPE_HOST, host.logfile);
4291 if (host.motdfile)
4292 XFREE (MTYPE_HOST, host.motdfile);
4293 if (host.config)
4294 XFREE (MTYPE_HOST, host.config);
4295}