]> git.ipfire.org Git - thirdparty/qemu.git/commit
i8254: fix out-of-bounds memory access in pit_ioport_read()
authorPetr Matousek <pmatouse@redhat.com>
Wed, 17 Jun 2015 10:46:11 +0000 (12:46 +0200)
committerMichael Roth <mdroth@linux.vnet.ibm.com>
Wed, 29 Jul 2015 23:40:21 +0000 (18:40 -0500)
commit49ef542e41526218fa28bf8762f95387a1cc4ccf
treecffff397a679d54fcd5445a0f72ec639a6299a32
parentc270245a53d6706131307673cb082826719228d1
i8254: fix out-of-bounds memory access in pit_ioport_read()

Due converting PIO to the new memory read/write api we no longer provide
separate I/O region lenghts for read and write operations. As a result,
reading from PIT Mode/Command register will end with accessing
pit->channels with invalid index.

Fix this by ignoring read from the Mode/Command register.

This is CVE-2015-3214.

Reported-by: Matt Tait <matttait@google.com>
Fixes: 0505bcdec8228d8de39ab1a02644e71999e7c052
Cc: qemu-stable@nongnu.org
Signed-off-by: Petr Matousek <pmatouse@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
(cherry picked from commit d4862a87e31a51de9eb260f25c9e99a75efe3235)
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
hw/timer/i8254.c