]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
irda: Fix heap memory corruption in iriap.c
authorSamuel Ortiz <samuel@sortiz.org>
Tue, 5 Oct 2010 23:03:12 +0000 (01:03 +0200)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Sun, 17 Apr 2011 20:15:36 +0000 (16:15 -0400)
commit 37f9fc452d138dfc4da2ee1ce5ae85094efc3606 upstream.

While parsing the GetValuebyClass command frame, we could potentially write
passed the skb->data pointer.

Reported-by: Ilja Van Sprundel <ivansprundel@ioactive.com>
Signed-off-by: Samuel Ortiz <samuel@sortiz.org>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
net/irda/iriap.c

index 79a1e5a23e10e6e0aa1b14837bdfbe29cf7d7000..b6fd6d19240a38a656934c936c67a1cfe589a380 100644 (file)
@@ -502,7 +502,8 @@ static void iriap_getvaluebyclass_confirm(struct iriap_cb *self,
                IRDA_DEBUG(4, "%s(), strlen=%d\n", __func__, value_len);
 
                /* Make sure the string is null-terminated */
-               fp[n+value_len] = 0x00;
+               if (n + value_len < skb->len)
+                       fp[n + value_len] = 0x00;
                IRDA_DEBUG(4, "Got string %s\n", fp+n);
 
                /* Will truncate to IAS_MAX_STRING bytes */