summaryrefslogtreecommitdiffstats
path: root/vtysh/vtysh.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2015-09-28 22:17:36 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2015-09-28 22:17:36 +0200
commitbed578b8b98978d12a6319300bb6eb3a8b4d1b63 (patch)
treee9a58202b35cba83ec812adb14906650ef9e6257 /vtysh/vtysh.c
parentBGP: Fix source route type in redistributed route (diff)
downloadfrr-bed578b8b98978d12a6319300bb6eb3a8b4d1b63.tar.xz
frr-bed578b8b98978d12a6319300bb6eb3a8b4d1b63.zip
vtysh: Fix Quagga.conf file read in.
There exists a sequence of cli commands that are successfully read in by bgpd.conf, but not by a consolidated Quagga.conf. This issue stems from the fact that the consolidated config file attempts to match the current node + 1 node up the tree, while the individual config file searches for matches all the way up the tree. Quagga.conf read-in relies on vtysh_cmd.c command parsing which puts all nodes at CONFIG_NODE and if a match is found CMD_SUCCESS_DAEMON is returned. This signals to the parser to call the appropriate daemon with the comamnd. bgp as an example has three levels of config node's. If you are reading in a config node at the 3rd level(say address-family ipv6) then transition to another node under bgp it will not work in Quagga.conf because the code only looked up one node and was at CONFIG_BGP when it failed to find a match. Ticket: CM-7625 Reviewed by: CCR-3591 Testing: See Bug Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com> Reviewed-by: Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'vtysh/vtysh.c')
-rw-r--r--vtysh/vtysh.c50
1 files changed, 1 insertions, 49 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index 699a15b11..6d5f3c9e9 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -666,62 +666,14 @@ void
vtysh_config_from_file (struct vty *vty, FILE *fp)
{
int ret;
- vector vline;
struct cmd_element *cmd;
- int save_node = CONFIG_NODE;
int lineno = 0;
while (fgets (vty->buf, VTY_BUFSIZ, fp))
{
lineno++;
- if (vty->buf[0] == '!' || vty->buf[1] == '#')
- continue;
-
- vline = cmd_make_strvec (vty->buf);
- /* In case of comment line. */
- if (vline == NULL)
- continue;
-
- /* Execute configuration command : this is strict match. */
- ret = cmd_execute_command_strict (vline, vty, &cmd);
-
- /* Try again with setting node to CONFIG_NODE. */
- if (ret != CMD_SUCCESS
- && ret != CMD_SUCCESS_DAEMON
- && ret != CMD_WARNING)
- {
- if (vty->node == KEYCHAIN_KEY_NODE)
- {
- vty->node = KEYCHAIN_NODE;
- vtysh_exit_ripd_only ();
- ret = cmd_execute_command_strict (vline, vty, &cmd);
-
- if (ret != CMD_SUCCESS
- && ret != CMD_SUCCESS_DAEMON
- && ret != CMD_WARNING)
- {
- vtysh_exit_ripd_only ();
- vty->node = CONFIG_NODE;
- ret = cmd_execute_command_strict (vline, vty, &cmd);
- }
- }
- else
- {
- save_node = vty->node;
- vty->node = CONFIG_NODE;
- ret = cmd_execute_command_strict (vline, vty, &cmd);
-
- // If the command did not work at CONFIG_NODE either then ignore
- // the command and go back to our previous node.
- if ((ret != CMD_SUCCESS) &&
- (ret != CMD_SUCCESS_DAEMON) &&
- (ret != CMD_WARNING))
- vty->node = save_node;
- }
- }
-
- cmd_free_strvec (vline);
+ ret = command_config_read_one_line (vty, &cmd, 1);
switch (ret)
{