]> Git Repo - qemu.git/commitdiff
macio: fix overflow in lba to offset conversion for ATAPI devices
authorMark Cave-Ayland <[email protected]>
Mon, 11 Jan 2016 19:10:42 +0000 (14:10 -0500)
committerJohn Snow <[email protected]>
Mon, 11 Jan 2016 19:10:42 +0000 (14:10 -0500)
As the IDEState lba field is an int32_t, make sure we cast to int64_t before
shifting to calculate the offset. Otherwise we end up with an overflow when
trying to access sectors beyond 2GB as can occur when using DVD images.

[Maintainer edit: fixed extraneous parentheses. --js]

Signed-off-by: Mark Cave-Ayland <[email protected]>
Reviewed-by: John Snow <[email protected]>
Message-id: 1451928613[email protected]
Signed-off-by: John Snow <[email protected]>
hw/ide/macio.c

index 97712619cdc07a509b3dd694bb6b362f169b21e8..d4031b65e489c7dc31678e8ecf55b780f1125de0 100644 (file)
@@ -280,7 +280,7 @@ static void pmac_ide_atapi_transfer_cb(void *opaque, int ret)
     }
 
     /* Calculate current offset */
-    offset = (int64_t)(s->lba << 11) + s->io_buffer_index;
+    offset = ((int64_t)s->lba << 11) + s->io_buffer_index;
 
     pmac_dma_read(s->blk, offset, io->len, pmac_ide_atapi_transfer_cb, io);
     return;
This page took 0.026582 seconds and 4 git commands to generate.