misc: vppctl - fix coverity warning 25/34525/4
authorKlement Sekera <ksekera@cisco.com>
Tue, 16 Nov 2021 11:14:40 +0000 (12:14 +0100)
committerAndrew Yourtchenko <ayourtch@gmail.com>
Fri, 28 Jan 2022 15:14:45 +0000 (15:14 +0000)
Calculate space left to silence coverity.

Type: fix
Fixes: 31f192434660
Signed-off-by: Klement Sekera <ksekera@cisco.com>
Change-Id: I9cd2e91ce74444e2625bf86721a8d3e44bf6afdd

src/vpp/app/vppctl.c

index de5572d..7166ce1 100644 (file)
@@ -169,7 +169,7 @@ main (int argc, char *argv[])
   struct termios tio;
   int efd = -1;
   char *cmd = 0;
-  int cmd_len = 0;
+  unsigned long cmd_len = 0;
   int do_quit = 0;
   int is_interactive = 0;
   int acked = 1;               /* counts messages from VPP; starts at 1 */
@@ -220,7 +220,7 @@ main (int argc, char *argv[])
     }
   if (cmd_len > 0)
     {
-      cmd_len++; // account for \n in the end
+      cmd_len++; // account for 0 at end
       cmd = malloc (cmd_len);
       if (!cmd)
        {
@@ -229,10 +229,14 @@ main (int argc, char *argv[])
          goto done;
        }
       memset (cmd, 0, cmd_len);
+      unsigned long space_left = cmd_len - 1; // reserve space for 0 at end
       while (argc--)
        {
-         strncat (cmd, *argv++, cmd_len);
-         strncat (cmd, " ", cmd_len);
+         strncat (cmd, *argv, space_left);
+         space_left -= strlen (*argv);
+         ++argv;
+         strncat (cmd, " ", space_left);
+         --space_left;
        }
       cmd[cmd_len - 2] = '\n';
       cmd[cmd_len - 1] = 0;