mirror of
https://github.com/torvalds/linux.git
synced 2026-06-09 07:03:37 +02:00
irda: Fix heap memory corruption in iriap.c
commit 37f9fc452d 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: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
9d74ebe51d
commit
80aaaa5f71
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user