Skip to content

Commit

Permalink
avcodec/cbs_h266: more restrictive check on pps_tile_idx_delta_val
Browse files Browse the repository at this point in the history
Fixes: out of array access
Fixes: 62603/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5837632490569728

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
nuomi2021 authored and michaelni committed Dec 14, 2023
1 parent a1384b4 commit ce0c178
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions libavcodec/cbs_h266_syntax_template.c
Expand Up @@ -2043,9 +2043,12 @@ static int FUNC(pps) (CodedBitstreamContext *ctx, RWContext *rw,
}
if (i < current->pps_num_slices_in_pic_minus1) {
if (current->pps_tile_idx_delta_present_flag) {
// Two conditions must be met:
// 1. −NumTilesInPic + 1 <= pps_tile_idx_delta_val[i] <= NumTilesInPic − 1
// 2. 0 <= tile_idx + pps_tile_idx_delta_val[i] <= NumTilesInPic − 1
// Combining these conditions yields: -tile_idx <= pps_tile_idx_delta_val[i] <= NumTilesInPic - 1 - tile_idx
ses(pps_tile_idx_delta_val[i],
-current->num_tiles_in_pic + 1,
current->num_tiles_in_pic - 1, 1, i);
-tile_idx, current->num_tiles_in_pic - 1 - tile_idx, 1, i);
if (current->pps_tile_idx_delta_val[i] == 0) {
av_log(ctx->log_ctx, AV_LOG_ERROR,
"pps_tile_idx_delta_val[i] shall not be equal to 0.\n");
Expand Down

0 comments on commit ce0c178

Please sign in to comment.