dcavalca / rpms / qemu

Forked from rpms/qemu a year ago
Clone

Blame 0016-tsc210x-fix-buffer-overrun-on-invalid-state-load.patch

70114f
From 984fcc9ad2abc4429422c045d68e17f1eb1fa4b2 Mon Sep 17 00:00:00 2001
70114f
From: "Michael S. Tsirkin" <mst@redhat.com>
70114f
Date: Thu, 3 Apr 2014 19:52:09 +0300
70114f
Subject: [PATCH] tsc210x: fix buffer overrun on invalid state load
70114f
MIME-Version: 1.0
70114f
Content-Type: text/plain; charset=UTF-8
70114f
Content-Transfer-Encoding: 8bit
70114f
70114f
CVE-2013-4539
70114f
70114f
s->precision, nextprecision, function and nextfunction
70114f
come from wire and are used
70114f
as idx into resolution[] in TSC_CUT_RESOLUTION.
70114f
70114f
Validate after load to avoid buffer overrun.
70114f
70114f
Cc: Andreas Färber <afaerber@suse.de>
70114f
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
70114f
Signed-off-by: Juan Quintela <quintela@redhat.com>
70114f
(cherry picked from commit 5193be3be35f29a35bc465036cd64ad60d43385f)
70114f
---
70114f
 hw/input/tsc210x.c | 12 ++++++++++++
70114f
 1 file changed, 12 insertions(+)
70114f
70114f
diff --git a/hw/input/tsc210x.c b/hw/input/tsc210x.c
70114f
index 485c9e5..aa5b688 100644
70114f
--- a/hw/input/tsc210x.c
70114f
+++ b/hw/input/tsc210x.c
70114f
@@ -1070,9 +1070,21 @@ static int tsc210x_load(QEMUFile *f, void *opaque, int version_id)
70114f
     s->enabled = qemu_get_byte(f);
70114f
     s->host_mode = qemu_get_byte(f);
70114f
     s->function = qemu_get_byte(f);
70114f
+    if (s->function < 0 || s->function >= ARRAY_SIZE(mode_regs)) {
70114f
+        return -EINVAL;
70114f
+    }
70114f
     s->nextfunction = qemu_get_byte(f);
70114f
+    if (s->nextfunction < 0 || s->nextfunction >= ARRAY_SIZE(mode_regs)) {
70114f
+        return -EINVAL;
70114f
+    }
70114f
     s->precision = qemu_get_byte(f);
70114f
+    if (s->precision < 0 || s->precision >= ARRAY_SIZE(resolution)) {
70114f
+        return -EINVAL;
70114f
+    }
70114f
     s->nextprecision = qemu_get_byte(f);
70114f
+    if (s->nextprecision < 0 || s->nextprecision >= ARRAY_SIZE(resolution)) {
70114f
+        return -EINVAL;
70114f
+    }
70114f
     s->filter = qemu_get_byte(f);
70114f
     s->pin_func = qemu_get_byte(f);
70114f
     s->ref = qemu_get_byte(f);