bink: Check for various out of bound writes
Signed-off-by: Janne Grunau <janne-libav@jannau.net> (cherry picked from commit a00676e48e49a3d794d6d2063ceca539e945a4a4) Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
c98d7882d8
commit
9c78fe9360
@ -343,14 +343,14 @@ static int read_motion_values(AVCodecContext *avctx, GetBitContext *gb, Bundle *
|
||||
memset(b->cur_dec, v, t);
|
||||
b->cur_dec += t;
|
||||
} else {
|
||||
do {
|
||||
while (b->cur_dec < dec_end) {
|
||||
v = GET_HUFF(gb, b->tree);
|
||||
if (v) {
|
||||
sign = -get_bits1(gb);
|
||||
v = (v ^ sign) - sign;
|
||||
}
|
||||
*b->cur_dec++ = v;
|
||||
} while (b->cur_dec < dec_end);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -374,7 +374,7 @@ static int read_block_types(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
|
||||
memset(b->cur_dec, v, t);
|
||||
b->cur_dec += t;
|
||||
} else {
|
||||
do {
|
||||
while (b->cur_dec < dec_end) {
|
||||
v = GET_HUFF(gb, b->tree);
|
||||
if (v < 12) {
|
||||
last = v;
|
||||
@ -382,10 +382,12 @@ static int read_block_types(AVCodecContext *avctx, GetBitContext *gb, Bundle *b)
|
||||
} else {
|
||||
int run = bink_rlelens[v - 12];
|
||||
|
||||
if (dec_end - b->cur_dec < run)
|
||||
return -1;
|
||||
memset(b->cur_dec, last, run);
|
||||
b->cur_dec += run;
|
||||
}
|
||||
} while (b->cur_dec < dec_end);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
@ -455,7 +457,8 @@ static int read_dcs(AVCodecContext *avctx, GetBitContext *gb, Bundle *b,
|
||||
int start_bits, int has_sign)
|
||||
{
|
||||
int i, j, len, len2, bsize, sign, v, v2;
|
||||
int16_t *dst = (int16_t*)b->cur_dec;
|
||||
int16_t *dst = (int16_t*)b->cur_dec;
|
||||
int16_t *dst_end = (int16_t*)b->data_end;
|
||||
|
||||
CHECK_READ_VAL(gb, b, len);
|
||||
v = get_bits(gb, start_bits - has_sign);
|
||||
@ -463,10 +466,14 @@ static int read_dcs(AVCodecContext *avctx, GetBitContext *gb, Bundle *b,
|
||||
sign = -get_bits1(gb);
|
||||
v = (v ^ sign) - sign;
|
||||
}
|
||||
if (dst_end - dst < 1)
|
||||
return -1;
|
||||
*dst++ = v;
|
||||
len--;
|
||||
for (i = 0; i < len; i += 8) {
|
||||
len2 = FFMIN(len - i, 8);
|
||||
if (dst_end - dst < len2)
|
||||
return -1;
|
||||
bsize = get_bits(gb, 4);
|
||||
if (bsize) {
|
||||
for (j = 0; j < len2; j++) {
|
||||
@ -534,6 +541,8 @@ static int binkb_read_bundle(BinkContext *c, GetBitContext *gb, int bundle_num)
|
||||
int i, len;
|
||||
|
||||
CHECK_READ_VAL(gb, b, len);
|
||||
if (b->data_end - b->cur_dec < len * (1 + (bits > 8)))
|
||||
return -1;
|
||||
if (bits <= 8) {
|
||||
if (!issigned) {
|
||||
for (i = 0; i < len; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user