All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-trivial] [PATCH] vt82c686: avoid out-of-bounds read
@ 2014-12-10  9:17 ` Paolo Bonzini
  0 siblings, 0 replies; 14+ messages in thread
From: Paolo Bonzini @ 2014-12-10  9:17 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, zhang.zhanghailiang, peter.huangpeng

superio_ioport_readb can read the 256th element of the array.
Coverity reports an out-of-bounds write in superio_ioport_writeb,
but it does not show the corresponding out-of-bounds read
because it cannot prove that it can happen.  Fix the root
cause of the problem (zhanghailang's patch instead fixes
the logic in superio_ioport_writeb).

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 hw/isa/vt82c686.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/isa/vt82c686.c b/hw/isa/vt82c686.c
index e0c235c..a43e26d 100644
--- a/hw/isa/vt82c686.c
+++ b/hw/isa/vt82c686.c
@@ -36,7 +36,7 @@
 
 typedef struct SuperIOConfig
 {
-    uint8_t config[0xff];
+    uint8_t config[0x100];
     uint8_t index;
     uint8_t data;
 } SuperIOConfig;
-- 
1.8.3.1



^ permalink raw reply related	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-01-12  8:49 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-10  9:17 [Qemu-trivial] [PATCH] vt82c686: avoid out-of-bounds read Paolo Bonzini
2014-12-10  9:17 ` [Qemu-devel] " Paolo Bonzini
2014-12-10  9:31 ` [Qemu-trivial] " zhanghailiang
2014-12-10  9:31   ` [Qemu-devel] " zhanghailiang
2014-12-10  9:52   ` [Qemu-trivial] " Paolo Bonzini
2014-12-10  9:52     ` [Qemu-devel] " Paolo Bonzini
2014-12-11  8:35 ` [Qemu-trivial] " zhanghailiang
2014-12-11  8:35   ` [Qemu-devel] " zhanghailiang
2014-12-11 17:55 ` [Qemu-trivial] " Michael Tokarev
2014-12-11 17:55   ` [Qemu-devel] " Michael Tokarev
2014-12-11 19:05   ` Paolo Bonzini
2014-12-11 19:05     ` [Qemu-devel] " Paolo Bonzini
2015-01-12  8:49 ` Michael Tokarev
2015-01-12  8:49   ` [Qemu-devel] " Michael Tokarev

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.