qemu-stable
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-stable] [PATCH v5 17/24] ssi-sd: fix buffer overrun on invalid sta


From: Michael S. Tsirkin
Subject: [Qemu-stable] [PATCH v5 17/24] ssi-sd: fix buffer overrun on invalid state load
Date: Thu, 3 Apr 2014 19:52:01 +0300

CVE-2013-4537

s->arglen is taken from wire and used as idx
in ssi_sd_transfer().

Validate it before access.

Signed-off-by: Michael S. Tsirkin <address@hidden>
---
 hw/sd/ssi-sd.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/hw/sd/ssi-sd.c b/hw/sd/ssi-sd.c
index 3273c8a..2fa2b2b 100644
--- a/hw/sd/ssi-sd.c
+++ b/hw/sd/ssi-sd.c
@@ -230,6 +230,14 @@ static int ssi_sd_load(QEMUFile *f, void *opaque, int 
version_id)
     for (i = 0; i < 5; i++)
         s->response[i] = qemu_get_be32(f);
     s->arglen = qemu_get_be32(f);
+    if (s->mode == SSI_SD_CMDARG &&
+        (s->arglen < 0 || s->arglen > ARRAY_SIZE(s->cmdarg))) {
+        return -EINVAL;
+    }
+    if (s->mode == SSI_SD_RESPONSE &&
+        (s->response_pos < 0 || s->response_pos > ARRAY_SIZE(s->response))) {
+        return -EINVAL;
+    }
     s->response_pos = qemu_get_be32(f);
     s->stopping = qemu_get_be32(f);
 
-- 
MST




reply via email to

[Prev in Thread] Current Thread [Next in Thread]