cnat: fix cnat_set_snat() debug CLI 90/28690/1
authorDave Barach <dave@barachs.net>
Fri, 4 Sep 2020 20:32:24 +0000 (16:32 -0400)
committerDave Barach <dave@barachs.net>
Fri, 4 Sep 2020 20:33:25 +0000 (16:33 -0400)
Otherwise, the debug CLI command is unusable in a script because it
will eat (and complain about) subsequent lines in the script. Missing
this guitar lick, etc:

/* Get a line of input. */
 if (!unformat_user (input, unformat_line_input, line_input))
   return 0;

Type: fix

Signed-off-by: Dave Barach <dave@barachs.net>
Change-Id: Id328e6f1cc4d2e1672c3946db3865ab5a1a3af8d

src/plugins/cnat/cnat_snat.c

index 2f6a631..f3951cb 100644 (file)
@@ -119,11 +119,17 @@ static clib_error_t *
 cnat_set_snat (vlib_main_t * vm,
               unformat_input_t * input, vlib_cli_command_t * cmd)
 {
+  unformat_input_t _line_input, *line_input = &_line_input;
+  clib_error_t *e = 0;
   ip_address_t addr;
 
-  while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
+  /* Get a line of input. */
+  if (!unformat_user (input, unformat_line_input, line_input))
+    return 0;
+
+  while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
     {
-      if (unformat (input, "%U", unformat_ip_address, &addr))
+      if (unformat (line_input, "%U", unformat_ip_address, &addr))
        {
          if (ip_addr_version (&addr) == AF_IP4)
            clib_memcpy (&cnat_main.snat_ip4, &ip_addr_v4 (&addr),
@@ -133,18 +139,24 @@ cnat_set_snat (vlib_main_t * vm,
                         sizeof (ip6_address_t));
        }
       else
-       return (clib_error_return (0, "unknown input '%U'",
-                                  format_unformat_error, input));
+       {
+         e = clib_error_return (0, "unknown input '%U'",
+                                format_unformat_error, input);
+         goto done;
+       }
     }
 
-  return (NULL);
+done:
+  unformat_free (line_input);
+
+  return (e);
 }
 
 /* *INDENT-OFF* */
 VLIB_CLI_COMMAND (cnat_set_snat_command, static) =
 {
   .path = "cnat snat with",
-  .short_help = "cnat snat with [ip]",
+  .short_help = "cnat snat with [<ip4-address>][<ip6-address>]",
   .function = cnat_set_snat,
 };
 /* *INDENT-ON* */