block/ssh: fix possible segmentation fault when .desc is not null-terminated
authorMurilo Opsfelder Araujo <muriloo@linux.vnet.ibm.com>
Fri, 5 Jan 2018 14:44:40 +0000 (12:44 -0200)
committerJeff Cody <jcody@redhat.com>
Thu, 1 Feb 2018 03:37:00 +0000 (22:37 -0500)
This patch prevents a possible segmentation fault when .desc members are checked
against NULL.

The ssh_runtime_opts was added by commit
8a6a80896d6af03b8ee0c17cdf37219eca2588a7 ("block/ssh: Use QemuOpts for runtime
options").

This fix was inspired by
http://lists.nongnu.org/archive/html/qemu-devel/2018-01/msg00883.html.

Fixes: 8a6a80896d6af03b8ee0c17cdf37219eca2588a7 ("block/ssh: Use QemuOpts for runtime options")
Cc: Max Reitz <mreitz@redhat.com>
Cc: Eric Blake <eblake@redhat.com>
Signed-off-by: Murilo Opsfelder Araujo <muriloo@linux.vnet.ibm.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Jeff Cody <jcody@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
block/ssh.c

index b049a16eb9bcb3f322ce4c10c816d0875cdad8ae..8890a0c4ba97d317d362c11f6b71146b7a17dba3 100644 (file)
@@ -556,6 +556,7 @@ static QemuOptsList ssh_runtime_opts = {
             .type = QEMU_OPT_STRING,
             .help = "Defines how and what to check the host key against",
         },
+        { /* end of list */ }
     },
 };