summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Taymans <wtaymans@redhat.com>2014-11-20 12:40:28 +0100
committerWim Taymans <wtaymans@redhat.com>2014-11-20 12:44:26 +0100
commit9d2902d978905acf3ecc88dd331b20072dc9eab0 (patch)
tree5b02f9fc22b433f666ecbc0fd3ef8e9838ac7598
parent488d0b93cd52ac9a39e49e212701d2bbaa85fc0a (diff)
rtpgstdepay: avoid buffer overread.
Check that a caps event string is 0 terminated and the event string is terminated with a ; to avoid buffer overreads. Fixes https://bugzilla.gnome.org/show_bug.cgi?id=737591
-rw-r--r--gst/rtp/gstrtpgstdepay.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/gst/rtp/gstrtpgstdepay.c b/gst/rtp/gstrtpgstdepay.c
index 5803f982c..a34088025 100644
--- a/gst/rtp/gstrtpgstdepay.c
+++ b/gst/rtp/gstrtpgstdepay.c
@@ -232,6 +232,9 @@ read_caps (GstRtpGSTDepay * rtpgstdepay, GstBuffer * buf, guint * skip)
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
goto too_small;
+ if (length == 0 || map.data[offset + length - 1] != '\0')
+ goto invalid_buffer;
+
GST_DEBUG_OBJECT (rtpgstdepay, "parsing caps %s", &map.data[offset]);
/* parse and store in cache */
@@ -249,6 +252,13 @@ too_small:
gst_buffer_unmap (buf, &map);
return NULL;
}
+invalid_buffer:
+ {
+ GST_ELEMENT_WARNING (rtpgstdepay, STREAM, DECODE,
+ ("caps string not 0-terminated."), (NULL));
+ gst_buffer_unmap (buf, &map);
+ return NULL;
+ }
}
static GstEvent *
@@ -269,6 +279,9 @@ read_event (GstRtpGSTDepay * rtpgstdepay, guint type,
if (!read_length (rtpgstdepay, map.data, map.size, &length, &offset))
goto too_small;
+ if (length == 0 || map.data[offset + length - 1] != ';')
+ goto invalid_buffer;
+
GST_DEBUG_OBJECT (rtpgstdepay, "parsing event %s", &map.data[offset]);
/* parse */
@@ -307,6 +320,13 @@ too_small:
gst_buffer_unmap (buf, &map);
return NULL;
}
+invalid_buffer:
+ {
+ GST_ELEMENT_WARNING (rtpgstdepay, STREAM, DECODE,
+ ("event string not 0-terminated."), (NULL));
+ gst_buffer_unmap (buf, &map);
+ return NULL;
+ }
parse_failed:
{
GST_WARNING_OBJECT (rtpgstdepay, "could not parse event");