]> Git Repo - qemu.git/commitdiff
scsi-disk: fix buffer overflow
authorGerd Hoffmann <[email protected]>
Wed, 10 Mar 2010 16:47:17 +0000 (17:47 +0100)
committerAnthony Liguori <[email protected]>
Wed, 17 Mar 2010 16:17:05 +0000 (11:17 -0500)
In case s->version is shorter than 4 bytes we overflow the memcpy src
buffer.  Fix it by clearing the target buffer, then copy only the
amount of bytes we actually have.

Signed-off-by: Gerd Hoffmann <[email protected]>
Signed-off-by: Anthony Liguori <[email protected]>
hw/scsi-disk.c

index 1fbd4ee1bb5d40591a43609f5622ca283e796ee8..77cb1daec83139ba7bb452deb1a434c01b79a873 100644 (file)
@@ -460,7 +460,9 @@ static int scsi_disk_emulate_inquiry(SCSIRequest *req, uint8_t *outbuf)
         memcpy(&outbuf[16], "QEMU HARDDISK   ", 16);
     }
     memcpy(&outbuf[8], "QEMU    ", 8);
-    memcpy(&outbuf[32], s->version ? s->version : QEMU_VERSION, 4);
+    memset(&outbuf[32], 0, 4);
+    memcpy(&outbuf[32], s->version ? s->version : QEMU_VERSION,
+           MIN(4, strlen(s->version ? s->version : QEMU_VERSION)));
     /*
      * We claim conformance to SPC-3, which is required for guests
      * to ask for modern features like READ CAPACITY(16) or the
This page took 0.027787 seconds and 4 git commands to generate.