]> git.proxmox.com Git - mirror_frr.git/blob - lib/command.c
Merge pull request #3206 from qlyoung/mac-token-change
[mirror_frr.git] / lib / command.c
1 /*
2 * CLI backend interface.
3 *
4 * --
5 * Copyright (C) 2016 Cumulus Networks, Inc.
6 * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
7 * Copyright (C) 2013 by Open Source Routing.
8 * Copyright (C) 2013 by Internet Systems Consortium, Inc. ("ISC")
9 *
10 * This file is part of GNU Zebra.
11 *
12 * GNU Zebra is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2, or (at your option) any
15 * later version.
16 *
17 * GNU Zebra is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; see the file COPYING; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 */
26
27 #include <zebra.h>
28 #include <lib/version.h>
29
30 #include "command.h"
31 #include "frrstr.h"
32 #include "memory.h"
33 #include "log.h"
34 #include "log_int.h"
35 #include "thread.h"
36 #include "vector.h"
37 #include "linklist.h"
38 #include "vty.h"
39 #include "workqueue.h"
40 #include "vrf.h"
41 #include "command_match.h"
42 #include "command_graph.h"
43 #include "qobj.h"
44 #include "defaults.h"
45 #include "libfrr.h"
46 #include "jhash.h"
47 #include "hook.h"
48 #include "lib_errors.h"
49
50 DEFINE_MTYPE(LIB, HOST, "Host config")
51 DEFINE_MTYPE(LIB, COMPLETION, "Completion item")
52
53 #define item(x) \
54 { \
55 x, #x \
56 }
57
58 /* clang-format off */
59 const struct message tokennames[] = {
60 item(WORD_TKN),
61 item(VARIABLE_TKN),
62 item(RANGE_TKN),
63 item(IPV4_TKN),
64 item(IPV4_PREFIX_TKN),
65 item(IPV6_TKN),
66 item(IPV6_PREFIX_TKN),
67 item(MAC_TKN),
68 item(MAC_PREFIX_TKN),
69 item(FORK_TKN),
70 item(JOIN_TKN),
71 item(START_TKN),
72 item(END_TKN),
73 {0},
74 };
75
76 const char *node_names[] = {
77 "auth", // AUTH_NODE,
78 "view", // VIEW_NODE,
79 "auth enable", // AUTH_ENABLE_NODE,
80 "enable", // ENABLE_NODE,
81 "config", // CONFIG_NODE,
82 "debug", // DEBUG_NODE,
83 "vrf debug", // VRF_DEBUG_NODE,
84 "vnc debug", // DEBUG_VNC_NODE,
85 "aaa", // AAA_NODE,
86 "keychain", // KEYCHAIN_NODE,
87 "keychain key", // KEYCHAIN_KEY_NODE,
88 "logical-router", // LOGICALROUTER_NODE,
89 "static ip", // IP_NODE,
90 "vrf", // VRF_NODE,
91 "interface", // INTERFACE_NODE,
92 "nexthop-group", // NH_GROUP_NODE,
93 "zebra", // ZEBRA_NODE,
94 "table", // TABLE_NODE,
95 "rip", // RIP_NODE,
96 "ripng", // RIPNG_NODE,
97 "babel", // BABEL_NODE,
98 "eigrp", // EIGRP_NODE,
99 "bgp", // BGP_NODE,
100 "bgp vpnv4", // BGP_VPNV4_NODE,
101 "bgp vpnv6", // BGP_VPNV6_NODE,
102 "bgp ipv4 unicast", // BGP_IPV4_NODE,
103 "bgp ipv4 multicast", // BGP_IPV4M_NODE,
104 "bgp ipv4 labeled unicast", // BGP_IPV4L_NODE,
105 "bgp ipv6", // BGP_IPV6_NODE,
106 "bgp ipv6 multicast", // BGP_IPV6M_NODE,
107 "bgp ipv6 labeled unicast", // BGP_IPV6L_NODE,
108 "bgp vrf policy", // BGP_VRF_POLICY_NODE,
109 "bgp vnc defaults", // BGP_VNC_DEFAULTS_NODE,
110 "bgp vnc nve", // BGP_VNC_NVE_GROUP_NODE,
111 "bgp vnc l2", // BGP_VNC_L2_GROUP_NODE,
112 "rfp defaults", // RFP_DEFAULTS_NODE,
113 "bgp evpn", // BGP_EVPN_NODE,
114 "ospf", // OSPF_NODE,
115 "ospf6", // OSPF6_NODE,
116 "ldp", // LDP_NODE,
117 "ldp ipv4", // LDP_IPV4_NODE,
118 "ldp ipv6", // LDP_IPV6_NODE,
119 "ldp ipv4 interface", // LDP_IPV4_IFACE_NODE,
120 "ldp ipv6 interface", // LDP_IPV6_IFACE_NODE,
121 "ldp l2vpn", // LDP_L2VPN_NODE,
122 "ldp", // LDP_PSEUDOWIRE_NODE,
123 "isis", // ISIS_NODE,
124 "ipv4 access list", // ACCESS_NODE,
125 "ipv4 prefix list", // PREFIX_NODE,
126 "ipv6 access list", // ACCESS_IPV6_NODE,
127 "MAC access list", // ACCESS_MAC_NODE,
128 "ipv6 prefix list", // PREFIX_IPV6_NODE,
129 "as list", // AS_LIST_NODE,
130 "community list", // COMMUNITY_LIST_NODE,
131 "routemap", // RMAP_NODE,
132 "pbr-map", // PBRMAP_NODE,
133 "smux", // SMUX_NODE,
134 "dump", // DUMP_NODE,
135 "forwarding", // FORWARDING_NODE,
136 "protocol", // PROTOCOL_NODE,
137 "mpls", // MPLS_NODE,
138 "pw", // PW_NODE,
139 "vty", // VTY_NODE,
140 "link-params", // LINK_PARAMS_NODE,
141 "bgp evpn vni", // BGP_EVPN_VNI_NODE,
142 "rpki", // RPKI_NODE
143 "bgp ipv4 flowspec", /* BGP_FLOWSPECV4_NODE
144 */
145 "bgp ipv6 flowspec", /* BGP_FLOWSPECV6_NODE
146 */
147 "bfd", /* BFD_NODE */
148 "bfd peer", /* BFD_PEER_NODE */
149 "openfabric", // OPENFABRIC_NODE
150 };
151 /* clang-format on */
152
153 /* Command vector which includes some level of command lists. Normally
154 each daemon maintains each own cmdvec. */
155 vector cmdvec = NULL;
156
157 /* Host information structure. */
158 struct host host;
159
160 /*
161 * Returns host.name if any, otherwise
162 * it returns the system hostname.
163 */
164 const char *cmd_hostname_get(void)
165 {
166 return host.name;
167 }
168
169 /*
170 * Returns unix domainname
171 */
172 const char *cmd_domainname_get(void)
173 {
174 return host.domainname;
175 }
176
177 /* Standard command node structures. */
178 static struct cmd_node auth_node = {
179 AUTH_NODE, "Password: ",
180 };
181
182 static struct cmd_node view_node = {
183 VIEW_NODE, "%s> ",
184 };
185
186 static struct cmd_node auth_enable_node = {
187 AUTH_ENABLE_NODE, "Password: ",
188 };
189
190 static struct cmd_node enable_node = {
191 ENABLE_NODE, "%s# ",
192 };
193
194 static struct cmd_node config_node = {CONFIG_NODE, "%s(config)# ", 1};
195
196 /* Default motd string. */
197 static const char *default_motd = FRR_DEFAULT_MOTD;
198
199 static const struct facility_map {
200 int facility;
201 const char *name;
202 size_t match;
203 } syslog_facilities[] = {
204 {LOG_KERN, "kern", 1},
205 {LOG_USER, "user", 2},
206 {LOG_MAIL, "mail", 1},
207 {LOG_DAEMON, "daemon", 1},
208 {LOG_AUTH, "auth", 1},
209 {LOG_SYSLOG, "syslog", 1},
210 {LOG_LPR, "lpr", 2},
211 {LOG_NEWS, "news", 1},
212 {LOG_UUCP, "uucp", 2},
213 {LOG_CRON, "cron", 1},
214 #ifdef LOG_FTP
215 {LOG_FTP, "ftp", 1},
216 #endif
217 {LOG_LOCAL0, "local0", 6},
218 {LOG_LOCAL1, "local1", 6},
219 {LOG_LOCAL2, "local2", 6},
220 {LOG_LOCAL3, "local3", 6},
221 {LOG_LOCAL4, "local4", 6},
222 {LOG_LOCAL5, "local5", 6},
223 {LOG_LOCAL6, "local6", 6},
224 {LOG_LOCAL7, "local7", 6},
225 {0, NULL, 0},
226 };
227
228 static const char *facility_name(int facility)
229 {
230 const struct facility_map *fm;
231
232 for (fm = syslog_facilities; fm->name; fm++)
233 if (fm->facility == facility)
234 return fm->name;
235 return "";
236 }
237
238 static int facility_match(const char *str)
239 {
240 const struct facility_map *fm;
241
242 for (fm = syslog_facilities; fm->name; fm++)
243 if (!strncmp(str, fm->name, fm->match))
244 return fm->facility;
245 return -1;
246 }
247
248 static int level_match(const char *s)
249 {
250 int level;
251
252 for (level = 0; zlog_priority[level] != NULL; level++)
253 if (!strncmp(s, zlog_priority[level], 2))
254 return level;
255 return ZLOG_DISABLED;
256 }
257
258 /* This is called from main when a daemon is invoked with -v or --version. */
259 void print_version(const char *progname)
260 {
261 printf("%s version %s\n", progname, FRR_VERSION);
262 printf("%s\n", FRR_COPYRIGHT);
263 printf("configured with:\n\t%s\n", FRR_CONFIG_ARGS);
264 }
265
266 char *argv_concat(struct cmd_token **argv, int argc, int shift)
267 {
268 int cnt = MAX(argc - shift, 0);
269 const char *argstr[cnt + 1];
270
271 if (!cnt)
272 return NULL;
273
274 for (int i = 0; i < cnt; i++)
275 argstr[i] = argv[i + shift]->arg;
276
277 return frrstr_join(argstr, cnt, " ");
278 }
279
280 vector cmd_make_strvec(const char *string)
281 {
282 if (!string)
283 return NULL;
284
285 const char *copy = string;
286
287 /* skip leading whitespace */
288 while (isspace((int)*copy) && *copy != '\0')
289 copy++;
290
291 /* if the entire string was whitespace or a comment, return */
292 if (*copy == '\0' || *copy == '!' || *copy == '#')
293 return NULL;
294
295 vector result = frrstr_split_vec(copy, "\n\r\t ");
296
297 for (unsigned int i = 0; i < vector_active(result); i++) {
298 if (strlen(vector_slot(result, i)) == 0) {
299 XFREE(MTYPE_TMP, vector_slot(result, i));
300 vector_unset(result, i);
301 }
302 }
303
304 vector_compact(result);
305
306 return result;
307 }
308
309 void cmd_free_strvec(vector v)
310 {
311 frrstr_strvec_free(v);
312 }
313
314 /**
315 * Convenience function for accessing argv data.
316 *
317 * @param argc
318 * @param argv
319 * @param text definition snippet of the desired token
320 * @param index the starting index, and where to store the
321 * index of the found token if it exists
322 * @return 1 if found, 0 otherwise
323 */
324 int argv_find(struct cmd_token **argv, int argc, const char *text, int *index)
325 {
326 int found = 0;
327 for (int i = *index; i < argc && found == 0; i++)
328 if ((found = strmatch(text, argv[i]->text)))
329 *index = i;
330 return found;
331 }
332
333 static unsigned int cmd_hash_key(void *p)
334 {
335 int size = sizeof(p);
336
337 return jhash(p, size, 0);
338 }
339
340 static bool cmd_hash_cmp(const void *a, const void *b)
341 {
342 return a == b;
343 }
344
345 /* Install top node of command vector. */
346 void install_node(struct cmd_node *node, int (*func)(struct vty *))
347 {
348 vector_set_index(cmdvec, node->node, node);
349 node->func = func;
350 node->cmdgraph = graph_new();
351 node->cmd_vector = vector_init(VECTOR_MIN_SIZE);
352 // add start node
353 struct cmd_token *token =
354 cmd_token_new(START_TKN, CMD_ATTR_NORMAL, NULL, NULL);
355 graph_new_node(node->cmdgraph, token,
356 (void (*)(void *)) & cmd_token_del);
357 node->cmd_hash = hash_create_size(16, cmd_hash_key, cmd_hash_cmp,
358 "Command Hash");
359 }
360
361 /* Return prompt character of specified node. */
362 const char *cmd_prompt(enum node_type node)
363 {
364 struct cmd_node *cnode;
365
366 cnode = vector_slot(cmdvec, node);
367 return cnode->prompt;
368 }
369
370 /* Install a command into a node. */
371 void install_element(enum node_type ntype, struct cmd_element *cmd)
372 {
373 struct cmd_node *cnode;
374
375 /* cmd_init hasn't been called */
376 if (!cmdvec) {
377 fprintf(stderr, "%s called before cmd_init, breakage likely\n",
378 __func__);
379 return;
380 }
381
382 cnode = vector_lookup(cmdvec, ntype);
383
384 if (cnode == NULL) {
385 fprintf(stderr,
386 "%s[%s]:\n"
387 "\tnode %d (%s) does not exist.\n"
388 "\tplease call install_node() before install_element()\n",
389 cmd->name, cmd->string, ntype, node_names[ntype]);
390 exit(EXIT_FAILURE);
391 }
392
393 if (hash_lookup(cnode->cmd_hash, cmd) != NULL) {
394 fprintf(stderr,
395 "%s[%s]:\n"
396 "\tnode %d (%s) already has this command installed.\n"
397 "\tduplicate install_element call?\n",
398 cmd->name, cmd->string, ntype, node_names[ntype]);
399 return;
400 }
401
402 assert(hash_get(cnode->cmd_hash, cmd, hash_alloc_intern));
403
404 struct graph *graph = graph_new();
405 struct cmd_token *token =
406 cmd_token_new(START_TKN, CMD_ATTR_NORMAL, NULL, NULL);
407 graph_new_node(graph, token, (void (*)(void *)) & cmd_token_del);
408
409 cmd_graph_parse(graph, cmd);
410 cmd_graph_names(graph);
411 cmd_graph_merge(cnode->cmdgraph, graph, +1);
412 graph_delete_graph(graph);
413
414 vector_set(cnode->cmd_vector, cmd);
415
416 if (ntype == VIEW_NODE)
417 install_element(ENABLE_NODE, cmd);
418 }
419
420 void uninstall_element(enum node_type ntype, struct cmd_element *cmd)
421 {
422 struct cmd_node *cnode;
423
424 /* cmd_init hasn't been called */
425 if (!cmdvec) {
426 fprintf(stderr, "%s called before cmd_init, breakage likely\n",
427 __func__);
428 return;
429 }
430
431 cnode = vector_lookup(cmdvec, ntype);
432
433 if (cnode == NULL) {
434 fprintf(stderr,
435 "%s[%s]:\n"
436 "\tnode %d (%s) does not exist.\n"
437 "\tplease call install_node() before uninstall_element()\n",
438 cmd->name, cmd->string, ntype, node_names[ntype]);
439 exit(EXIT_FAILURE);
440 }
441
442 if (hash_release(cnode->cmd_hash, cmd) == NULL) {
443 fprintf(stderr,
444 "%s[%s]:\n"
445 "\tnode %d (%s) does not have this command installed.\n"
446 "\tduplicate uninstall_element call?\n",
447 cmd->name, cmd->string, ntype, node_names[ntype]);
448 return;
449 }
450
451 vector_unset_value(cnode->cmd_vector, cmd);
452
453 struct graph *graph = graph_new();
454 struct cmd_token *token =
455 cmd_token_new(START_TKN, CMD_ATTR_NORMAL, NULL, NULL);
456 graph_new_node(graph, token, (void (*)(void *)) & cmd_token_del);
457
458 cmd_graph_parse(graph, cmd);
459 cmd_graph_names(graph);
460 cmd_graph_merge(cnode->cmdgraph, graph, -1);
461 graph_delete_graph(graph);
462
463 if (ntype == VIEW_NODE)
464 uninstall_element(ENABLE_NODE, cmd);
465 }
466
467
468 static const unsigned char itoa64[] =
469 "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
470
471 static void to64(char *s, long v, int n)
472 {
473 while (--n >= 0) {
474 *s++ = itoa64[v & 0x3f];
475 v >>= 6;
476 }
477 }
478
479 static char *zencrypt(const char *passwd)
480 {
481 char salt[6];
482 struct timeval tv;
483 char *crypt(const char *, const char *);
484
485 gettimeofday(&tv, 0);
486
487 to64(&salt[0], random(), 3);
488 to64(&salt[3], tv.tv_usec, 3);
489 salt[5] = '\0';
490
491 return crypt(passwd, salt);
492 }
493
494 /* This function write configuration of this host. */
495 static int config_write_host(struct vty *vty)
496 {
497 if (cmd_hostname_get())
498 vty_out(vty, "hostname %s\n", cmd_hostname_get());
499
500 if (cmd_domainname_get())
501 vty_out(vty, "domainname %s\n", cmd_domainname_get());
502
503 /* The following are all configuration commands that are not sent to
504 * watchfrr. For instance watchfrr is hardcoded to log to syslog so
505 * we would always display 'log syslog informational' in the config
506 * which would cause other daemons to then switch to syslog when they
507 * parse frr.conf.
508 */
509 if (strcmp(zlog_default->protoname, "WATCHFRR")) {
510 if (host.encrypt) {
511 if (host.password_encrypt)
512 vty_out(vty, "password 8 %s\n",
513 host.password_encrypt);
514 if (host.enable_encrypt)
515 vty_out(vty, "enable password 8 %s\n",
516 host.enable_encrypt);
517 } else {
518 if (host.password)
519 vty_out(vty, "password %s\n", host.password);
520 if (host.enable)
521 vty_out(vty, "enable password %s\n",
522 host.enable);
523 }
524
525 if (host.logfile
526 && (zlog_default->maxlvl[ZLOG_DEST_FILE]
527 != ZLOG_DISABLED)) {
528 vty_out(vty, "log file %s", host.logfile);
529 if (zlog_default->maxlvl[ZLOG_DEST_FILE]
530 != zlog_default->default_lvl)
531 vty_out(vty, " %s",
532 zlog_priority
533 [zlog_default->maxlvl
534 [ZLOG_DEST_FILE]]);
535 vty_out(vty, "\n");
536 }
537
538 if (zlog_default->maxlvl[ZLOG_DEST_STDOUT] != ZLOG_DISABLED) {
539 vty_out(vty, "log stdout");
540 if (zlog_default->maxlvl[ZLOG_DEST_STDOUT]
541 != zlog_default->default_lvl)
542 vty_out(vty, " %s",
543 zlog_priority
544 [zlog_default->maxlvl
545 [ZLOG_DEST_STDOUT]]);
546 vty_out(vty, "\n");
547 }
548
549 if (zlog_default->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
550 vty_out(vty, "no log monitor\n");
551 else if (zlog_default->maxlvl[ZLOG_DEST_MONITOR]
552 != zlog_default->default_lvl)
553 vty_out(vty, "log monitor %s\n",
554 zlog_priority[zlog_default->maxlvl
555 [ZLOG_DEST_MONITOR]]);
556
557 if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != ZLOG_DISABLED) {
558 vty_out(vty, "log syslog");
559 if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG]
560 != zlog_default->default_lvl)
561 vty_out(vty, " %s",
562 zlog_priority[zlog_default->maxlvl
563 [ZLOG_DEST_SYSLOG]]);
564 vty_out(vty, "\n");
565 }
566
567 if (zlog_default->facility != LOG_DAEMON)
568 vty_out(vty, "log facility %s\n",
569 facility_name(zlog_default->facility));
570
571 if (zlog_default->record_priority == 1)
572 vty_out(vty, "log record-priority\n");
573
574 if (zlog_default->timestamp_precision > 0)
575 vty_out(vty, "log timestamp precision %d\n",
576 zlog_default->timestamp_precision);
577
578 if (host.advanced)
579 vty_out(vty, "service advanced-vty\n");
580
581 if (host.encrypt)
582 vty_out(vty, "service password-encryption\n");
583
584 if (host.lines >= 0)
585 vty_out(vty, "service terminal-length %d\n",
586 host.lines);
587
588 if (host.motdfile)
589 vty_out(vty, "banner motd file %s\n", host.motdfile);
590 else if (!host.motd)
591 vty_out(vty, "no banner motd\n");
592 }
593
594 if (debug_memstats_at_exit)
595 vty_out(vty, "!\ndebug memstats-at-exit\n");
596
597 return 1;
598 }
599
600 /* Utility function for getting command graph. */
601 static struct graph *cmd_node_graph(vector v, enum node_type ntype)
602 {
603 struct cmd_node *cnode = vector_slot(v, ntype);
604 return cnode->cmdgraph;
605 }
606
607 static int cmd_try_do_shortcut(enum node_type node, char *first_word)
608 {
609 if (first_word != NULL && node != AUTH_NODE && node != VIEW_NODE
610 && node != AUTH_ENABLE_NODE && 0 == strcmp("do", first_word))
611 return 1;
612 return 0;
613 }
614
615 /**
616 * Compare function for cmd_token.
617 * Used with qsort to sort command completions.
618 */
619 static int compare_completions(const void *fst, const void *snd)
620 {
621 const struct cmd_token *first = *(const struct cmd_token * const *)fst,
622 *secnd = *(const struct cmd_token * const *)snd;
623 return strcmp(first->text, secnd->text);
624 }
625
626 /**
627 * Takes a list of completions returned by command_complete,
628 * dedeuplicates them based on both text and description,
629 * sorts them, and returns them as a vector.
630 *
631 * @param completions linked list of cmd_token
632 * @return deduplicated and sorted vector with
633 */
634 vector completions_to_vec(struct list *completions)
635 {
636 vector comps = vector_init(VECTOR_MIN_SIZE);
637
638 struct listnode *ln;
639 struct cmd_token *token, *cr = NULL;
640 unsigned int i, exists;
641 for (ALL_LIST_ELEMENTS_RO(completions, ln, token)) {
642 if (token->type == END_TKN && (cr = token))
643 continue;
644
645 // linear search for token in completions vector
646 exists = 0;
647 for (i = 0; i < vector_active(comps) && !exists; i++) {
648 struct cmd_token *curr = vector_slot(comps, i);
649 #ifdef VTYSH_DEBUG
650 exists = !strcmp(curr->text, token->text)
651 && !strcmp(curr->desc, token->desc);
652 #else
653 exists = !strcmp(curr->text, token->text);
654 #endif /* VTYSH_DEBUG */
655 }
656
657 if (!exists)
658 vector_set(comps, token);
659 }
660
661 // sort completions
662 qsort(comps->index, vector_active(comps), sizeof(void *),
663 &compare_completions);
664
665 // make <cr> the first element, if it is present
666 if (cr) {
667 vector_set_index(comps, vector_active(comps), NULL);
668 memmove(comps->index + 1, comps->index,
669 (comps->alloced - 1) * sizeof(void *));
670 vector_set_index(comps, 0, cr);
671 }
672
673 return comps;
674 }
675 /**
676 * Generates a vector of cmd_token representing possible completions
677 * on the current input.
678 *
679 * @param vline the vectorized input line
680 * @param vty the vty with the node to match on
681 * @param status pointer to matcher status code
682 * @return vector of struct cmd_token * with possible completions
683 */
684 static vector cmd_complete_command_real(vector vline, struct vty *vty,
685 int *status)
686 {
687 struct list *completions;
688 struct graph *cmdgraph = cmd_node_graph(cmdvec, vty->node);
689
690 enum matcher_rv rv = command_complete(cmdgraph, vline, &completions);
691
692 if (MATCHER_ERROR(rv)) {
693 *status = CMD_ERR_NO_MATCH;
694 return NULL;
695 }
696
697 vector comps = completions_to_vec(completions);
698 list_delete(&completions);
699
700 // set status code appropriately
701 switch (vector_active(comps)) {
702 case 0:
703 *status = CMD_ERR_NO_MATCH;
704 break;
705 case 1:
706 *status = CMD_COMPLETE_FULL_MATCH;
707 break;
708 default:
709 *status = CMD_COMPLETE_LIST_MATCH;
710 }
711
712 return comps;
713 }
714
715 vector cmd_describe_command(vector vline, struct vty *vty, int *status)
716 {
717 vector ret;
718
719 if (cmd_try_do_shortcut(vty->node, vector_slot(vline, 0))) {
720 enum node_type onode;
721 vector shifted_vline;
722 unsigned int index;
723
724 onode = vty->node;
725 vty->node = ENABLE_NODE;
726 /* We can try it on enable node, cos' the vty is authenticated
727 */
728
729 shifted_vline = vector_init(vector_count(vline));
730 /* use memcpy? */
731 for (index = 1; index < vector_active(vline); index++) {
732 vector_set_index(shifted_vline, index - 1,
733 vector_lookup(vline, index));
734 }
735
736 ret = cmd_complete_command_real(shifted_vline, vty, status);
737
738 vector_free(shifted_vline);
739 vty->node = onode;
740 return ret;
741 }
742
743 return cmd_complete_command_real(vline, vty, status);
744 }
745
746 static struct list *varhandlers = NULL;
747
748 void cmd_variable_complete(struct cmd_token *token, const char *arg,
749 vector comps)
750 {
751 struct listnode *ln;
752 const struct cmd_variable_handler *cvh;
753 size_t i, argsz;
754 vector tmpcomps;
755
756 tmpcomps = arg ? vector_init(VECTOR_MIN_SIZE) : comps;
757
758 for (ALL_LIST_ELEMENTS_RO(varhandlers, ln, cvh)) {
759 if (cvh->tokenname && strcmp(cvh->tokenname, token->text))
760 continue;
761 if (cvh->varname && (!token->varname
762 || strcmp(cvh->varname, token->varname)))
763 continue;
764 cvh->completions(tmpcomps, token);
765 break;
766 }
767
768 if (!arg)
769 return;
770
771 argsz = strlen(arg);
772 for (i = vector_active(tmpcomps); i; i--) {
773 char *item = vector_slot(tmpcomps, i - 1);
774 if (strlen(item) >= argsz && !strncmp(item, arg, argsz))
775 vector_set(comps, item);
776 else
777 XFREE(MTYPE_COMPLETION, item);
778 }
779 vector_free(tmpcomps);
780 }
781
782 #define AUTOCOMP_INDENT 5
783
784 char *cmd_variable_comp2str(vector comps, unsigned short cols)
785 {
786 size_t bsz = 16;
787 char *buf = XCALLOC(MTYPE_TMP, bsz);
788 int lc = AUTOCOMP_INDENT;
789 size_t cs = AUTOCOMP_INDENT;
790 size_t itemlen;
791 snprintf(buf, bsz, "%*s", AUTOCOMP_INDENT, "");
792 for (size_t j = 0; j < vector_active(comps); j++) {
793 char *item = vector_slot(comps, j);
794 itemlen = strlen(item);
795
796 if (cs + itemlen + AUTOCOMP_INDENT + 3 >= bsz)
797 buf = XREALLOC(MTYPE_TMP, buf, (bsz *= 2));
798
799 if (lc + itemlen + 1 >= cols) {
800 cs += snprintf(&buf[cs], bsz - cs, "\n%*s",
801 AUTOCOMP_INDENT, "");
802 lc = AUTOCOMP_INDENT;
803 }
804
805 size_t written = snprintf(&buf[cs], bsz - cs, "%s ", item);
806 lc += written;
807 cs += written;
808 XFREE(MTYPE_COMPLETION, item);
809 vector_set_index(comps, j, NULL);
810 }
811 return buf;
812 }
813
814 void cmd_variable_handler_register(const struct cmd_variable_handler *cvh)
815 {
816 if (!varhandlers)
817 return;
818
819 for (; cvh->completions; cvh++)
820 listnode_add(varhandlers, (void *)cvh);
821 }
822
823 DEFUN_HIDDEN (autocomplete,
824 autocomplete_cmd,
825 "autocomplete TYPE TEXT VARNAME",
826 "Autocompletion handler (internal, for vtysh)\n"
827 "cmd_token->type\n"
828 "cmd_token->text\n"
829 "cmd_token->varname\n")
830 {
831 struct cmd_token tok;
832 vector comps = vector_init(32);
833 size_t i;
834
835 memset(&tok, 0, sizeof(tok));
836 tok.type = atoi(argv[1]->arg);
837 tok.text = argv[2]->arg;
838 tok.varname = argv[3]->arg;
839 if (!strcmp(tok.varname, "-"))
840 tok.varname = NULL;
841
842 cmd_variable_complete(&tok, NULL, comps);
843
844 for (i = 0; i < vector_active(comps); i++) {
845 char *text = vector_slot(comps, i);
846 vty_out(vty, "%s\n", text);
847 XFREE(MTYPE_COMPLETION, text);
848 }
849
850 vector_free(comps);
851 return CMD_SUCCESS;
852 }
853
854 /**
855 * Generate possible tab-completions for the given input. This function only
856 * returns results that would result in a valid command if used as Readline
857 * completions (as is the case in vtysh). For instance, if the passed vline ends
858 * with '4.3.2', the strings 'A.B.C.D' and 'A.B.C.D/M' will _not_ be returned.
859 *
860 * @param vline vectorized input line
861 * @param vty the vty
862 * @param status location to store matcher status code in
863 * @return set of valid strings for use with Readline as tab-completions.
864 */
865
866 char **cmd_complete_command(vector vline, struct vty *vty, int *status)
867 {
868 char **ret = NULL;
869 int original_node = vty->node;
870 vector input_line = vector_init(vector_count(vline));
871
872 // if the first token is 'do' we'll want to execute the command in the
873 // enable node
874 int do_shortcut = cmd_try_do_shortcut(vty->node, vector_slot(vline, 0));
875 vty->node = do_shortcut ? ENABLE_NODE : original_node;
876
877 // construct the input line we'll be matching on
878 unsigned int offset = (do_shortcut) ? 1 : 0;
879 for (unsigned index = 0; index + offset < vector_active(vline); index++)
880 vector_set_index(input_line, index,
881 vector_lookup(vline, index + offset));
882
883 // get token completions -- this is a copying operation
884 vector comps = NULL, initial_comps;
885 initial_comps = cmd_complete_command_real(input_line, vty, status);
886
887 if (!MATCHER_ERROR(*status)) {
888 assert(initial_comps);
889 // filter out everything that is not suitable for a
890 // tab-completion
891 comps = vector_init(VECTOR_MIN_SIZE);
892 for (unsigned int i = 0; i < vector_active(initial_comps);
893 i++) {
894 struct cmd_token *token = vector_slot(initial_comps, i);
895 if (token->type == WORD_TKN)
896 vector_set(comps, XSTRDUP(MTYPE_COMPLETION,
897 token->text));
898 else if (IS_VARYING_TOKEN(token->type)) {
899 const char *ref = vector_lookup(
900 vline, vector_active(vline) - 1);
901 cmd_variable_complete(token, ref, comps);
902 }
903 }
904 vector_free(initial_comps);
905
906 // since we filtered results, we need to re-set status code
907 switch (vector_active(comps)) {
908 case 0:
909 *status = CMD_ERR_NO_MATCH;
910 break;
911 case 1:
912 *status = CMD_COMPLETE_FULL_MATCH;
913 break;
914 default:
915 *status = CMD_COMPLETE_LIST_MATCH;
916 }
917
918 // copy completions text into an array of char*
919 ret = XMALLOC(MTYPE_TMP,
920 (vector_active(comps) + 1) * sizeof(char *));
921 unsigned int i;
922 for (i = 0; i < vector_active(comps); i++) {
923 ret[i] = vector_slot(comps, i);
924 }
925 // set the last element to NULL, because this array is used in
926 // a Readline completion_generator function which expects NULL
927 // as a sentinel value
928 ret[i] = NULL;
929 vector_free(comps);
930 comps = NULL;
931 } else if (initial_comps)
932 vector_free(initial_comps);
933
934 // comps should always be null here
935 assert(!comps);
936
937 // free the adjusted input line
938 vector_free(input_line);
939
940 // reset vty->node to its original value
941 vty->node = original_node;
942
943 return ret;
944 }
945
946 /* return parent node */
947 /* MUST eventually converge on CONFIG_NODE */
948 enum node_type node_parent(enum node_type node)
949 {
950 enum node_type ret;
951
952 assert(node > CONFIG_NODE);
953
954 switch (node) {
955 case BGP_VPNV4_NODE:
956 case BGP_VPNV6_NODE:
957 case BGP_FLOWSPECV4_NODE:
958 case BGP_FLOWSPECV6_NODE:
959 case BGP_VRF_POLICY_NODE:
960 case BGP_VNC_DEFAULTS_NODE:
961 case BGP_VNC_NVE_GROUP_NODE:
962 case BGP_VNC_L2_GROUP_NODE:
963 case BGP_IPV4_NODE:
964 case BGP_IPV4M_NODE:
965 case BGP_IPV4L_NODE:
966 case BGP_IPV6_NODE:
967 case BGP_IPV6M_NODE:
968 case BGP_EVPN_NODE:
969 case BGP_IPV6L_NODE:
970 ret = BGP_NODE;
971 break;
972 case BGP_EVPN_VNI_NODE:
973 ret = BGP_EVPN_NODE;
974 break;
975 case KEYCHAIN_KEY_NODE:
976 ret = KEYCHAIN_NODE;
977 break;
978 case LINK_PARAMS_NODE:
979 ret = INTERFACE_NODE;
980 break;
981 case LDP_IPV4_NODE:
982 case LDP_IPV6_NODE:
983 ret = LDP_NODE;
984 break;
985 case LDP_IPV4_IFACE_NODE:
986 ret = LDP_IPV4_NODE;
987 break;
988 case LDP_IPV6_IFACE_NODE:
989 ret = LDP_IPV6_NODE;
990 break;
991 case LDP_PSEUDOWIRE_NODE:
992 ret = LDP_L2VPN_NODE;
993 break;
994 case BFD_PEER_NODE:
995 ret = BFD_NODE;
996 break;
997 default:
998 ret = CONFIG_NODE;
999 break;
1000 }
1001
1002 return ret;
1003 }
1004
1005 /* Execute command by argument vline vector. */
1006 static int cmd_execute_command_real(vector vline, enum filter_type filter,
1007 struct vty *vty,
1008 const struct cmd_element **cmd)
1009 {
1010 struct list *argv_list;
1011 enum matcher_rv status;
1012 const struct cmd_element *matched_element = NULL;
1013
1014 struct graph *cmdgraph = cmd_node_graph(cmdvec, vty->node);
1015 status = command_match(cmdgraph, vline, &argv_list, &matched_element);
1016
1017 if (cmd)
1018 *cmd = matched_element;
1019
1020 // if matcher error, return corresponding CMD_ERR
1021 if (MATCHER_ERROR(status)) {
1022 if (argv_list)
1023 list_delete(&argv_list);
1024 switch (status) {
1025 case MATCHER_INCOMPLETE:
1026 return CMD_ERR_INCOMPLETE;
1027 case MATCHER_AMBIGUOUS:
1028 return CMD_ERR_AMBIGUOUS;
1029 default:
1030 return CMD_ERR_NO_MATCH;
1031 }
1032 }
1033
1034 // build argv array from argv list
1035 struct cmd_token **argv = XMALLOC(
1036 MTYPE_TMP, argv_list->count * sizeof(struct cmd_token *));
1037 struct listnode *ln;
1038 struct cmd_token *token;
1039 unsigned int i = 0;
1040 for (ALL_LIST_ELEMENTS_RO(argv_list, ln, token))
1041 argv[i++] = token;
1042
1043 int argc = argv_list->count;
1044
1045 int ret;
1046 if (matched_element->daemon)
1047 ret = CMD_SUCCESS_DAEMON;
1048 else
1049 ret = matched_element->func(matched_element, vty, argc, argv);
1050
1051 // delete list and cmd_token's in it
1052 list_delete(&argv_list);
1053 XFREE(MTYPE_TMP, argv);
1054
1055 return ret;
1056 }
1057
1058 /**
1059 * Execute a given command, handling things like "do ..." and checking
1060 * whether the given command might apply at a parent node if doesn't
1061 * apply for the current node.
1062 *
1063 * @param vline Command line input, vector of char* where each element is
1064 * one input token.
1065 * @param vty The vty context in which the command should be executed.
1066 * @param cmd Pointer where the struct cmd_element of the matched command
1067 * will be stored, if any. May be set to NULL if this info is
1068 * not needed.
1069 * @param vtysh If set != 0, don't lookup the command at parent nodes.
1070 * @return The status of the command that has been executed or an error code
1071 * as to why no command could be executed.
1072 */
1073 int cmd_execute_command(vector vline, struct vty *vty,
1074 const struct cmd_element **cmd, int vtysh)
1075 {
1076 int ret, saved_ret = 0;
1077 enum node_type onode, try_node;
1078
1079 onode = try_node = vty->node;
1080
1081 if (cmd_try_do_shortcut(vty->node, vector_slot(vline, 0))) {
1082 vector shifted_vline;
1083 unsigned int index;
1084
1085 vty->node = ENABLE_NODE;
1086 /* We can try it on enable node, cos' the vty is authenticated
1087 */
1088
1089 shifted_vline = vector_init(vector_count(vline));
1090 /* use memcpy? */
1091 for (index = 1; index < vector_active(vline); index++)
1092 vector_set_index(shifted_vline, index - 1,
1093 vector_lookup(vline, index));
1094
1095 ret = cmd_execute_command_real(shifted_vline, FILTER_RELAXED,
1096 vty, cmd);
1097
1098 vector_free(shifted_vline);
1099 vty->node = onode;
1100 return ret;
1101 }
1102
1103 saved_ret = ret =
1104 cmd_execute_command_real(vline, FILTER_RELAXED, vty, cmd);
1105
1106 if (vtysh)
1107 return saved_ret;
1108
1109 if (ret != CMD_SUCCESS && ret != CMD_WARNING
1110 && ret != CMD_NOT_MY_INSTANCE && ret != CMD_WARNING_CONFIG_FAILED) {
1111 /* This assumes all nodes above CONFIG_NODE are childs of
1112 * CONFIG_NODE */
1113 while (vty->node > CONFIG_NODE) {
1114 try_node = node_parent(try_node);
1115 vty->node = try_node;
1116 ret = cmd_execute_command_real(vline, FILTER_RELAXED,
1117 vty, cmd);
1118 if (ret == CMD_SUCCESS || ret == CMD_WARNING
1119 || ret == CMD_NOT_MY_INSTANCE
1120 || ret == CMD_WARNING_CONFIG_FAILED)
1121 return ret;
1122 }
1123 /* no command succeeded, reset the vty to the original node */
1124 vty->node = onode;
1125 }
1126
1127 /* return command status for original node */
1128 return saved_ret;
1129 }
1130
1131 /**
1132 * Execute a given command, matching it strictly against the current node.
1133 * This mode is used when reading config files.
1134 *
1135 * @param vline Command line input, vector of char* where each element is
1136 * one input token.
1137 * @param vty The vty context in which the command should be executed.
1138 * @param cmd Pointer where the struct cmd_element* of the matched command
1139 * will be stored, if any. May be set to NULL if this info is
1140 * not needed.
1141 * @return The status of the command that has been executed or an error code
1142 * as to why no command could be executed.
1143 */
1144 int cmd_execute_command_strict(vector vline, struct vty *vty,
1145 const struct cmd_element **cmd)
1146 {
1147 return cmd_execute_command_real(vline, FILTER_STRICT, vty, cmd);
1148 }
1149
1150 /*
1151 * Hook for preprocessing command string before executing.
1152 *
1153 * All subscribers are called with the raw command string that is to be
1154 * executed. If any changes are to be made, a new string should be allocated
1155 * with MTYPE_TMP and *cmd_out updated to point to this new string. The caller
1156 * is then responsible for freeing this string.
1157 *
1158 * All processing functions must be mutually exclusive in their action, i.e. if
1159 * one subscriber decides to modify the command, all others must not modify it
1160 * when called. Feeding the output of one processing command into a subsequent
1161 * one is not supported.
1162 *
1163 * This hook is intentionally internal to the command processing system.
1164 *
1165 * cmd_in
1166 * The raw command string.
1167 *
1168 * cmd_out
1169 * The result of any processing.
1170 */
1171 DECLARE_HOOK(cmd_execute,
1172 (struct vty *vty, const char *cmd_in, char **cmd_out),
1173 (vty, cmd_in, cmd_out));
1174 DEFINE_HOOK(cmd_execute, (struct vty *vty, const char *cmd_in, char **cmd_out),
1175 (vty, cmd_in, cmd_out));
1176
1177 /* Hook executed after a CLI command. */
1178 DECLARE_KOOH(cmd_execute_done, (struct vty *vty, const char *cmd_exec),
1179 (vty, cmd_exec));
1180 DEFINE_KOOH(cmd_execute_done, (struct vty *vty, const char *cmd_exec),
1181 (vty, cmd_exec));
1182
1183 /*
1184 * cmd_execute hook subscriber to handle `|` actions.
1185 */
1186 static int handle_pipe_action(struct vty *vty, const char *cmd_in,
1187 char **cmd_out)
1188 {
1189 /* look for `|` */
1190 char *orig, *working, *token, *u;
1191 char *pipe = strstr(cmd_in, "| ");
1192
1193 if (!pipe)
1194 return 0;
1195
1196 /* duplicate string for processing purposes, not including pipe */
1197 orig = working = XSTRDUP(MTYPE_TMP, pipe + 2);
1198
1199 /* retrieve action */
1200 token = strsep(&working, " ");
1201 assert(token);
1202
1203 /* match result to known actions */
1204 if (strmatch(token, "include")) {
1205 /* the remaining text should be a regexp */
1206 char *regexp = working;
1207
1208 if (!regexp) {
1209 vty_out(vty, "%% Need a regexp to filter with\n");
1210 goto fail;
1211 }
1212
1213 bool succ = vty_set_include(vty, regexp);
1214
1215 if (!succ) {
1216 vty_out(vty, "%% Bad regexp '%s'\n", regexp);
1217 goto fail;
1218 }
1219 *cmd_out = XSTRDUP(MTYPE_TMP, cmd_in);
1220 u = *cmd_out;
1221 strsep(&u, "|");
1222 } else {
1223 vty_out(vty, "%% Unknown action '%s'\n", token);
1224 goto fail;
1225 }
1226
1227 fail:
1228 XFREE(MTYPE_TMP, orig);
1229 return 0;
1230 }
1231
1232 static int handle_pipe_action_done(struct vty *vty, const char *cmd_exec)
1233 {
1234 if (vty->filter)
1235 vty_set_include(vty, NULL);
1236
1237 return 0;
1238 }
1239
1240 int cmd_execute(struct vty *vty, const char *cmd,
1241 const struct cmd_element **matched, int vtysh)
1242 {
1243 int ret;
1244 char *cmd_out = NULL;
1245 const char *cmd_exec;
1246 vector vline;
1247
1248 hook_call(cmd_execute, vty, cmd, &cmd_out);
1249 cmd_exec = cmd_out ? (const char *)cmd_out : cmd;
1250
1251 vline = cmd_make_strvec(cmd_exec);
1252
1253 if (vline) {
1254 ret = cmd_execute_command(vline, vty, matched, vtysh);
1255 cmd_free_strvec(vline);
1256 } else {
1257 ret = CMD_SUCCESS;
1258 }
1259
1260 hook_call(cmd_execute_done, vty, cmd_exec);
1261
1262 if (cmd_out)
1263 XFREE(MTYPE_TMP, cmd_out);
1264
1265 return ret;
1266 }
1267
1268
1269 /**
1270 * Parse one line of config, walking up the parse tree attempting to find a
1271 * match
1272 *
1273 * @param vty The vty context in which the command should be executed.
1274 * @param cmd Pointer where the struct cmd_element* of the match command
1275 * will be stored, if any. May be set to NULL if this info is
1276 * not needed.
1277 * @param use_daemon Boolean to control whether or not we match on
1278 * CMD_SUCCESS_DAEMON
1279 * or not.
1280 * @return The status of the command that has been executed or an error code
1281 * as to why no command could be executed.
1282 */
1283 int command_config_read_one_line(struct vty *vty,
1284 const struct cmd_element **cmd,
1285 uint32_t line_num, int use_daemon)
1286 {
1287 vector vline;
1288 int saved_node;
1289 int ret;
1290
1291 vline = cmd_make_strvec(vty->buf);
1292
1293 /* In case of comment line */
1294 if (vline == NULL)
1295 return CMD_SUCCESS;
1296
1297 /* Execute configuration command : this is strict match */
1298 ret = cmd_execute_command_strict(vline, vty, cmd);
1299
1300 // Climb the tree and try the command again at each node
1301 if (!(use_daemon && ret == CMD_SUCCESS_DAEMON)
1302 && !(!use_daemon && ret == CMD_ERR_NOTHING_TODO)
1303 && ret != CMD_SUCCESS && ret != CMD_WARNING
1304 && ret != CMD_NOT_MY_INSTANCE && ret != CMD_WARNING_CONFIG_FAILED
1305 && vty->node != CONFIG_NODE) {
1306
1307 saved_node = vty->node;
1308
1309 while (!(use_daemon && ret == CMD_SUCCESS_DAEMON)
1310 && !(!use_daemon && ret == CMD_ERR_NOTHING_TODO)
1311 && ret != CMD_SUCCESS && ret != CMD_WARNING
1312 && vty->node > CONFIG_NODE) {
1313 vty->node = node_parent(vty->node);
1314 ret = cmd_execute_command_strict(vline, vty, cmd);
1315 }
1316
1317 // If climbing the tree did not work then ignore the command and
1318 // stay at the same node
1319 if (!(use_daemon && ret == CMD_SUCCESS_DAEMON)
1320 && !(!use_daemon && ret == CMD_ERR_NOTHING_TODO)
1321 && ret != CMD_SUCCESS && ret != CMD_WARNING) {
1322 vty->node = saved_node;
1323 }
1324 }
1325
1326 if (ret != CMD_SUCCESS &&
1327 ret != CMD_WARNING &&
1328 ret != CMD_SUCCESS_DAEMON) {
1329 struct vty_error *ve = XCALLOC(MTYPE_TMP, sizeof(*ve));
1330
1331 memcpy(ve->error_buf, vty->buf, VTY_BUFSIZ);
1332 ve->line_num = line_num;
1333 if (!vty->error)
1334 vty->error = list_new();
1335
1336 listnode_add(vty->error, ve);
1337 }
1338
1339 cmd_free_strvec(vline);
1340
1341 return ret;
1342 }
1343
1344 /* Configuration make from file. */
1345 int config_from_file(struct vty *vty, FILE *fp, unsigned int *line_num)
1346 {
1347 int ret, error_ret = 0;
1348 *line_num = 0;
1349
1350 while (fgets(vty->buf, VTY_BUFSIZ, fp)) {
1351 ++(*line_num);
1352
1353 ret = command_config_read_one_line(vty, NULL, *line_num, 0);
1354
1355 if (ret != CMD_SUCCESS && ret != CMD_WARNING
1356 && ret != CMD_ERR_NOTHING_TODO)
1357 error_ret = ret;
1358 }
1359
1360 if (error_ret) {
1361 return error_ret;
1362 }
1363
1364 return CMD_SUCCESS;
1365 }
1366
1367 /* Configuration from terminal */
1368 DEFUN (config_terminal,
1369 config_terminal_cmd,
1370 "configure terminal",
1371 "Configuration from vty interface\n"
1372 "Configuration terminal\n")
1373 {
1374 if (vty_config_lock(vty))
1375 vty->node = CONFIG_NODE;
1376 else {
1377 vty_out(vty, "VTY configuration is locked by other VTY\n");
1378 return CMD_WARNING_CONFIG_FAILED;
1379 }
1380 return CMD_SUCCESS;
1381 }
1382
1383 /* Enable command */
1384 DEFUN (enable,
1385 config_enable_cmd,
1386 "enable",
1387 "Turn on privileged mode command\n")
1388 {
1389 /* If enable password is NULL, change to ENABLE_NODE */
1390 if ((host.enable == NULL && host.enable_encrypt == NULL)
1391 || vty->type == VTY_SHELL_SERV)
1392 vty->node = ENABLE_NODE;
1393 else
1394 vty->node = AUTH_ENABLE_NODE;
1395
1396 return CMD_SUCCESS;
1397 }
1398
1399 /* Disable command */
1400 DEFUN (disable,
1401 config_disable_cmd,
1402 "disable",
1403 "Turn off privileged mode command\n")
1404 {
1405 if (vty->node == ENABLE_NODE)
1406 vty->node = VIEW_NODE;
1407 return CMD_SUCCESS;
1408 }
1409
1410 /* Down vty node level. */
1411 DEFUN (config_exit,
1412 config_exit_cmd,
1413 "exit",
1414 "Exit current mode and down to previous mode\n")
1415 {
1416 cmd_exit(vty);
1417 return CMD_SUCCESS;
1418 }
1419
1420 void cmd_exit(struct vty *vty)
1421 {
1422 switch (vty->node) {
1423 case VIEW_NODE:
1424 case ENABLE_NODE:
1425 if (vty_shell(vty))
1426 exit(0);
1427 else
1428 vty->status = VTY_CLOSE;
1429 break;
1430 case CONFIG_NODE:
1431 vty->node = ENABLE_NODE;
1432 vty_config_unlock(vty);
1433 break;
1434 case INTERFACE_NODE:
1435 case PW_NODE:
1436 case LOGICALROUTER_NODE:
1437 case VRF_NODE:
1438 case NH_GROUP_NODE:
1439 case ZEBRA_NODE:
1440 case BGP_NODE:
1441 case RIP_NODE:
1442 case EIGRP_NODE:
1443 case BABEL_NODE:
1444 case RIPNG_NODE:
1445 case OSPF_NODE:
1446 case OSPF6_NODE:
1447 case LDP_NODE:
1448 case LDP_L2VPN_NODE:
1449 case ISIS_NODE:
1450 case OPENFABRIC_NODE:
1451 case KEYCHAIN_NODE:
1452 case RMAP_NODE:
1453 case PBRMAP_NODE:
1454 case VTY_NODE:
1455 case BFD_NODE:
1456 vty->node = CONFIG_NODE;
1457 break;
1458 case BGP_IPV4_NODE:
1459 case BGP_IPV4M_NODE:
1460 case BGP_IPV4L_NODE:
1461 case BGP_VPNV4_NODE:
1462 case BGP_VPNV6_NODE:
1463 case BGP_FLOWSPECV4_NODE:
1464 case BGP_FLOWSPECV6_NODE:
1465 case BGP_VRF_POLICY_NODE:
1466 case BGP_VNC_DEFAULTS_NODE:
1467 case BGP_VNC_NVE_GROUP_NODE:
1468 case BGP_VNC_L2_GROUP_NODE:
1469 case BGP_IPV6_NODE:
1470 case BGP_IPV6M_NODE:
1471 case BGP_EVPN_NODE:
1472 case BGP_IPV6L_NODE:
1473 vty->node = BGP_NODE;
1474 break;
1475 case BGP_EVPN_VNI_NODE:
1476 vty->node = BGP_EVPN_NODE;
1477 break;
1478 case LDP_IPV4_NODE:
1479 case LDP_IPV6_NODE:
1480 vty->node = LDP_NODE;
1481 break;
1482 case LDP_IPV4_IFACE_NODE:
1483 vty->node = LDP_IPV4_NODE;
1484 break;
1485 case LDP_IPV6_IFACE_NODE:
1486 vty->node = LDP_IPV6_NODE;
1487 break;
1488 case LDP_PSEUDOWIRE_NODE:
1489 vty->node = LDP_L2VPN_NODE;
1490 break;
1491 case KEYCHAIN_KEY_NODE:
1492 vty->node = KEYCHAIN_NODE;
1493 break;
1494 case LINK_PARAMS_NODE:
1495 vty->node = INTERFACE_NODE;
1496 break;
1497 case BFD_PEER_NODE:
1498 vty->node = BFD_NODE;
1499 break;
1500 default:
1501 break;
1502 }
1503 }
1504
1505 /* ALIAS_FIXME */
1506 DEFUN (config_quit,
1507 config_quit_cmd,
1508 "quit",
1509 "Exit current mode and down to previous mode\n")
1510 {
1511 return config_exit(self, vty, argc, argv);
1512 }
1513
1514
1515 /* End of configuration. */
1516 DEFUN (config_end,
1517 config_end_cmd,
1518 "end",
1519 "End current mode and change to enable mode.\n")
1520 {
1521 switch (vty->node) {
1522 case VIEW_NODE:
1523 case ENABLE_NODE:
1524 /* Nothing to do. */
1525 break;
1526 case CONFIG_NODE:
1527 case INTERFACE_NODE:
1528 case PW_NODE:
1529 case LOGICALROUTER_NODE:
1530 case VRF_NODE:
1531 case NH_GROUP_NODE:
1532 case ZEBRA_NODE:
1533 case RIP_NODE:
1534 case RIPNG_NODE:
1535 case EIGRP_NODE:
1536 case BABEL_NODE:
1537 case BGP_NODE:
1538 case BGP_VRF_POLICY_NODE:
1539 case BGP_VNC_DEFAULTS_NODE:
1540 case BGP_VNC_NVE_GROUP_NODE:
1541 case BGP_VNC_L2_GROUP_NODE:
1542 case BGP_VPNV4_NODE:
1543 case BGP_VPNV6_NODE:
1544 case BGP_FLOWSPECV4_NODE:
1545 case BGP_FLOWSPECV6_NODE:
1546 case BGP_IPV4_NODE:
1547 case BGP_IPV4M_NODE:
1548 case BGP_IPV4L_NODE:
1549 case BGP_IPV6_NODE:
1550 case BGP_IPV6M_NODE:
1551 case BGP_EVPN_NODE:
1552 case BGP_EVPN_VNI_NODE:
1553 case BGP_IPV6L_NODE:
1554 case RMAP_NODE:
1555 case PBRMAP_NODE:
1556 case OSPF_NODE:
1557 case OSPF6_NODE:
1558 case LDP_NODE:
1559 case LDP_IPV4_NODE:
1560 case LDP_IPV6_NODE:
1561 case LDP_IPV4_IFACE_NODE:
1562 case LDP_IPV6_IFACE_NODE:
1563 case LDP_L2VPN_NODE:
1564 case LDP_PSEUDOWIRE_NODE:
1565 case ISIS_NODE:
1566 case OPENFABRIC_NODE:
1567 case KEYCHAIN_NODE:
1568 case KEYCHAIN_KEY_NODE:
1569 case VTY_NODE:
1570 case LINK_PARAMS_NODE:
1571 case BFD_NODE:
1572 case BFD_PEER_NODE:
1573 vty_config_unlock(vty);
1574 vty->node = ENABLE_NODE;
1575 break;
1576 default:
1577 break;
1578 }
1579 return CMD_SUCCESS;
1580 }
1581
1582 /* Show version. */
1583 DEFUN (show_version,
1584 show_version_cmd,
1585 "show version",
1586 SHOW_STR
1587 "Displays zebra version\n")
1588 {
1589 vty_out(vty, "%s %s (%s).\n", FRR_FULL_NAME, FRR_VERSION,
1590 cmd_hostname_get() ? cmd_hostname_get() : "");
1591 vty_out(vty, "%s%s\n", FRR_COPYRIGHT, GIT_INFO);
1592 vty_out(vty, "configured with:\n %s\n", FRR_CONFIG_ARGS);
1593
1594 return CMD_SUCCESS;
1595 }
1596
1597 /* "Set" version ... ignore version tags */
1598 DEFUN (frr_version_defaults,
1599 frr_version_defaults_cmd,
1600 "frr <version|defaults> LINE...",
1601 "FRRouting global parameters\n"
1602 "version configuration was written by\n"
1603 "set of configuration defaults used\n"
1604 "version string\n")
1605 {
1606 return CMD_SUCCESS;
1607 }
1608
1609 /* Help display function for all node. */
1610 DEFUN (config_help,
1611 config_help_cmd,
1612 "help",
1613 "Description of the interactive help system\n")
1614 {
1615 vty_out(vty,
1616 "Quagga VTY provides advanced help feature. When you need help,\n\
1617 anytime at the command line please press '?'.\n\
1618 \n\
1619 If nothing matches, the help list will be empty and you must backup\n\
1620 until entering a '?' shows the available options.\n\
1621 Two styles of help are provided:\n\
1622 1. Full help is available when you are ready to enter a\n\
1623 command argument (e.g. 'show ?') and describes each possible\n\
1624 argument.\n\
1625 2. Partial help is provided when an abbreviated argument is entered\n\
1626 and you want to know what arguments match the input\n\
1627 (e.g. 'show me?'.)\n\n");
1628 return CMD_SUCCESS;
1629 }
1630
1631 static void permute(struct graph_node *start, struct vty *vty)
1632 {
1633 static struct list *position = NULL;
1634 if (!position)
1635 position = list_new();
1636
1637 struct cmd_token *stok = start->data;
1638 struct graph_node *gnn;
1639 struct listnode *ln;
1640
1641 // recursive dfs
1642 listnode_add(position, start);
1643 for (unsigned int i = 0; i < vector_active(start->to); i++) {
1644 struct graph_node *gn = vector_slot(start->to, i);
1645 struct cmd_token *tok = gn->data;
1646 if (tok->attr == CMD_ATTR_HIDDEN
1647 || tok->attr == CMD_ATTR_DEPRECATED)
1648 continue;
1649 else if (tok->type == END_TKN || gn == start) {
1650 vty_out(vty, " ");
1651 for (ALL_LIST_ELEMENTS_RO(position, ln, gnn)) {
1652 struct cmd_token *tt = gnn->data;
1653 if (tt->type < SPECIAL_TKN)
1654 vty_out(vty, " %s", tt->text);
1655 }
1656 if (gn == start)
1657 vty_out(vty, "...");
1658 vty_out(vty, "\n");
1659 } else {
1660 bool skip = false;
1661 if (stok->type == FORK_TKN && tok->type != FORK_TKN)
1662 for (ALL_LIST_ELEMENTS_RO(position, ln, gnn))
1663 if (gnn == gn) {
1664 skip = true;
1665 break;
1666 }
1667 if (!skip)
1668 permute(gn, vty);
1669 }
1670 }
1671 list_delete_node(position, listtail(position));
1672 }
1673
1674 int cmd_list_cmds(struct vty *vty, int do_permute)
1675 {
1676 struct cmd_node *node = vector_slot(cmdvec, vty->node);
1677
1678 if (do_permute)
1679 permute(vector_slot(node->cmdgraph->nodes, 0), vty);
1680 else {
1681 /* loop over all commands at this node */
1682 struct cmd_element *element = NULL;
1683 for (unsigned int i = 0; i < vector_active(node->cmd_vector);
1684 i++)
1685 if ((element = vector_slot(node->cmd_vector, i))
1686 && element->attr != CMD_ATTR_DEPRECATED
1687 && element->attr != CMD_ATTR_HIDDEN)
1688 vty_out(vty, " %s\n", element->string);
1689 }
1690 return CMD_SUCCESS;
1691 }
1692
1693 /* Help display function for all node. */
1694 DEFUN (config_list,
1695 config_list_cmd,
1696 "list [permutations]",
1697 "Print command list\n"
1698 "Print all possible command permutations\n")
1699 {
1700 return cmd_list_cmds(vty, argc == 2);
1701 }
1702
1703 DEFUN (show_commandtree,
1704 show_commandtree_cmd,
1705 "show commandtree [permutations]",
1706 SHOW_STR
1707 "Show command tree\n"
1708 "Permutations that we are interested in\n")
1709 {
1710 return cmd_list_cmds(vty, argc == 3);
1711 }
1712
1713 DEFUN_HIDDEN(show_cli_graph,
1714 show_cli_graph_cmd,
1715 "show cli graph",
1716 SHOW_STR
1717 "CLI reflection\n"
1718 "Dump current command space as DOT graph\n")
1719 {
1720 struct cmd_node *cn = vector_slot(cmdvec, vty->node);
1721 char *dot = cmd_graph_dump_dot(cn->cmdgraph);
1722
1723 vty_out(vty, "%s\n", dot);
1724 XFREE(MTYPE_TMP, dot);
1725 return CMD_SUCCESS;
1726 }
1727
1728 static int vty_write_config(struct vty *vty)
1729 {
1730 size_t i;
1731 struct cmd_node *node;
1732
1733 if (host.noconfig)
1734 return CMD_SUCCESS;
1735
1736 if (vty->type == VTY_TERM) {
1737 vty_out(vty, "\nCurrent configuration:\n");
1738 vty_out(vty, "!\n");
1739 }
1740
1741 vty_out(vty, "frr version %s\n", FRR_VER_SHORT);
1742 vty_out(vty, "frr defaults %s\n", DFLT_NAME);
1743 vty_out(vty, "!\n");
1744
1745 for (i = 0; i < vector_active(cmdvec); i++)
1746 if ((node = vector_slot(cmdvec, i)) && node->func
1747 && (node->vtysh || vty->type != VTY_SHELL)) {
1748 if ((*node->func)(vty))
1749 vty_out(vty, "!\n");
1750 }
1751
1752 if (vty->type == VTY_TERM) {
1753 vty_out(vty, "end\n");
1754 }
1755
1756 return CMD_SUCCESS;
1757 }
1758
1759 static int file_write_config(struct vty *vty)
1760 {
1761 int fd, dirfd;
1762 char *config_file, *slash;
1763 char *config_file_tmp = NULL;
1764 char *config_file_sav = NULL;
1765 int ret = CMD_WARNING;
1766 struct vty *file_vty;
1767 struct stat conf_stat;
1768
1769 if (host.noconfig)
1770 return CMD_SUCCESS;
1771
1772 /* Check and see if we are operating under vtysh configuration */
1773 if (host.config == NULL) {
1774 vty_out(vty,
1775 "Can't save to configuration file, using vtysh.\n");
1776 return CMD_WARNING;
1777 }
1778
1779 /* Get filename. */
1780 config_file = host.config;
1781
1782 #ifndef O_DIRECTORY
1783 #define O_DIRECTORY 0
1784 #endif
1785 slash = strrchr(config_file, '/');
1786 if (slash) {
1787 char *config_dir = XSTRDUP(MTYPE_TMP, config_file);
1788 config_dir[slash - config_file] = '\0';
1789 dirfd = open(config_dir, O_DIRECTORY | O_RDONLY);
1790 XFREE(MTYPE_TMP, config_dir);
1791 } else
1792 dirfd = open(".", O_DIRECTORY | O_RDONLY);
1793 /* if dirfd is invalid, directory sync fails, but we're still OK */
1794
1795 config_file_sav = XMALLOC(
1796 MTYPE_TMP, strlen(config_file) + strlen(CONF_BACKUP_EXT) + 1);
1797 strcpy(config_file_sav, config_file);
1798 strcat(config_file_sav, CONF_BACKUP_EXT);
1799
1800
1801 config_file_tmp = XMALLOC(MTYPE_TMP, strlen(config_file) + 8);
1802 sprintf(config_file_tmp, "%s.XXXXXX", config_file);
1803
1804 /* Open file to configuration write. */
1805 fd = mkstemp(config_file_tmp);
1806 if (fd < 0) {
1807 vty_out(vty, "Can't open configuration file %s.\n",
1808 config_file_tmp);
1809 goto finished;
1810 }
1811 if (fchmod(fd, CONFIGFILE_MASK) != 0) {
1812 vty_out(vty, "Can't chmod configuration file %s: %s (%d).\n",
1813 config_file_tmp, safe_strerror(errno), errno);
1814 goto finished;
1815 }
1816
1817 /* Make vty for configuration file. */
1818 file_vty = vty_new();
1819 file_vty->wfd = fd;
1820 file_vty->type = VTY_FILE;
1821
1822 /* Config file header print. */
1823 vty_out(file_vty, "!\n! Zebra configuration saved from vty\n! ");
1824 vty_time_print(file_vty, 1);
1825 vty_out(file_vty, "!\n");
1826 vty_write_config(file_vty);
1827 vty_close(file_vty);
1828
1829 if (stat(config_file, &conf_stat) >= 0) {
1830 if (unlink(config_file_sav) != 0)
1831 if (errno != ENOENT) {
1832 vty_out(vty,
1833 "Can't unlink backup configuration file %s.\n",
1834 config_file_sav);
1835 goto finished;
1836 }
1837 if (link(config_file, config_file_sav) != 0) {
1838 vty_out(vty,
1839 "Can't backup old configuration file %s.\n",
1840 config_file_sav);
1841 goto finished;
1842 }
1843 if (dirfd >= 0)
1844 fsync(dirfd);
1845 }
1846 if (rename(config_file_tmp, config_file) != 0) {
1847 vty_out(vty, "Can't save configuration file %s.\n",
1848 config_file);
1849 goto finished;
1850 }
1851 if (dirfd >= 0)
1852 fsync(dirfd);
1853
1854 vty_out(vty, "Configuration saved to %s\n", config_file);
1855 ret = CMD_SUCCESS;
1856
1857 finished:
1858 if (ret != CMD_SUCCESS)
1859 unlink(config_file_tmp);
1860 if (dirfd >= 0)
1861 close(dirfd);
1862 XFREE(MTYPE_TMP, config_file_tmp);
1863 XFREE(MTYPE_TMP, config_file_sav);
1864 return ret;
1865 }
1866
1867 /* Write current configuration into file. */
1868
1869 DEFUN (config_write,
1870 config_write_cmd,
1871 "write [<file|memory|terminal>]",
1872 "Write running configuration to memory, network, or terminal\n"
1873 "Write to configuration file\n"
1874 "Write configuration currently in memory\n"
1875 "Write configuration to terminal\n")
1876 {
1877 const int idx_type = 1;
1878
1879 // if command was 'write terminal' or 'write memory'
1880 if (argc == 2 && (!strcmp(argv[idx_type]->text, "terminal"))) {
1881 return vty_write_config(vty);
1882 }
1883
1884 return file_write_config(vty);
1885 }
1886
1887 /* ALIAS_FIXME for 'write <terminal|memory>' */
1888 DEFUN (show_running_config,
1889 show_running_config_cmd,
1890 "show running-config",
1891 SHOW_STR
1892 "running configuration (same as write terminal)\n")
1893 {
1894 return vty_write_config(vty);
1895 }
1896
1897 /* ALIAS_FIXME for 'write file' */
1898 DEFUN (copy_runningconf_startupconf,
1899 copy_runningconf_startupconf_cmd,
1900 "copy running-config startup-config",
1901 "Copy configuration\n"
1902 "Copy running config to... \n"
1903 "Copy running config to startup config (same as write file/memory)\n")
1904 {
1905 return file_write_config(vty);
1906 }
1907 /** -- **/
1908
1909 /* Write startup configuration into the terminal. */
1910 DEFUN (show_startup_config,
1911 show_startup_config_cmd,
1912 "show startup-config",
1913 SHOW_STR
1914 "Contents of startup configuration\n")
1915 {
1916 char buf[BUFSIZ];
1917 FILE *confp;
1918
1919 if (host.noconfig)
1920 return CMD_SUCCESS;
1921 if (host.config == NULL)
1922 return CMD_WARNING;
1923
1924 confp = fopen(host.config, "r");
1925 if (confp == NULL) {
1926 vty_out(vty, "Can't open configuration file [%s] due to '%s'\n",
1927 host.config, safe_strerror(errno));
1928 return CMD_WARNING;
1929 }
1930
1931 while (fgets(buf, BUFSIZ, confp)) {
1932 char *cp = buf;
1933
1934 while (*cp != '\r' && *cp != '\n' && *cp != '\0')
1935 cp++;
1936 *cp = '\0';
1937
1938 vty_out(vty, "%s\n", buf);
1939 }
1940
1941 fclose(confp);
1942
1943 return CMD_SUCCESS;
1944 }
1945
1946 int cmd_domainname_set(const char *domainname)
1947 {
1948 XFREE(MTYPE_HOST, host.domainname);
1949 host.domainname = domainname ? XSTRDUP(MTYPE_HOST, domainname) : NULL;
1950 return CMD_SUCCESS;
1951 }
1952
1953 /* Hostname configuration */
1954 DEFUN(config_domainname,
1955 domainname_cmd,
1956 "domainname WORD",
1957 "Set system's domain name\n"
1958 "This system's domain name\n")
1959 {
1960 struct cmd_token *word = argv[1];
1961
1962 if (!isalpha((int)word->arg[0])) {
1963 vty_out(vty, "Please specify string starting with alphabet\n");
1964 return CMD_WARNING_CONFIG_FAILED;
1965 }
1966
1967 return cmd_domainname_set(word->arg);
1968 }
1969
1970 DEFUN(config_no_domainname,
1971 no_domainname_cmd,
1972 "no domainname [DOMAINNAME]",
1973 NO_STR
1974 "Reset system's domain name\n"
1975 "domain name of this router\n")
1976 {
1977 return cmd_domainname_set(NULL);
1978 }
1979
1980 int cmd_hostname_set(const char *hostname)
1981 {
1982 XFREE(MTYPE_HOST, host.name);
1983 host.name = hostname ? XSTRDUP(MTYPE_HOST, hostname) : NULL;
1984 return CMD_SUCCESS;
1985 }
1986
1987 /* Hostname configuration */
1988 DEFUN (config_hostname,
1989 hostname_cmd,
1990 "hostname WORD",
1991 "Set system's network name\n"
1992 "This system's network name\n")
1993 {
1994 struct cmd_token *word = argv[1];
1995
1996 if (!isalnum((int)word->arg[0])) {
1997 vty_out(vty, "Please specify string starting with alphabet\n");
1998 return CMD_WARNING_CONFIG_FAILED;
1999 }
2000
2001 return cmd_hostname_set(word->arg);
2002 }
2003
2004 DEFUN (config_no_hostname,
2005 no_hostname_cmd,
2006 "no hostname [HOSTNAME]",
2007 NO_STR
2008 "Reset system's network name\n"
2009 "Host name of this router\n")
2010 {
2011 return cmd_hostname_set(NULL);
2012 }
2013
2014 /* VTY interface password set. */
2015 DEFUN (config_password,
2016 password_cmd,
2017 "password [(8-8)] WORD",
2018 "Modify the terminal connection password\n"
2019 "Specifies a HIDDEN password will follow\n"
2020 "The password string\n")
2021 {
2022 int idx_8 = 1;
2023 int idx_word = 2;
2024 if (argc == 3) // '8' was specified
2025 {
2026 if (host.password)
2027 XFREE(MTYPE_HOST, host.password);
2028 host.password = NULL;
2029 if (host.password_encrypt)
2030 XFREE(MTYPE_HOST, host.password_encrypt);
2031 host.password_encrypt =
2032 XSTRDUP(MTYPE_HOST, argv[idx_word]->arg);
2033 return CMD_SUCCESS;
2034 }
2035
2036 if (!isalnum((int)argv[idx_8]->arg[0])) {
2037 vty_out(vty,
2038 "Please specify string starting with alphanumeric\n");
2039 return CMD_WARNING_CONFIG_FAILED;
2040 }
2041
2042 if (host.password)
2043 XFREE(MTYPE_HOST, host.password);
2044 host.password = NULL;
2045
2046 if (host.encrypt) {
2047 if (host.password_encrypt)
2048 XFREE(MTYPE_HOST, host.password_encrypt);
2049 host.password_encrypt =
2050 XSTRDUP(MTYPE_HOST, zencrypt(argv[idx_8]->arg));
2051 } else
2052 host.password = XSTRDUP(MTYPE_HOST, argv[idx_8]->arg);
2053
2054 return CMD_SUCCESS;
2055 }
2056
2057 /* VTY interface password delete. */
2058 DEFUN (no_config_password,
2059 no_password_cmd,
2060 "no password",
2061 NO_STR
2062 "Modify the terminal connection password\n")
2063 {
2064 bool warned = false;
2065
2066 if (host.password) {
2067 if (!vty_shell_serv(vty)) {
2068 vty_out(vty, NO_PASSWD_CMD_WARNING);
2069 warned = true;
2070 }
2071 XFREE(MTYPE_HOST, host.password);
2072 }
2073 host.password = NULL;
2074
2075 if (host.password_encrypt) {
2076 if (!warned && !vty_shell_serv(vty))
2077 vty_out(vty, NO_PASSWD_CMD_WARNING);
2078 XFREE(MTYPE_HOST, host.password_encrypt);
2079 }
2080 host.password_encrypt = NULL;
2081
2082 return CMD_SUCCESS;
2083 }
2084
2085 /* VTY enable password set. */
2086 DEFUN (config_enable_password,
2087 enable_password_cmd,
2088 "enable password [(8-8)] WORD",
2089 "Modify enable password parameters\n"
2090 "Assign the privileged level password\n"
2091 "Specifies a HIDDEN password will follow\n"
2092 "The HIDDEN 'enable' password string\n")
2093 {
2094 int idx_8 = 2;
2095 int idx_word = 3;
2096
2097 /* Crypt type is specified. */
2098 if (argc == 4) {
2099 if (argv[idx_8]->arg[0] == '8') {
2100 if (host.enable)
2101 XFREE(MTYPE_HOST, host.enable);
2102 host.enable = NULL;
2103
2104 if (host.enable_encrypt)
2105 XFREE(MTYPE_HOST, host.enable_encrypt);
2106 host.enable_encrypt =
2107 XSTRDUP(MTYPE_HOST, argv[idx_word]->arg);
2108
2109 return CMD_SUCCESS;
2110 } else {
2111 vty_out(vty, "Unknown encryption type.\n");
2112 return CMD_WARNING_CONFIG_FAILED;
2113 }
2114 }
2115
2116 if (!isalnum((int)argv[idx_8]->arg[0])) {
2117 vty_out(vty,
2118 "Please specify string starting with alphanumeric\n");
2119 return CMD_WARNING_CONFIG_FAILED;
2120 }
2121
2122 if (host.enable)
2123 XFREE(MTYPE_HOST, host.enable);
2124 host.enable = NULL;
2125
2126 /* Plain password input. */
2127 if (host.encrypt) {
2128 if (host.enable_encrypt)
2129 XFREE(MTYPE_HOST, host.enable_encrypt);
2130 host.enable_encrypt =
2131 XSTRDUP(MTYPE_HOST, zencrypt(argv[idx_8]->arg));
2132 } else
2133 host.enable = XSTRDUP(MTYPE_HOST, argv[idx_8]->arg);
2134
2135 return CMD_SUCCESS;
2136 }
2137
2138 /* VTY enable password delete. */
2139 DEFUN (no_config_enable_password,
2140 no_enable_password_cmd,
2141 "no enable password",
2142 NO_STR
2143 "Modify enable password parameters\n"
2144 "Assign the privileged level password\n")
2145 {
2146 bool warned = false;
2147
2148 if (host.enable) {
2149 if (!vty_shell_serv(vty)) {
2150 vty_out(vty, NO_PASSWD_CMD_WARNING);
2151 warned = true;
2152 }
2153 XFREE(MTYPE_HOST, host.enable);
2154 }
2155 host.enable = NULL;
2156
2157 if (host.enable_encrypt) {
2158 if (!warned && !vty_shell_serv(vty))
2159 vty_out(vty, NO_PASSWD_CMD_WARNING);
2160 XFREE(MTYPE_HOST, host.enable_encrypt);
2161 }
2162 host.enable_encrypt = NULL;
2163
2164 return CMD_SUCCESS;
2165 }
2166
2167 DEFUN (service_password_encrypt,
2168 service_password_encrypt_cmd,
2169 "service password-encryption",
2170 "Set up miscellaneous service\n"
2171 "Enable encrypted passwords\n")
2172 {
2173 if (host.encrypt)
2174 return CMD_SUCCESS;
2175
2176 host.encrypt = 1;
2177
2178 if (host.password) {
2179 if (host.password_encrypt)
2180 XFREE(MTYPE_HOST, host.password_encrypt);
2181 host.password_encrypt =
2182 XSTRDUP(MTYPE_HOST, zencrypt(host.password));
2183 }
2184 if (host.enable) {
2185 if (host.enable_encrypt)
2186 XFREE(MTYPE_HOST, host.enable_encrypt);
2187 host.enable_encrypt =
2188 XSTRDUP(MTYPE_HOST, zencrypt(host.enable));
2189 }
2190
2191 return CMD_SUCCESS;
2192 }
2193
2194 DEFUN (no_service_password_encrypt,
2195 no_service_password_encrypt_cmd,
2196 "no service password-encryption",
2197 NO_STR
2198 "Set up miscellaneous service\n"
2199 "Enable encrypted passwords\n")
2200 {
2201 if (!host.encrypt)
2202 return CMD_SUCCESS;
2203
2204 host.encrypt = 0;
2205
2206 if (host.password_encrypt)
2207 XFREE(MTYPE_HOST, host.password_encrypt);
2208 host.password_encrypt = NULL;
2209
2210 if (host.enable_encrypt)
2211 XFREE(MTYPE_HOST, host.enable_encrypt);
2212 host.enable_encrypt = NULL;
2213
2214 return CMD_SUCCESS;
2215 }
2216
2217 DEFUN (config_terminal_length,
2218 config_terminal_length_cmd,
2219 "terminal length (0-512)",
2220 "Set terminal line parameters\n"
2221 "Set number of lines on a screen\n"
2222 "Number of lines on screen (0 for no pausing)\n")
2223 {
2224 int idx_number = 2;
2225
2226 vty->lines = atoi(argv[idx_number]->arg);
2227
2228 return CMD_SUCCESS;
2229 }
2230
2231 DEFUN (config_terminal_no_length,
2232 config_terminal_no_length_cmd,
2233 "terminal no length",
2234 "Set terminal line parameters\n"
2235 NO_STR
2236 "Set number of lines on a screen\n")
2237 {
2238 vty->lines = -1;
2239 return CMD_SUCCESS;
2240 }
2241
2242 DEFUN (service_terminal_length,
2243 service_terminal_length_cmd,
2244 "service terminal-length (0-512)",
2245 "Set up miscellaneous service\n"
2246 "System wide terminal length configuration\n"
2247 "Number of lines of VTY (0 means no line control)\n")
2248 {
2249 int idx_number = 2;
2250
2251 host.lines = atoi(argv[idx_number]->arg);
2252
2253 return CMD_SUCCESS;
2254 }
2255
2256 DEFUN (no_service_terminal_length,
2257 no_service_terminal_length_cmd,
2258 "no service terminal-length [(0-512)]",
2259 NO_STR
2260 "Set up miscellaneous service\n"
2261 "System wide terminal length configuration\n"
2262 "Number of lines of VTY (0 means no line control)\n")
2263 {
2264 host.lines = -1;
2265 return CMD_SUCCESS;
2266 }
2267
2268 DEFUN_HIDDEN (do_echo,
2269 echo_cmd,
2270 "echo MESSAGE...",
2271 "Echo a message back to the vty\n"
2272 "The message to echo\n")
2273 {
2274 char *message;
2275
2276 vty_out(vty, "%s\n",
2277 ((message = argv_concat(argv, argc, 1)) ? message : ""));
2278 if (message)
2279 XFREE(MTYPE_TMP, message);
2280 return CMD_SUCCESS;
2281 }
2282
2283 DEFUN (config_logmsg,
2284 config_logmsg_cmd,
2285 "logmsg <emergencies|alerts|critical|errors|warnings|notifications|informational|debugging> MESSAGE...",
2286 "Send a message to enabled logging destinations\n"
2287 LOG_LEVEL_DESC
2288 "The message to send\n")
2289 {
2290 int idx_log_level = 1;
2291 int idx_message = 2;
2292 int level;
2293 char *message;
2294
2295 if ((level = level_match(argv[idx_log_level]->arg)) == ZLOG_DISABLED)
2296 return CMD_ERR_NO_MATCH;
2297
2298 zlog(level, "%s",
2299 ((message = argv_concat(argv, argc, idx_message)) ? message : ""));
2300 if (message)
2301 XFREE(MTYPE_TMP, message);
2302
2303 return CMD_SUCCESS;
2304 }
2305
2306 DEFUN (show_logging,
2307 show_logging_cmd,
2308 "show logging",
2309 SHOW_STR
2310 "Show current logging configuration\n")
2311 {
2312 struct zlog *zl = zlog_default;
2313
2314 vty_out(vty, "Syslog logging: ");
2315 if (zl->maxlvl[ZLOG_DEST_SYSLOG] == ZLOG_DISABLED)
2316 vty_out(vty, "disabled");
2317 else
2318 vty_out(vty, "level %s, facility %s, ident %s",
2319 zlog_priority[zl->maxlvl[ZLOG_DEST_SYSLOG]],
2320 facility_name(zl->facility), zl->ident);
2321 vty_out(vty, "\n");
2322
2323 vty_out(vty, "Stdout logging: ");
2324 if (zl->maxlvl[ZLOG_DEST_STDOUT] == ZLOG_DISABLED)
2325 vty_out(vty, "disabled");
2326 else
2327 vty_out(vty, "level %s",
2328 zlog_priority[zl->maxlvl[ZLOG_DEST_STDOUT]]);
2329 vty_out(vty, "\n");
2330
2331 vty_out(vty, "Monitor logging: ");
2332 if (zl->maxlvl[ZLOG_DEST_MONITOR] == ZLOG_DISABLED)
2333 vty_out(vty, "disabled");
2334 else
2335 vty_out(vty, "level %s",
2336 zlog_priority[zl->maxlvl[ZLOG_DEST_MONITOR]]);
2337 vty_out(vty, "\n");
2338
2339 vty_out(vty, "File logging: ");
2340 if ((zl->maxlvl[ZLOG_DEST_FILE] == ZLOG_DISABLED) || !zl->fp)
2341 vty_out(vty, "disabled");
2342 else
2343 vty_out(vty, "level %s, filename %s",
2344 zlog_priority[zl->maxlvl[ZLOG_DEST_FILE]],
2345 zl->filename);
2346 vty_out(vty, "\n");
2347
2348 vty_out(vty, "Protocol name: %s\n", zl->protoname);
2349 vty_out(vty, "Record priority: %s\n",
2350 (zl->record_priority ? "enabled" : "disabled"));
2351 vty_out(vty, "Timestamp precision: %d\n", zl->timestamp_precision);
2352
2353 return CMD_SUCCESS;
2354 }
2355
2356 DEFUN (config_log_stdout,
2357 config_log_stdout_cmd,
2358 "log stdout [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2359 "Logging control\n"
2360 "Set stdout logging level\n"
2361 LOG_LEVEL_DESC)
2362 {
2363 int idx_log_level = 2;
2364
2365 if (argc == idx_log_level) {
2366 zlog_set_level(ZLOG_DEST_STDOUT, zlog_default->default_lvl);
2367 return CMD_SUCCESS;
2368 }
2369 int level;
2370
2371 if ((level = level_match(argv[idx_log_level]->arg)) == ZLOG_DISABLED)
2372 return CMD_ERR_NO_MATCH;
2373 zlog_set_level(ZLOG_DEST_STDOUT, level);
2374 return CMD_SUCCESS;
2375 }
2376
2377 DEFUN (no_config_log_stdout,
2378 no_config_log_stdout_cmd,
2379 "no log stdout [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2380 NO_STR
2381 "Logging control\n"
2382 "Cancel logging to stdout\n"
2383 LOG_LEVEL_DESC)
2384 {
2385 zlog_set_level(ZLOG_DEST_STDOUT, ZLOG_DISABLED);
2386 return CMD_SUCCESS;
2387 }
2388
2389 DEFUN (config_log_monitor,
2390 config_log_monitor_cmd,
2391 "log monitor [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2392 "Logging control\n"
2393 "Set terminal line (monitor) logging level\n"
2394 LOG_LEVEL_DESC)
2395 {
2396 int idx_log_level = 2;
2397
2398 if (argc == idx_log_level) {
2399 zlog_set_level(ZLOG_DEST_MONITOR, zlog_default->default_lvl);
2400 return CMD_SUCCESS;
2401 }
2402 int level;
2403
2404 if ((level = level_match(argv[idx_log_level]->arg)) == ZLOG_DISABLED)
2405 return CMD_ERR_NO_MATCH;
2406 zlog_set_level(ZLOG_DEST_MONITOR, level);
2407 return CMD_SUCCESS;
2408 }
2409
2410 DEFUN (no_config_log_monitor,
2411 no_config_log_monitor_cmd,
2412 "no log monitor [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2413 NO_STR
2414 "Logging control\n"
2415 "Disable terminal line (monitor) logging\n"
2416 LOG_LEVEL_DESC)
2417 {
2418 zlog_set_level(ZLOG_DEST_MONITOR, ZLOG_DISABLED);
2419 return CMD_SUCCESS;
2420 }
2421
2422 static int set_log_file(struct vty *vty, const char *fname, int loglevel)
2423 {
2424 int ret;
2425 char *p = NULL;
2426 const char *fullpath;
2427
2428 /* Path detection. */
2429 if (!IS_DIRECTORY_SEP(*fname)) {
2430 char cwd[MAXPATHLEN + 1];
2431 cwd[MAXPATHLEN] = '\0';
2432
2433 if (getcwd(cwd, MAXPATHLEN) == NULL) {
2434 flog_err_sys(EC_LIB_SYSTEM_CALL,
2435 "config_log_file: Unable to alloc mem!");
2436 return CMD_WARNING_CONFIG_FAILED;
2437 }
2438
2439 p = XMALLOC(MTYPE_TMP, strlen(cwd) + strlen(fname) + 2);
2440 sprintf(p, "%s/%s", cwd, fname);
2441 fullpath = p;
2442 } else
2443 fullpath = fname;
2444
2445 ret = zlog_set_file(fullpath, loglevel);
2446
2447 if (p)
2448 XFREE(MTYPE_TMP, p);
2449
2450 if (!ret) {
2451 if (vty)
2452 vty_out(vty, "can't open logfile %s\n", fname);
2453 return CMD_WARNING_CONFIG_FAILED;
2454 }
2455
2456 if (host.logfile)
2457 XFREE(MTYPE_HOST, host.logfile);
2458
2459 host.logfile = XSTRDUP(MTYPE_HOST, fname);
2460
2461 #if defined(HAVE_CUMULUS)
2462 if (zlog_default->maxlvl[ZLOG_DEST_SYSLOG] != ZLOG_DISABLED)
2463 zlog_set_level(ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
2464 #endif
2465 return CMD_SUCCESS;
2466 }
2467
2468 void command_setup_early_logging(const char *dest, const char *level)
2469 {
2470 char *token;
2471
2472 if (level) {
2473 int nlevel = level_match(level);
2474
2475 if (nlevel != ZLOG_DISABLED)
2476 zlog_default->default_lvl = nlevel;
2477 }
2478
2479 if (!dest)
2480 return;
2481
2482 if (strcmp(dest, "stdout") == 0) {
2483 zlog_set_level(ZLOG_DEST_STDOUT, zlog_default->default_lvl);
2484 return;
2485 }
2486
2487 if (strcmp(dest, "syslog") == 0) {
2488 zlog_set_level(ZLOG_DEST_SYSLOG, zlog_default->default_lvl);
2489 return;
2490 }
2491
2492 token = strstr(dest, ":");
2493 if (token == NULL)
2494 return;
2495
2496 token++;
2497
2498 set_log_file(NULL, token, zlog_default->default_lvl);
2499 }
2500
2501 DEFUN (config_log_file,
2502 config_log_file_cmd,
2503 "log file FILENAME [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2504 "Logging control\n"
2505 "Logging to file\n"
2506 "Logging filename\n"
2507 LOG_LEVEL_DESC)
2508 {
2509 int idx_filename = 2;
2510 int idx_log_levels = 3;
2511 if (argc == 4) {
2512 int level;
2513 if ((level = level_match(argv[idx_log_levels]->arg))
2514 == ZLOG_DISABLED)
2515 return CMD_ERR_NO_MATCH;
2516 return set_log_file(vty, argv[idx_filename]->arg, level);
2517 } else
2518 return set_log_file(vty, argv[idx_filename]->arg,
2519 zlog_default->default_lvl);
2520 }
2521
2522 static void disable_log_file(void)
2523 {
2524 zlog_reset_file();
2525
2526 if (host.logfile)
2527 XFREE(MTYPE_HOST, host.logfile);
2528
2529 host.logfile = NULL;
2530 }
2531
2532 DEFUN (no_config_log_file,
2533 no_config_log_file_cmd,
2534 "no log file [FILENAME [LEVEL]]",
2535 NO_STR
2536 "Logging control\n"
2537 "Cancel logging to file\n"
2538 "Logging file name\n"
2539 "Logging level\n")
2540 {
2541 disable_log_file();
2542 return CMD_SUCCESS;
2543 }
2544
2545 DEFUN (config_log_syslog,
2546 config_log_syslog_cmd,
2547 "log syslog [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2548 "Logging control\n"
2549 "Set syslog logging level\n"
2550 LOG_LEVEL_DESC)
2551 {
2552 int idx_log_levels = 2;
2553
2554 disable_log_file();
2555
2556 if (argc == 3) {
2557 int level;
2558 if ((level = level_match(argv[idx_log_levels]->arg))
2559 == ZLOG_DISABLED)
2560 return CMD_ERR_NO_MATCH;
2561 zlog_set_level(ZLOG_DEST_SYSLOG, level);
2562 return CMD_SUCCESS;
2563 } else {
2564 zlog_set_level(ZLOG_DEST_SYSLOG, zlog_default->default_lvl);
2565 return CMD_SUCCESS;
2566 }
2567 }
2568
2569 DEFUN (no_config_log_syslog,
2570 no_config_log_syslog_cmd,
2571 "no log syslog [<kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|local0|local1|local2|local3|local4|local5|local6|local7>] [<emergencies|alerts|critical|errors|warnings|notifications|informational|debugging>]",
2572 NO_STR
2573 "Logging control\n"
2574 "Cancel logging to syslog\n"
2575 LOG_FACILITY_DESC
2576 LOG_LEVEL_DESC)
2577 {
2578 zlog_set_level(ZLOG_DEST_SYSLOG, ZLOG_DISABLED);
2579 return CMD_SUCCESS;
2580 }
2581
2582 DEFUN (config_log_facility,
2583 config_log_facility_cmd,
2584 "log facility <kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|local0|local1|local2|local3|local4|local5|local6|local7>",
2585 "Logging control\n"
2586 "Facility parameter for syslog messages\n"
2587 LOG_FACILITY_DESC)
2588 {
2589 int idx_target = 2;
2590 int facility = facility_match(argv[idx_target]->arg);
2591
2592 zlog_default->facility = facility;
2593 return CMD_SUCCESS;
2594 }
2595
2596 DEFUN (no_config_log_facility,
2597 no_config_log_facility_cmd,
2598 "no log facility [<kern|user|mail|daemon|auth|syslog|lpr|news|uucp|cron|local0|local1|local2|local3|local4|local5|local6|local7>]",
2599 NO_STR
2600 "Logging control\n"
2601 "Reset syslog facility to default (daemon)\n"
2602 LOG_FACILITY_DESC)
2603 {
2604 zlog_default->facility = LOG_DAEMON;
2605 return CMD_SUCCESS;
2606 }
2607
2608 DEFUN (config_log_record_priority,
2609 config_log_record_priority_cmd,
2610 "log record-priority",
2611 "Logging control\n"
2612 "Log the priority of the message within the message\n")
2613 {
2614 zlog_default->record_priority = 1;
2615 return CMD_SUCCESS;
2616 }
2617
2618 DEFUN (no_config_log_record_priority,
2619 no_config_log_record_priority_cmd,
2620 "no log record-priority",
2621 NO_STR
2622 "Logging control\n"
2623 "Do not log the priority of the message within the message\n")
2624 {
2625 zlog_default->record_priority = 0;
2626 return CMD_SUCCESS;
2627 }
2628
2629 DEFUN (config_log_timestamp_precision,
2630 config_log_timestamp_precision_cmd,
2631 "log timestamp precision (0-6)",
2632 "Logging control\n"
2633 "Timestamp configuration\n"
2634 "Set the timestamp precision\n"
2635 "Number of subsecond digits\n")
2636 {
2637 int idx_number = 3;
2638 zlog_default->timestamp_precision =
2639 strtoul(argv[idx_number]->arg, NULL, 10);
2640 return CMD_SUCCESS;
2641 }
2642
2643 DEFUN (no_config_log_timestamp_precision,
2644 no_config_log_timestamp_precision_cmd,
2645 "no log timestamp precision",
2646 NO_STR
2647 "Logging control\n"
2648 "Timestamp configuration\n"
2649 "Reset the timestamp precision to the default value of 0\n")
2650 {
2651 zlog_default->timestamp_precision = 0;
2652 return CMD_SUCCESS;
2653 }
2654
2655 DEFUN (debug_memstats,
2656 debug_memstats_cmd,
2657 "[no] debug memstats-at-exit",
2658 NO_STR
2659 DEBUG_STR
2660 "Print memory type statistics at exit\n")
2661 {
2662 debug_memstats_at_exit = !!strcmp(argv[0]->text, "no");
2663 return CMD_SUCCESS;
2664 }
2665
2666 int cmd_banner_motd_file(const char *file)
2667 {
2668 int success = CMD_SUCCESS;
2669 char p[PATH_MAX];
2670 char *rpath;
2671 char *in;
2672
2673 rpath = realpath(file, p);
2674 if (!rpath)
2675 return CMD_ERR_NO_FILE;
2676 in = strstr(rpath, SYSCONFDIR);
2677 if (in == rpath) {
2678 if (host.motdfile)
2679 XFREE(MTYPE_HOST, host.motdfile);
2680 host.motdfile = XSTRDUP(MTYPE_HOST, file);
2681 } else
2682 success = CMD_WARNING_CONFIG_FAILED;
2683
2684 return success;
2685 }
2686
2687 DEFUN (banner_motd_file,
2688 banner_motd_file_cmd,
2689 "banner motd file FILE",
2690 "Set banner\n"
2691 "Banner for motd\n"
2692 "Banner from a file\n"
2693 "Filename\n")
2694 {
2695 int idx_file = 3;
2696 const char *filename = argv[idx_file]->arg;
2697 int cmd = cmd_banner_motd_file(filename);
2698
2699 if (cmd == CMD_ERR_NO_FILE)
2700 vty_out(vty, "%s does not exist", filename);
2701 else if (cmd == CMD_WARNING_CONFIG_FAILED)
2702 vty_out(vty, "%s must be in %s", filename, SYSCONFDIR);
2703
2704 return cmd;
2705 }
2706
2707 DEFUN (banner_motd_default,
2708 banner_motd_default_cmd,
2709 "banner motd default",
2710 "Set banner string\n"
2711 "Strings for motd\n"
2712 "Default string\n")
2713 {
2714 host.motd = default_motd;
2715 return CMD_SUCCESS;
2716 }
2717
2718 DEFUN (no_banner_motd,
2719 no_banner_motd_cmd,
2720 "no banner motd",
2721 NO_STR
2722 "Set banner string\n"
2723 "Strings for motd\n")
2724 {
2725 host.motd = NULL;
2726 if (host.motdfile)
2727 XFREE(MTYPE_HOST, host.motdfile);
2728 host.motdfile = NULL;
2729 return CMD_SUCCESS;
2730 }
2731
2732 DEFUN(find,
2733 find_cmd,
2734 "find COMMAND...",
2735 "Find CLI command containing text\n"
2736 "Text to search for\n")
2737 {
2738 char *text = argv_concat(argv, argc, 1);
2739 const struct cmd_node *node;
2740 const struct cmd_element *cli;
2741 vector clis;
2742
2743 for (unsigned int i = 0; i < vector_active(cmdvec); i++) {
2744 node = vector_slot(cmdvec, i);
2745 if (!node)
2746 continue;
2747 clis = node->cmd_vector;
2748 for (unsigned int j = 0; j < vector_active(clis); j++) {
2749 cli = vector_slot(clis, j);
2750 if (strcasestr(cli->string, text))
2751 vty_out(vty, " (%s) %s\n",
2752 node_names[node->node], cli->string);
2753 }
2754 }
2755
2756 XFREE(MTYPE_TMP, text);
2757
2758 return CMD_SUCCESS;
2759 }
2760
2761 /* Set config filename. Called from vty.c */
2762 void host_config_set(const char *filename)
2763 {
2764 if (host.config)
2765 XFREE(MTYPE_HOST, host.config);
2766 host.config = XSTRDUP(MTYPE_HOST, filename);
2767 }
2768
2769 const char *host_config_get(void)
2770 {
2771 return host.config;
2772 }
2773
2774 void install_default(enum node_type node)
2775 {
2776 install_element(node, &config_exit_cmd);
2777 install_element(node, &config_quit_cmd);
2778 install_element(node, &config_end_cmd);
2779 install_element(node, &config_help_cmd);
2780 install_element(node, &config_list_cmd);
2781 install_element(node, &show_cli_graph_cmd);
2782 install_element(node, &find_cmd);
2783
2784 install_element(node, &config_write_cmd);
2785 install_element(node, &show_running_config_cmd);
2786
2787 install_element(node, &autocomplete_cmd);
2788 }
2789
2790 /* Initialize command interface. Install basic nodes and commands.
2791 *
2792 * terminal = 0 -- vtysh / no logging, no config control
2793 * terminal = 1 -- normal daemon
2794 * terminal = -1 -- watchfrr / no logging, but minimal config control */
2795 void cmd_init(int terminal)
2796 {
2797 struct utsname names;
2798
2799 if (array_size(node_names) != NODE_TYPE_MAX)
2800 assert(!"Update the CLI node description array!");
2801
2802 uname(&names);
2803 qobj_init();
2804
2805 /* register command preprocessors */
2806 hook_register(cmd_execute, handle_pipe_action);
2807 hook_register(cmd_execute_done, handle_pipe_action_done);
2808
2809 varhandlers = list_new();
2810
2811 /* Allocate initial top vector of commands. */
2812 cmdvec = vector_init(VECTOR_MIN_SIZE);
2813
2814 /* Default host value settings. */
2815 host.name = XSTRDUP(MTYPE_HOST, names.nodename);
2816 #ifdef HAVE_STRUCT_UTSNAME_DOMAINNAME
2817 if ((strcmp(names.domainname, "(none)") == 0))
2818 host.domainname = NULL;
2819 else
2820 host.domainname = XSTRDUP(MTYPE_HOST, names.domainname);
2821 #else
2822 host.domainname = NULL;
2823 #endif
2824 host.password = NULL;
2825 host.enable = NULL;
2826 host.logfile = NULL;
2827 host.config = NULL;
2828 host.noconfig = (terminal < 0);
2829 host.lines = -1;
2830 host.motd = default_motd;
2831 host.motdfile = NULL;
2832
2833 /* Install top nodes. */
2834 install_node(&view_node, NULL);
2835 install_node(&enable_node, NULL);
2836 install_node(&auth_node, NULL);
2837 install_node(&auth_enable_node, NULL);
2838 install_node(&config_node, config_write_host);
2839
2840 /* Each node's basic commands. */
2841 install_element(VIEW_NODE, &show_version_cmd);
2842 install_element(ENABLE_NODE, &show_startup_config_cmd);
2843 install_element(ENABLE_NODE, &debug_memstats_cmd);
2844
2845 if (terminal) {
2846 install_element(VIEW_NODE, &config_list_cmd);
2847 install_element(VIEW_NODE, &config_exit_cmd);
2848 install_element(VIEW_NODE, &config_quit_cmd);
2849 install_element(VIEW_NODE, &config_help_cmd);
2850 install_element(VIEW_NODE, &config_enable_cmd);
2851 install_element(VIEW_NODE, &config_terminal_length_cmd);
2852 install_element(VIEW_NODE, &config_terminal_no_length_cmd);
2853 install_element(VIEW_NODE, &show_logging_cmd);
2854 install_element(VIEW_NODE, &show_commandtree_cmd);
2855 install_element(VIEW_NODE, &echo_cmd);
2856 install_element(VIEW_NODE, &autocomplete_cmd);
2857 install_element(VIEW_NODE, &find_cmd);
2858
2859 install_element(ENABLE_NODE, &config_end_cmd);
2860 install_element(ENABLE_NODE, &config_disable_cmd);
2861 install_element(ENABLE_NODE, &config_terminal_cmd);
2862 install_element(ENABLE_NODE, &copy_runningconf_startupconf_cmd);
2863 install_element(ENABLE_NODE, &config_write_cmd);
2864 install_element(ENABLE_NODE, &show_running_config_cmd);
2865 install_element(ENABLE_NODE, &config_logmsg_cmd);
2866
2867 install_default(CONFIG_NODE);
2868
2869 thread_cmd_init();
2870 workqueue_cmd_init();
2871 hash_cmd_init();
2872 }
2873
2874 install_element(CONFIG_NODE, &hostname_cmd);
2875 install_element(CONFIG_NODE, &no_hostname_cmd);
2876 install_element(CONFIG_NODE, &domainname_cmd);
2877 install_element(CONFIG_NODE, &no_domainname_cmd);
2878 install_element(CONFIG_NODE, &frr_version_defaults_cmd);
2879 install_element(CONFIG_NODE, &debug_memstats_cmd);
2880
2881 if (terminal > 0) {
2882 install_element(CONFIG_NODE, &password_cmd);
2883 install_element(CONFIG_NODE, &no_password_cmd);
2884 install_element(CONFIG_NODE, &enable_password_cmd);
2885 install_element(CONFIG_NODE, &no_enable_password_cmd);
2886
2887 install_element(CONFIG_NODE, &config_log_stdout_cmd);
2888 install_element(CONFIG_NODE, &no_config_log_stdout_cmd);
2889 install_element(CONFIG_NODE, &config_log_monitor_cmd);
2890 install_element(CONFIG_NODE, &no_config_log_monitor_cmd);
2891 install_element(CONFIG_NODE, &config_log_file_cmd);
2892 install_element(CONFIG_NODE, &no_config_log_file_cmd);
2893 install_element(CONFIG_NODE, &config_log_syslog_cmd);
2894 install_element(CONFIG_NODE, &no_config_log_syslog_cmd);
2895 install_element(CONFIG_NODE, &config_log_facility_cmd);
2896 install_element(CONFIG_NODE, &no_config_log_facility_cmd);
2897 install_element(CONFIG_NODE, &config_log_record_priority_cmd);
2898 install_element(CONFIG_NODE,
2899 &no_config_log_record_priority_cmd);
2900 install_element(CONFIG_NODE,
2901 &config_log_timestamp_precision_cmd);
2902 install_element(CONFIG_NODE,
2903 &no_config_log_timestamp_precision_cmd);
2904 install_element(CONFIG_NODE, &service_password_encrypt_cmd);
2905 install_element(CONFIG_NODE, &no_service_password_encrypt_cmd);
2906 install_element(CONFIG_NODE, &banner_motd_default_cmd);
2907 install_element(CONFIG_NODE, &banner_motd_file_cmd);
2908 install_element(CONFIG_NODE, &no_banner_motd_cmd);
2909 install_element(CONFIG_NODE, &service_terminal_length_cmd);
2910 install_element(CONFIG_NODE, &no_service_terminal_length_cmd);
2911
2912 vrf_install_commands();
2913 }
2914
2915 #ifdef DEV_BUILD
2916 grammar_sandbox_init();
2917 #endif
2918 }
2919
2920 void cmd_terminate()
2921 {
2922 struct cmd_node *cmd_node;
2923
2924 hook_unregister(cmd_execute, handle_pipe_action);
2925 hook_unregister(cmd_execute_done, handle_pipe_action_done);
2926
2927 if (cmdvec) {
2928 for (unsigned int i = 0; i < vector_active(cmdvec); i++)
2929 if ((cmd_node = vector_slot(cmdvec, i)) != NULL) {
2930 // deleting the graph delets the cmd_element as
2931 // well
2932 graph_delete_graph(cmd_node->cmdgraph);
2933 vector_free(cmd_node->cmd_vector);
2934 hash_clean(cmd_node->cmd_hash, NULL);
2935 hash_free(cmd_node->cmd_hash);
2936 cmd_node->cmd_hash = NULL;
2937 }
2938
2939 vector_free(cmdvec);
2940 cmdvec = NULL;
2941 }
2942
2943 if (host.name)
2944 XFREE(MTYPE_HOST, host.name);
2945 if (host.domainname)
2946 XFREE(MTYPE_HOST, host.domainname);
2947 if (host.password)
2948 XFREE(MTYPE_HOST, host.password);
2949 if (host.password_encrypt)
2950 XFREE(MTYPE_HOST, host.password_encrypt);
2951 if (host.enable)
2952 XFREE(MTYPE_HOST, host.enable);
2953 if (host.enable_encrypt)
2954 XFREE(MTYPE_HOST, host.enable_encrypt);
2955 if (host.logfile)
2956 XFREE(MTYPE_HOST, host.logfile);
2957 if (host.motdfile)
2958 XFREE(MTYPE_HOST, host.motdfile);
2959 if (host.config)
2960 XFREE(MTYPE_HOST, host.config);
2961
2962 list_delete(&varhandlers);
2963 qobj_finish();
2964 }