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