]> git.proxmox.com Git - mirror_frr.git/blame - vtysh/vtysh_config.c
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / vtysh / vtysh_config.c
CommitLineData
718e3744 1/* Configuration generator.
896014f4
DL
2 * Copyright (C) 2000 Kunihiro Ishiguro
3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
718e3744 20
21#include <zebra.h>
22
23#include "command.h"
24#include "linklist.h"
25#include "memory.h"
26
27#include "vtysh/vtysh.h"
88177fe3 28#include "vtysh/vtysh_user.h"
718e3744 29
4a1ab8e4 30DEFINE_MGROUP(MVTYSH, "vtysh")
d62a17ae 31DEFINE_MTYPE_STATIC(MVTYSH, VTYSH_CONFIG, "Vtysh configuration")
4a1ab8e4
DL
32DEFINE_MTYPE_STATIC(MVTYSH, VTYSH_CONFIG_LINE, "Vtysh configuration line")
33
718e3744 34vector configvec;
35
d62a17ae 36struct config {
37 /* Configuration node name. */
38 char *name;
718e3744 39
d62a17ae 40 /* Configuration string line. */
41 struct list *line;
718e3744 42
d62a17ae 43 /* Configuration can be nest. */
44 struct config *config;
718e3744 45
d62a17ae 46 /* Index of this config. */
d7c0a89a 47 uint32_t index;
718e3744 48};
49
50struct list *config_top;
95e735b5 51
d62a17ae 52static int line_cmp(char *c1, char *c2)
718e3744 53{
d62a17ae 54 return strcmp(c1, c2);
718e3744 55}
56
d62a17ae 57static void line_del(char *line)
718e3744 58{
d62a17ae 59 XFREE(MTYPE_VTYSH_CONFIG_LINE, line);
718e3744 60}
61
d62a17ae 62static struct config *config_new(void)
718e3744 63{
d62a17ae 64 struct config *config;
65 config = XCALLOC(MTYPE_VTYSH_CONFIG, sizeof(struct config));
66 return config;
718e3744 67}
68
d62a17ae 69static int config_cmp(struct config *c1, struct config *c2)
718e3744 70{
d62a17ae 71 return strcmp(c1->name, c2->name);
718e3744 72}
73
d62a17ae 74static void config_del(struct config *config)
718e3744 75{
6a154c88 76 list_delete(&config->line);
d62a17ae 77 if (config->name)
78 XFREE(MTYPE_VTYSH_CONFIG_LINE, config->name);
79 XFREE(MTYPE_VTYSH_CONFIG, config);
718e3744 80}
81
d62a17ae 82static struct config *config_get(int index, const char *line)
718e3744 83{
d62a17ae 84 struct config *config;
85 struct config *config_loop;
86 struct list *master;
87 struct listnode *node, *nnode;
88
89 config = config_loop = NULL;
90
91 master = vector_lookup_ensure(configvec, index);
92
93 if (!master) {
94 master = list_new();
95 master->del = (void (*)(void *))config_del;
96 master->cmp = (int (*)(void *, void *))config_cmp;
97 vector_set_index(configvec, index, master);
98 }
99
100 for (ALL_LIST_ELEMENTS(master, node, nnode, config_loop)) {
101 if (strcmp(config_loop->name, line) == 0)
102 config = config_loop;
103 }
104
105 if (!config) {
106 config = config_new();
107 config->line = list_new();
108 config->line->del = (void (*)(void *))line_del;
109 config->line->cmp = (int (*)(void *, void *))line_cmp;
110 config->name = XSTRDUP(MTYPE_VTYSH_CONFIG_LINE, line);
111 config->index = index;
112 listnode_add(master, config);
113 }
114 return config;
718e3744 115}
116
d62a17ae 117void config_add_line(struct list *config, const char *line)
718e3744 118{
d62a17ae 119 listnode_add(config, XSTRDUP(MTYPE_VTYSH_CONFIG_LINE, line));
718e3744 120}
121
d62a17ae 122static void config_add_line_uniq(struct list *config, const char *line)
718e3744 123{
d62a17ae 124 struct listnode *node, *nnode;
125 char *pnt;
126
127 for (ALL_LIST_ELEMENTS(config, node, nnode, pnt)) {
128 if (strcmp(pnt, line) == 0)
129 return;
130 }
131 listnode_add_sort(config, XSTRDUP(MTYPE_VTYSH_CONFIG_LINE, line));
718e3744 132}
133
a3c1db5e 134/*
e8be380a
QY
135 * Add a line that should only be shown once, and always show at the end of the
136 * config block.
137 *
138 * If the line already exists, it will be moved to the end of the block. If it
139 * does not exist, it will be added at the end of the block.
140 *
141 * Note that this only makes sense when there is just one such line that should
142 * show up at the very end of a config block. Furthermore, if the same block
143 * can show up from multiple daemons, all of them must make sure to print the
144 * line at the end of their config, otherwise the line will show at the end of
145 * the config for the last daemon that printed it.
146 *
147 * Here is a motivating example with the 'exit-vrf' command. Suppose we receive
148 * a config from Zebra like so:
149 *
150 * vrf BLUE
151 * ip route A
152 * ip route B
153 * exit-vrf
154 *
155 * Then suppose we later receive this config from PIM:
156 *
157 * vrf BLUE
158 * ip msdp mesh-group MyGroup member 1.2.3.4
159 * exit-vrf
160 *
161 * Then we will combine them into one config block like so:
162 *
163 * vrf BLUE
164 * ip route A
165 * ip route B
166 * ip msdp mesh-group MyGroup member 1.2.3.4
167 * exit-vrf
168 *
169 * Because PIM also sent us an 'exit-vrf', we noticed that we already had one
170 * under the 'vrf BLUE' config block and so we moved it to the end of the
171 * config block again. If PIM had neglected to send us 'exit-vrf', the result
172 * would be this:
173 *
174 * vrf BLUE
175 * ip route A
176 * ip route B
177 * exit-vrf
178 * ip msdp mesh-group MyGroup member 1.2.3.4
179 *
180 * Therefore, daemons that share config blocks must take care to consistently
181 * print the same block terminators.
182 *
183 * Ideally this would be solved by adding a string to struct config that is
184 * always printed at the end when dumping a config. However, this would only
185 * work when the user is using integrated config. In the non-integrated config
186 * case, daemons are responsible for writing their own config files, and so the
187 * must be able to print these blocks correctly independently of vtysh, which
188 * means they are the ones that need to handle printing the block terminators
189 * and VTYSH needs to be smart enough to combine them properly.
190 *
191 * ---
192 *
193 * config
194 * The config to add the line to
195 *
196 * line
197 * The line to add to the end of the config
a3c1db5e 198 */
e8be380a 199static void config_add_line_uniq_end(struct list *config, const char *line)
a3c1db5e
DS
200{
201 struct listnode *node;
e8be380a 202 char *pnt;
a3c1db5e 203
e8be380a
QY
204 for (ALL_LIST_ELEMENTS_RO(config, node, pnt)) {
205 if (strcmp(pnt, line) == 0)
206 break;
207 }
208
209 if (!node)
210 config_add_line(config, line);
211 else
a3c1db5e
DS
212 listnode_move_to_tail(config, node);
213}
214
d62a17ae 215void vtysh_config_parse_line(void *arg, const char *line)
718e3744 216{
d62a17ae 217 char c;
218 static struct config *config = NULL;
219
220 if (!line)
221 return;
222
223 c = line[0];
224
225 if (c == '\0')
226 return;
227
d62a17ae 228 switch (c) {
229 /* Suppress exclamation points ! and commented lines. The !s are
230 * generated
231 * dynamically in vtysh_config_dump() */
232 case '!':
233 case '#':
234 break;
235 case ' ':
236 /* Store line to current configuration. */
237 if (config) {
238 if (strncmp(line, " link-params",
239 strlen(" link-params"))
240 == 0) {
241 config_add_line(config->line, line);
242 config->index = LINK_PARAMS_NODE;
996c9314
LB
243 } else if (strncmp(line, " ip multicast boundary",
244 strlen(" ip multicast boundary"))
245 == 0) {
e8be380a 246 config_add_line_uniq_end(config->line, line);
61a7a236
DS
247 } else if (strncmp(line, " ip igmp query-interval",
248 strlen(" ip igmp query-interval")) == 0) {
e8be380a 249 config_add_line_uniq_end(config->line, line);
d62a17ae 250 } else if (config->index == LINK_PARAMS_NODE
251 && strncmp(line, " exit-link-params",
252 strlen(" exit"))
253 == 0) {
254 config_add_line(config->line, line);
255 config->index = INTERFACE_NODE;
c319e19d
QY
256 } else if (config->index == VRF_NODE
257 && strncmp(line, " exit-vrf",
258 strlen(" exit-vrf"))
259 == 0) {
e8be380a 260 config_add_line_uniq_end(config->line, line);
d62a17ae 261 } else if (config->index == RMAP_NODE
262 || config->index == INTERFACE_NODE
f5d20fdb 263 || config->index == LOGICALROUTER_NODE
d62a17ae 264 || config->index == VTY_NODE
265 || config->index == VRF_NODE)
266 config_add_line_uniq(config->line, line);
267 else
268 config_add_line(config->line, line);
269 } else
270 config_add_line(config_top, line);
271 break;
272 default:
273 if (strncmp(line, "interface", strlen("interface")) == 0)
274 config = config_get(INTERFACE_NODE, line);
2dd0d726
RW
275 else if (strncmp(line, "pseudowire", strlen("pseudowire")) == 0)
276 config = config_get(PW_NODE, line);
34f6bdbe 277 else if (strncmp(line, "logical-router", strlen("logical-router")) == 0)
f5d20fdb 278 config = config_get(LOGICALROUTER_NODE, line);
d62a17ae 279 else if (strncmp(line, "vrf", strlen("vrf")) == 0)
280 config = config_get(VRF_NODE, line);
e5c83d9b
DS
281 else if (strncmp(line, "nexthop-group", strlen("nexthop-group"))
282 == 0)
283 config = config_get(NH_GROUP_NODE, line);
d62a17ae 284 else if (strncmp(line, "router-id", strlen("router-id")) == 0)
285 config = config_get(ZEBRA_NODE, line);
286 else if (strncmp(line, "router rip", strlen("router rip")) == 0)
287 config = config_get(RIP_NODE, line);
288 else if (strncmp(line, "router ripng", strlen("router ripng"))
289 == 0)
290 config = config_get(RIPNG_NODE, line);
291 else if (strncmp(line, "router eigrp", strlen("router eigrp"))
292 == 0)
293 config = config_get(EIGRP_NODE, line);
294 else if (strncmp(line, "router babel", strlen("router babel"))
295 == 0)
296 config = config_get(BABEL_NODE, line);
297 else if (strncmp(line, "router ospf", strlen("router ospf"))
298 == 0)
299 config = config_get(OSPF_NODE, line);
300 else if (strncmp(line, "router ospf6", strlen("router ospf6"))
301 == 0)
302 config = config_get(OSPF6_NODE, line);
303 else if (strncmp(line, "mpls ldp", strlen("mpls ldp")) == 0)
304 config = config_get(LDP_NODE, line);
305 else if (strncmp(line, "l2vpn", strlen("l2vpn")) == 0)
306 config = config_get(LDP_L2VPN_NODE, line);
307 else if (strncmp(line, "router bgp", strlen("router bgp")) == 0)
308 config = config_get(BGP_NODE, line);
309 else if (strncmp(line, "router isis", strlen("router isis"))
310 == 0)
311 config = config_get(ISIS_NODE, line);
770ccdf8
CF
312 else if (strncmp(line, "router openfabric", strlen("router openfabric"))
313 == 0)
314 config = config_get(OPENFABRIC_NODE, line);
d62a17ae 315 else if (strncmp(line, "route-map", strlen("route-map")) == 0)
316 config = config_get(RMAP_NODE, line);
e5c83d9b
DS
317 else if (strncmp(line, "pbr-map", strlen("pbr-map")) == 0)
318 config = config_get(PBRMAP_NODE, line);
d62a17ae 319 else if (strncmp(line, "access-list", strlen("access-list"))
320 == 0)
321 config = config_get(ACCESS_NODE, line);
322 else if (strncmp(line, "ipv6 access-list",
323 strlen("ipv6 access-list"))
324 == 0)
325 config = config_get(ACCESS_IPV6_NODE, line);
d37ba549
MK
326 else if (strncmp(line, "mac access-list",
327 strlen("mac access-list"))
328 == 0)
329 config = config_get(ACCESS_MAC_NODE, line);
d62a17ae 330 else if (strncmp(line, "ip prefix-list",
331 strlen("ip prefix-list"))
332 == 0)
333 config = config_get(PREFIX_NODE, line);
334 else if (strncmp(line, "ipv6 prefix-list",
335 strlen("ipv6 prefix-list"))
336 == 0)
337 config = config_get(PREFIX_IPV6_NODE, line);
7336e101
SP
338 else if (strncmp(line, "bgp as-path access-list",
339 strlen("bgp as-path access-list"))
d62a17ae 340 == 0)
341 config = config_get(AS_LIST_NODE, line);
7336e101
SP
342 else if (strncmp(line, "bgp community-list",
343 strlen("bgp community-list"))
d62a17ae 344 == 0
7336e101
SP
345 || strncmp(line, "bgp extcommunity-list",
346 strlen("bgp extcommunity-list"))
996c9314 347 == 0
7336e101
SP
348 || strncmp(line, "bgp large-community-list",
349 strlen("bgp large-community-list"))
996c9314 350 == 0)
d62a17ae 351 config = config_get(COMMUNITY_LIST_NODE, line);
352 else if (strncmp(line, "ip route", strlen("ip route")) == 0)
353 config = config_get(IP_NODE, line);
354 else if (strncmp(line, "ipv6 route", strlen("ipv6 route")) == 0)
355 config = config_get(IP_NODE, line);
356 else if (strncmp(line, "key", strlen("key")) == 0)
357 config = config_get(KEYCHAIN_NODE, line);
358 else if (strncmp(line, "line", strlen("line")) == 0)
359 config = config_get(VTY_NODE, line);
360 else if ((strncmp(line, "ipv6 forwarding",
361 strlen("ipv6 forwarding"))
362 == 0)
363 || (strncmp(line, "ip forwarding",
364 strlen("ip forwarding"))
365 == 0))
366 config = config_get(FORWARDING_NODE, line);
d62a17ae 367 else if (strncmp(line, "debug vrf", strlen("debug vrf")) == 0)
368 config = config_get(VRF_DEBUG_NODE, line);
1c2facd1
RW
369 else if (strncmp(line, "debug northbound",
370 strlen("debug northbound"))
371 == 0)
372 config = config_get(NORTHBOUND_DEBUG_NODE, line);
d62a17ae 373 else if (strncmp(line, "debug", strlen("debug")) == 0)
374 config = config_get(DEBUG_NODE, line);
375 else if (strncmp(line, "password", strlen("password")) == 0
376 || strncmp(line, "enable password",
377 strlen("enable password"))
378 == 0)
379 config = config_get(AAA_NODE, line);
380 else if (strncmp(line, "ip protocol", strlen("ip protocol"))
381 == 0)
382 config = config_get(PROTOCOL_NODE, line);
383 else if (strncmp(line, "ipv6 protocol", strlen("ipv6 protocol"))
384 == 0)
385 config = config_get(PROTOCOL_NODE, line);
386 else if (strncmp(line, "ip nht", strlen("ip nht")) == 0)
387 config = config_get(PROTOCOL_NODE, line);
388 else if (strncmp(line, "ipv6 nht", strlen("ipv6 nht")) == 0)
389 config = config_get(PROTOCOL_NODE, line);
390 else if (strncmp(line, "mpls", strlen("mpls")) == 0)
391 config = config_get(MPLS_NODE, line);
c2f29cf3
RZ
392 else if (strncmp(line, "bfd", strlen("bfd")) == 0)
393 config = config_get(BFD_NODE, line);
d62a17ae 394 else {
395 if (strncmp(line, "log", strlen("log")) == 0
396 || strncmp(line, "hostname", strlen("hostname"))
397 == 0
398 || strncmp(line, "frr", strlen("frr")) == 0
399 || strncmp(line, "agentx", strlen("agentx")) == 0
400 || strncmp(line, "no log", strlen("no log")) == 0)
401 config_add_line_uniq(config_top, line);
402 else
403 config_add_line(config_top, line);
404 config = NULL;
405 }
406 break;
718e3744 407 }
718e3744 408}
409
718e3744 410/* Macro to check delimiter is needed between each configuration line
95e735b5 411 * or not. */
d62a17ae 412#define NO_DELIMITER(I) \
413 ((I) == ACCESS_NODE || (I) == PREFIX_NODE || (I) == IP_NODE \
414 || (I) == AS_LIST_NODE || (I) == COMMUNITY_LIST_NODE \
d37ba549 415 || (I) == ACCESS_IPV6_NODE || (I) == ACCESS_MAC_NODE \
f108d487
QY
416 || (I) == PREFIX_IPV6_NODE || (I) == FORWARDING_NODE \
417 || (I) == DEBUG_NODE || (I) == AAA_NODE || (I) == VRF_DEBUG_NODE \
1c2facd1 418 || (I) == NORTHBOUND_DEBUG_NODE || (I) == MPLS_NODE)
718e3744 419
95e735b5 420/* Display configuration to file pointer. */
0a334343 421void vtysh_config_dump(void)
718e3744 422{
d62a17ae 423 struct listnode *node, *nnode;
424 struct listnode *mnode, *mnnode;
425 struct config *config;
426 struct list *master;
427 char *line;
428 unsigned int i;
429
2cddf2ff
QY
430 for (ALL_LIST_ELEMENTS(config_top, node, nnode, line))
431 vty_out(vty, "%s\n", line);
432
433 vty_out(vty, "!\n");
d62a17ae 434
435 for (i = 0; i < vector_active(configvec); i++)
436 if ((master = vector_slot(configvec, i)) != NULL) {
437 for (ALL_LIST_ELEMENTS(master, node, nnode, config)) {
1d72e48a 438 /* Don't print empty sections for interface.
d62a17ae 439 * Route maps on the
440 * other hand could have a legitimate empty
441 * section at the end.
1d72e48a 442 * VRF is handled in the backend, we could have
443 * "configured" VRFs with static routes which
444 * are not under the VRF node.
d62a17ae 445 */
1d72e48a 446 if (config->index == INTERFACE_NODE
d62a17ae 447 && list_isempty(config->line))
448 continue;
449
2cddf2ff 450 vty_out(vty, "%s\n", config->name);
d62a17ae 451
452 for (ALL_LIST_ELEMENTS(config->line, mnode,
2cddf2ff
QY
453 mnnode, line))
454 vty_out(vty, "%s\n", line);
455 if (!NO_DELIMITER(i))
456 vty_out(vty, "!\n");
d62a17ae 457 }
2cddf2ff
QY
458 if (NO_DELIMITER(i))
459 vty_out(vty, "!\n");
d62a17ae 460 }
461
462 for (i = 0; i < vector_active(configvec); i++)
463 if ((master = vector_slot(configvec, i)) != NULL) {
6a154c88 464 list_delete(&master);
d62a17ae 465 vector_slot(configvec, i) = NULL;
466 }
467 list_delete_all_node(config_top);
718e3744 468}
469
470/* Read up configuration file from file_name. */
d62a17ae 471static int vtysh_read_file(FILE *confp)
718e3744 472{
d62a17ae 473 struct vty *vty;
474 int ret;
475
476 vty = vty_new();
4a9746fd 477 vty->wfd = STDERR_FILENO;
d62a17ae 478 vty->type = VTY_TERM;
479 vty->node = CONFIG_NODE;
718e3744 480
d62a17ae 481 vtysh_execute_no_pager("enable");
482 vtysh_execute_no_pager("configure terminal");
718e3744 483
d62a17ae 484 /* Execute configuration file. */
485 ret = vtysh_config_from_file(vty, confp);
718e3744 486
d62a17ae 487 vtysh_execute_no_pager("end");
488 vtysh_execute_no_pager("disable");
718e3744 489
d62a17ae 490 vty_close(vty);
3221dca8 491
d62a17ae 492 return (ret);
718e3744 493}
494
e7168df4 495/* Read up configuration file from config_default_dir. */
d62a17ae 496int vtysh_read_config(const char *config_default_dir)
718e3744 497{
d62a17ae 498 FILE *confp = NULL;
499 int ret;
500
501 confp = fopen(config_default_dir, "r");
502 if (confp == NULL) {
503 fprintf(stderr,
504 "%% Can't open configuration file %s due to '%s'.\n",
505 config_default_dir, safe_strerror(errno));
506 return (CMD_ERR_NO_FILE);
507 }
67e29abc 508
d62a17ae 509 ret = vtysh_read_file(confp);
510 fclose(confp);
718e3744 511
d62a17ae 512 return (ret);
718e3744 513}
514
e7168df4 515/* We don't write vtysh specific into file from vtysh. vtysh.conf should
516 * be edited by hand. So, we handle only "write terminal" case here and
517 * integrate vtysh specific conf with conf from daemons.
518 */
d62a17ae 519void vtysh_config_write()
718e3744 520{
d62a17ae 521 char line[81];
d62a17ae 522
6b3ee3a0
MK
523 if (cmd_hostname_get()) {
524 sprintf(line, "hostname %s", cmd_hostname_get());
d62a17ae 525 vtysh_config_parse_line(NULL, line);
526 }
3b103fec
MK
527
528 if (cmd_domainname_get()) {
529 sprintf(line, "domainname %s", cmd_domainname_get());
530 vtysh_config_parse_line(NULL, line);
531 }
d62a17ae 532 if (vtysh_write_integrated == WRITE_INTEGRATED_NO)
533 vtysh_config_parse_line(NULL,
534 "no service integrated-vtysh-config");
535 if (vtysh_write_integrated == WRITE_INTEGRATED_YES)
536 vtysh_config_parse_line(NULL,
537 "service integrated-vtysh-config");
538
539 user_config_write();
718e3744 540}
541
d62a17ae 542void vtysh_config_init()
718e3744 543{
d62a17ae 544 config_top = list_new();
545 config_top->del = (void (*)(void *))line_del;
546 configvec = vector_init(1);
718e3744 547}