diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-10-23 23:20:01 +0200 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-10-24 00:47:42 +0200 |
commit | e8be380a539ad29661637042ca619b935d4c8bbb (patch) | |
tree | 99eb8c9ba1fa73e295c8d0eae47895ef5674ec70 /vtysh | |
parent | Merge pull request #3204 from ton31337/fix/make_vrf_import_default_selectable (diff) | |
download | frr-e8be380a539ad29661637042ca619b935d4c8bbb.tar.xz frr-e8be380a539ad29661637042ca619b935d4c8bbb.zip |
vtysh: fix exit-vrf printing
Resolves issue with exit-vrf being placed at the end of zebra's portion
of a vrf block, but before other daemons' portions of the same config
block.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh_config.c | 88 |
1 files changed, 76 insertions, 12 deletions
diff --git a/vtysh/vtysh_config.c b/vtysh/vtysh_config.c index 7a7744f7c..541eafcf7 100644 --- a/vtysh/vtysh_config.c +++ b/vtysh/vtysh_config.c @@ -132,16 +132,83 @@ static void config_add_line_uniq(struct list *config, const char *line) } /* - * I want to explicitly move this command to the end of the line + * Add a line that should only be shown once, and always show at the end of the + * config block. + * + * If the line already exists, it will be moved to the end of the block. If it + * does not exist, it will be added at the end of the block. + * + * Note that this only makes sense when there is just one such line that should + * show up at the very end of a config block. Furthermore, if the same block + * can show up from multiple daemons, all of them must make sure to print the + * line at the end of their config, otherwise the line will show at the end of + * the config for the last daemon that printed it. + * + * Here is a motivating example with the 'exit-vrf' command. Suppose we receive + * a config from Zebra like so: + * + * vrf BLUE + * ip route A + * ip route B + * exit-vrf + * + * Then suppose we later receive this config from PIM: + * + * vrf BLUE + * ip msdp mesh-group MyGroup member 1.2.3.4 + * exit-vrf + * + * Then we will combine them into one config block like so: + * + * vrf BLUE + * ip route A + * ip route B + * ip msdp mesh-group MyGroup member 1.2.3.4 + * exit-vrf + * + * Because PIM also sent us an 'exit-vrf', we noticed that we already had one + * under the 'vrf BLUE' config block and so we moved it to the end of the + * config block again. If PIM had neglected to send us 'exit-vrf', the result + * would be this: + * + * vrf BLUE + * ip route A + * ip route B + * exit-vrf + * ip msdp mesh-group MyGroup member 1.2.3.4 + * + * Therefore, daemons that share config blocks must take care to consistently + * print the same block terminators. + * + * Ideally this would be solved by adding a string to struct config that is + * always printed at the end when dumping a config. However, this would only + * work when the user is using integrated config. In the non-integrated config + * case, daemons are responsible for writing their own config files, and so the + * must be able to print these blocks correctly independently of vtysh, which + * means they are the ones that need to handle printing the block terminators + * and VTYSH needs to be smart enough to combine them properly. + * + * --- + * + * config + * The config to add the line to + * + * line + * The line to add to the end of the config */ -static void config_add_line_end(struct list *config, const char *line) +static void config_add_line_uniq_end(struct list *config, const char *line) { struct listnode *node; - void *item = XSTRDUP(MTYPE_VTYSH_CONFIG_LINE, line); + char *pnt; - listnode_add(config, item); - node = listnode_lookup(config, item); - if (node) + for (ALL_LIST_ELEMENTS_RO(config, node, pnt)) { + if (strcmp(pnt, line) == 0) + break; + } + + if (!node) + config_add_line(config, line); + else listnode_move_to_tail(config, node); } @@ -158,8 +225,6 @@ void vtysh_config_parse_line(void *arg, const char *line) if (c == '\0') return; - /* printf ("[%s]\n", line); */ - switch (c) { /* Suppress exclamation points ! and commented lines. The !s are * generated @@ -178,10 +243,10 @@ void vtysh_config_parse_line(void *arg, const char *line) } else if (strncmp(line, " ip multicast boundary", strlen(" ip multicast boundary")) == 0) { - config_add_line_end(config->line, line); + config_add_line_uniq_end(config->line, line); } else if (strncmp(line, " ip igmp query-interval", strlen(" ip igmp query-interval")) == 0) { - config_add_line_end(config->line, line); + config_add_line_uniq_end(config->line, line); } else if (config->index == LINK_PARAMS_NODE && strncmp(line, " exit-link-params", strlen(" exit")) @@ -192,8 +257,7 @@ void vtysh_config_parse_line(void *arg, const char *line) && strncmp(line, " exit-vrf", strlen(" exit-vrf")) == 0) { - config_add_line(config->line, line); - config->index = CONFIG_NODE; + config_add_line_uniq_end(config->line, line); } else if (config->index == RMAP_NODE || config->index == INTERFACE_NODE || config->index == LOGICALROUTER_NODE |