aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>2015-03-05 22:48:28 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-03-09 12:58:15 +0100
commitc0dc649e81bf65e8bb6b773cefc243ef53d02924 (patch)
treef789236c6d4bd694a294821dbba749d7fe15659f
parentce167a49ba706809ada8f80f600b24c12a04e510 (diff)
downloadffmpeg-c0dc649e81bf65e8bb6b773cefc243ef53d02924.tar.gz
webp: ensure that each transform is only used once
According to the WebP Lossless Bitstream Specification "each transform is allowed to be used only once". If a transform is more than once this can lead to memory corruption. Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit c089e720c1b753790c746a13053636d7facf6bf0) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavcodec/webp.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/libavcodec/webp.c b/libavcodec/webp.c
index f14213ffa8..0355cb6eab 100644
--- a/libavcodec/webp.c
+++ b/libavcodec/webp.c
@@ -1078,7 +1078,7 @@ static int vp8_lossless_decode_frame(AVCodecContext *avctx, AVFrame *p,
unsigned int data_size, int is_alpha_chunk)
{
WebPContext *s = avctx->priv_data;
- int w, h, ret, i;
+ int w, h, ret, i, used;
if (!is_alpha_chunk) {
s->lossless = 1;
@@ -1128,8 +1128,16 @@ static int vp8_lossless_decode_frame(AVCodecContext *avctx, AVFrame *p,
/* parse transformations */
s->nb_transforms = 0;
s->reduced_width = 0;
+ used = 0;
while (get_bits1(&s->gb)) {
enum TransformType transform = get_bits(&s->gb, 2);
+ if (used & (1 << transform)) {
+ av_log(avctx, AV_LOG_ERROR, "Transform %d used more than once\n",
+ transform);
+ ret = AVERROR_INVALIDDATA;
+ goto free_and_return;
+ }
+ used |= (1 << transform);
s->transforms[s->nb_transforms++] = transform;
switch (transform) {
case PREDICTOR_TRANSFORM: