]> git.sesse.net Git - ffmpeg/commit
avformat/matroskadec: Sanitize SeekHead entries
authorAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 30 Aug 2019 11:20:26 +0000 (13:20 +0200)
committerAndreas Rheinhardt <andreas.rheinhardt@gmail.com>
Fri, 8 May 2020 11:37:40 +0000 (13:37 +0200)
commit7c243eece3427bc5a6d54657d488d5c0c2985a8e
tree29c58d853ec2e295e39b8ff4e1fa359b9bf5bd99
parente38adc197ed1ef3423329035a29292b17d319a79
avformat/matroskadec: Sanitize SeekHead entries

A Seek element in a Matroska SeekHead should contain a SeekID and a
SeekPosition element and upon reading, they should be sanitized:

Given that IDs are restricted to 32 bit, longer SeekIDs should be treated
as invalid. Instead currently the lower 32 bits have been used.

For SeekPosition, no checks were performed for the element to be
present and if present, whether it was excessively large (i.e. the
absolute file position described by it exceeding INT64_MAX). The
SeekPosition element had a default value of -1 which means that a check
seems to have been intended; but it was not implemented. This commit adds
a check for overflow to the calculation of the absolute file position of
the referenced level 1 elements.
Using -1 (i.e. UINT64_MAX) as default value for SeekPosition implies that
a Seek element without SeekPosition will run afoul of this check.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
libavformat/matroskadec.c