From: Peter Lieven Date: Tue, 24 May 2016 08:59:28 +0000 (+0200) Subject: block/iscsi: avoid potential overflow of acb->task->cdb X-Git-Tag: TizenStudio_2.0_p4.0~6^2~12^2~6^2~243^2~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a6b3167fa0e825aebb5a7cd8b437b6d41584a196;p=sdk%2Femulator%2Fqemu.git block/iscsi: avoid potential overflow of acb->task->cdb at least in the path via virtio-blk the maximum size is not restricted. Cc: qemu-stable@nongnu.org Signed-off-by: Peter Lieven Message-Id: <1464080368-29584-1-git-send-email-pl@kamp.de> Signed-off-by: Paolo Bonzini --- diff --git a/block/iscsi.c b/block/iscsi.c index 2ca8e72..e7d5f7b 100644 --- a/block/iscsi.c +++ b/block/iscsi.c @@ -833,6 +833,13 @@ static BlockAIOCB *iscsi_aio_ioctl(BlockDriverState *bs, return &acb->common; } + if (acb->ioh->cmd_len > SCSI_CDB_MAX_SIZE) { + error_report("iSCSI: ioctl error CDB exceeds max size (%d > %d)", + acb->ioh->cmd_len, SCSI_CDB_MAX_SIZE); + qemu_aio_unref(acb); + return NULL; + } + acb->task = malloc(sizeof(struct scsi_task)); if (acb->task == NULL) { error_report("iSCSI: Failed to allocate task for scsi command. %s",