Add checks for per-packet mode indexes and per-header mode mapping indexes.
12_vorbis_mode_indexes.patch by chrome maybe exploitable r19990 by michael Originally committed as revision 21726 to svn://svn.ffmpeg.org/ffmpeg/branches/0.5
This commit is contained in:
parent
b8ec4c49bd
commit
eb70d77e1e
1 changed files with 9 additions and 1 deletions
|
|
@ -798,7 +798,11 @@ static int vorbis_parse_setup_hdr_modes(vorbis_context *vc) {
|
|||
mode_setup->blockflag=get_bits1(gb);
|
||||
mode_setup->windowtype=get_bits(gb, 16); //FIXME check
|
||||
mode_setup->transformtype=get_bits(gb, 16); //FIXME check
|
||||
mode_setup->mapping=get_bits(gb, 8); //FIXME check
|
||||
mode_setup->mapping=get_bits(gb, 8);
|
||||
if (mode_setup->mapping>=vc->mapping_count) {
|
||||
av_log(vc->avccontext, AV_LOG_ERROR, "mode mapping value %d out of range. \n", mode_setup->mapping);
|
||||
return 1;
|
||||
}
|
||||
|
||||
AV_DEBUG(" %d mode: blockflag %d, windowtype %d, transformtype %d, mapping %d \n", i, mode_setup->blockflag, mode_setup->windowtype, mode_setup->transformtype, mode_setup->mapping);
|
||||
}
|
||||
|
|
@ -1458,6 +1462,10 @@ static int vorbis_parse_audio_packet(vorbis_context *vc) {
|
|||
} else {
|
||||
mode_number=get_bits(gb, ilog(vc->mode_count-1));
|
||||
}
|
||||
if (mode_number>=vc->mode_count) {
|
||||
av_log(vc->avccontext, AV_LOG_ERROR, "mode number %d out of range.\n", mode_number);
|
||||
return -1;
|
||||
}
|
||||
vc->mode_number=mode_number;
|
||||
mapping=&vc->mappings[vc->modes[mode_number].mapping];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue