[FFmpeg-devel] [PATCH 1/2] avformat/iff: Check data_size
Michael Niedermayer
michael at niedermayer.cc
Fri Dec 11 21:53:02 EET 2020
On Fri, Dec 11, 2020 at 02:56:10PM +0100, Anton Khirnov wrote:
> Quoting Michael Niedermayer (2020-12-11 11:00:01)
> > Fixes: infinite loop
> > Fixes: 27834/clusterfuzz-testcase-minimized-ffmpeg_dem_IFF_fuzzer-5694930919620608
> >
> > 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/iff.c | 3 +++
> > 1 file changed, 3 insertions(+)
> >
> > diff --git a/libavformat/iff.c b/libavformat/iff.c
> > index f017684620..0f570e4b26 100644
> > --- a/libavformat/iff.c
> > +++ b/libavformat/iff.c
> > @@ -402,6 +402,9 @@ static int read_dst_frame(AVFormatContext *s, AVPacket *pkt)
> > break;
> > }
> >
> > + if (data_size >= INT64_MAX)
> > + return AVERROR_INVALIDDATA;
>
> Wouldn't the existing check right above the switch be a more appropriate
> place for this?
yes, ill merge it in there and will apply
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Take away the freedom of one citizen and you will be jailed, take away
the freedom of all citizens and you will be congratulated by your peers
in Parliament.
-------------- 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/20201211/fbc3b86d/attachment.sig>
More information about the ffmpeg-devel
mailing list