server: fix potential buffer overrun in bind string
authorJens Axboe <axboe@fb.com>
Mon, 14 Apr 2014 14:54:09 +0000 (08:54 -0600)
committerJens Axboe <axboe@fb.com>
Mon, 14 Apr 2014 14:54:09 +0000 (08:54 -0600)
Signed-off-by: Jens Axboe <axboe@fb.com>
server.c

index c2cf2ddd9d557e7e915083be0f10c8aaf46963de..9442764ed609a4d52ea472ef844a93f8f7dcbb45 100644 (file)
--- a/server.c
+++ b/server.c
@@ -1368,6 +1368,8 @@ static int fio_init_server_connection(void)
        if (sk < 0)
                return sk;
 
+       memset(bind_str, 0, sizeof(bind_str));
+
        if (!bind_sock) {
                char *p, port[16];
                const void *src;
@@ -1387,9 +1389,9 @@ static int fio_init_server_connection(void)
                if (p)
                        strcat(p, port);
                else
-                       strcpy(bind_str, port);
+                       strncpy(bind_str, port, sizeof(bind_str) - 1);
        } else
-               strcpy(bind_str, bind_sock);
+               strncpy(bind_str, bind_sock, sizeof(bind_str) - 1);
 
        log_info("fio: server listening on %s\n", bind_str);