aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-01-15 13:29:38 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-01-15 17:23:55 +0100
commit232c2ed4a4a546ee28b84dc1673660fbfeb08d2f (patch)
treee4f3de466eb76378082871069c1b021fb228884b
parentf0b6705e1a76b5eca07fe4b365c3d138860b05a2 (diff)
downloadffmpeg-232c2ed4a4a546ee28b84dc1673660fbfeb08d2f.tar.gz
avformat/hls: More strict url checks
No case is known where these are needed Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 6ba42b6482c725a59eb468391544dc0c75b8c6f0) Conflicts: libavformat/hls.c Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> Conflicts: libavformat/hls.c
-rw-r--r--libavformat/hls.c26
1 files changed, 18 insertions, 8 deletions
diff --git a/libavformat/hls.c b/libavformat/hls.c
index 96bcb365ed..6c3424b43c 100644
--- a/libavformat/hls.c
+++ b/libavformat/hls.c
@@ -911,6 +911,19 @@ static void update_options(char **dest, const char *name, void *src)
av_freep(dest);
}
+static int check_url(const char *url) {
+ const char *proto_name = avio_find_protocol_name(url);
+ if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL))
+ return AVERROR_INVALIDDATA;
+
+ if (!strncmp(proto_name, url, strlen(proto_name)) && url[strlen(proto_name)] == ':')
+ return 0;
+ else if (strcmp(proto_name, "file") || !strcmp(url, "file,"))
+ return AVERROR_INVALIDDATA;
+
+ return 0;
+}
+
static int open_input(HLSContext *c, struct playlist *pls)
{
AVDictionary *opts = NULL;
@@ -938,11 +951,9 @@ static int open_input(HLSContext *c, struct playlist *pls)
seg->url, seg->url_offset, pls->index);
if (seg->key_type == KEY_NONE) {
- const char *proto_name = avio_find_protocol_name(seg->url);
- if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL)) {
- ret = AVERROR_INVALIDDATA;
+ ret = check_url(seg->url);
+ if (ret < 0)
goto cleanup;
- }
ret = ffurl_open(&pls->input, seg->url, AVIO_FLAG_READ,
&pls->parent->interrupt_callback, &opts);
@@ -951,11 +962,10 @@ static int open_input(HLSContext *c, struct playlist *pls)
char iv[33], key[33], url[MAX_URL_SIZE];
if (strcmp(seg->key, pls->key_url)) {
URLContext *uc;
- const char *proto_name = avio_find_protocol_name(seg->key);
- if (!av_strstart(proto_name, "http", NULL) && !av_strstart(proto_name, "file", NULL)) {
- ret = AVERROR_INVALIDDATA;
+ ret = check_url(seg->key);
+ if (ret < 0)
goto cleanup;
- }
+
if (ffurl_open(&uc, seg->key, AVIO_FLAG_READ,
&pls->parent->interrupt_callback, &opts2) == 0) {
if (ffurl_read_complete(uc, pls->key, sizeof(pls->key))