summaryrefslogtreecommitdiff
path: root/libavformat
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2017-09-02 23:20:26 +0300
committerMartin Storsjö <martin@martin.st>2017-09-04 09:42:51 +0300
commit585dc1aecef0371ad6f16cb3750ae2a6da9cf00a (patch)
tree2a132f6c495be275068b6201f41dbbbbdb722395 /libavformat
parente12f1cd616573795681ce939113ac6cdad4c1f2b (diff)
downloadffmpeg-585dc1aecef0371ad6f16cb3750ae2a6da9cf00a.tar.gz
flvdec: Check the avio_seek return value after reading a metadata packet
If the metadata packet is corrupted, flv_read_metabody can accidentally read past the start of the next packet. If the start of the next packet had been flushed out of the IO buffer, we would be unable to seek to the right position (on a nonseekable stream). Prefer to clearly error out instead of silently trying to read from a desynced stream which will only be interpreted as garbage. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat')
-rw-r--r--libavformat/flvdec.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c
index 1b29740f41..81a71d39f4 100644
--- a/libavformat/flvdec.c
+++ b/libavformat/flvdec.c
@@ -801,7 +801,13 @@ static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
type, size, flags);
skip:
- avio_seek(s->pb, next, SEEK_SET);
+ if (avio_seek(s->pb, next, SEEK_SET) != next) {
+ // This can happen if flv_read_metabody above read past
+ // next, on a non-seekable input, and the preceding data has
+ // been flushed out from the IO buffer.
+ av_log(s, AV_LOG_ERROR, "Unable to seek to the next packet\n");
+ return AVERROR_INVALIDDATA;
+ }
continue;
}