[FFmpeg-devel] [PATCH 2/4] avformat/wtvdec: Check dir_length

Michael Niedermayer michael at niedermayer.cc
Wed Oct 21 11:03:06 EEST 2020


On Tue, Oct 20, 2020 at 07:54:23AM +1100, Peter Ross wrote:
> On Mon, Oct 19, 2020 at 05:59:53PM +0200, Michael Niedermayer wrote:
> > Fixes: Infinite loop
> > Fixes: 26445/clusterfuzz-testcase-minimized-ffmpeg_dem_WTV_fuzzer-5125558331244544
> > 
> > Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
> > Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> > ---
> >  libavformat/wtvdec.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> > 
> > diff --git a/libavformat/wtvdec.c b/libavformat/wtvdec.c
> > index 83f510b92f..77908e6392 100644
> > --- a/libavformat/wtvdec.c
> > +++ b/libavformat/wtvdec.c
> > @@ -273,6 +273,11 @@ static AVIOContext * wtvfile_open2(AVFormatContext *s, const uint8_t *buf, int b
> >                     "bad filename length, remaining directory entries ignored\n");
> >              break;
> >          }
> > +        if (dir_length == 0) {
> > +            av_log(s, AV_LOG_ERROR,
> > +                   "bad dir length, remaining directory entries ignored\n");
> > +            break;
> > +        }
> >          if (48 + (int64_t)name_size > buf_end - buf) {
> >              av_log(s, AV_LOG_ERROR, "filename exceeds buffer size; remaining directory entries ignored\n");
> >              break;
> > -- 
> 
> looks good

will apply

thx

[...]

-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

Freedom in capitalist society always remains about the same as it was in
ancient Greek republics: Freedom for slave owners. -- Vladimir Lenin
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 195 bytes
Desc: not available
URL: <https://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20201021/d2157eb5/attachment.sig>


More information about the ffmpeg-devel mailing list