]> git.sesse.net Git - ffmpeg/blob - libavformat/http.c
proresenc_kostya: properly account for alpha
[ffmpeg] / libavformat / http.c
1 /*
2  * HTTP protocol for ffmpeg client
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "config.h"
23
24 #if CONFIG_ZLIB
25 #include <zlib.h>
26 #endif /* CONFIG_ZLIB */
27
28 #include "libavutil/avstring.h"
29 #include "libavutil/opt.h"
30
31 #include "avformat.h"
32 #include "http.h"
33 #include "httpauth.h"
34 #include "internal.h"
35 #include "network.h"
36 #include "os_support.h"
37 #include "url.h"
38
39 /* XXX: POST protocol is not completely implemented because ffmpeg uses
40  * only a subset of it. */
41
42 /* The IO buffer size is unrelated to the max URL size in itself, but needs
43  * to be large enough to fit the full request headers (including long
44  * path names). */
45 #define BUFFER_SIZE   MAX_URL_SIZE
46 #define MAX_REDIRECTS 8
47
48 typedef struct {
49     const AVClass *class;
50     URLContext *hd;
51     unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
52     int line_count;
53     int http_code;
54     /* Used if "Transfer-Encoding: chunked" otherwise -1. */
55     int64_t chunksize;
56     int64_t off, end_off, filesize;
57     char *location;
58     HTTPAuthState auth_state;
59     HTTPAuthState proxy_auth_state;
60     char *headers;
61     char *mime_type;
62     char *user_agent;
63     char *content_type;
64     /* Set if the server correctly handles Connection: close and will close
65      * the connection after feeding us the content. */
66     int willclose;
67     int seekable;           /**< Control seekability, 0 = disable, 1 = enable, -1 = probe. */
68     int chunked_post;
69     /* A flag which indicates if the end of chunked encoding has been sent. */
70     int end_chunked_post;
71     /* A flag which indicates we have finished to read POST reply. */
72     int end_header;
73     /* A flag which indicates if we use persistent connections. */
74     int multiple_requests;
75     uint8_t *post_data;
76     int post_datalen;
77     int is_akamai;
78     int is_mediagateway;
79     char *cookies;          ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
80     int icy;
81     /* how much data was read since the last ICY metadata packet */
82     int icy_data_read;
83     /* after how many bytes of read data a new metadata packet will be found */
84     int icy_metaint;
85     char *icy_metadata_headers;
86     char *icy_metadata_packet;
87     AVDictionary *metadata;
88 #if CONFIG_ZLIB
89     int compressed;
90     z_stream inflate_stream;
91     uint8_t *inflate_buffer;
92 #endif /* CONFIG_ZLIB */
93     AVDictionary *chained_options;
94     int send_expect_100;
95     char *method;
96 } HTTPContext;
97
98 #define OFFSET(x) offsetof(HTTPContext, x)
99 #define D AV_OPT_FLAG_DECODING_PARAM
100 #define E AV_OPT_FLAG_ENCODING_PARAM
101 #define DEFAULT_USER_AGENT "Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION)
102
103 static const AVOption options[] = {
104     { "seekable", "control seekability of connection", OFFSET(seekable), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, D },
105     { "chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, E },
106     { "headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D | E },
107     { "content_type", "set a specific content type for the POST messages", OFFSET(content_type), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D | E },
108     { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
109     { "user-agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
110     { "multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, D | E },
111     { "post_data", "set custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D | E },
112     { "mime_type", "export the MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
113     { "cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D },
114     { "icy", "request ICY metadata", OFFSET(icy), AV_OPT_TYPE_INT, { .i64 = 1 }, 0, 1, D },
115     { "icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_EXPORT },
116     { "icy_metadata_packet", "return current ICY metadata packet", OFFSET(icy_metadata_packet), AV_OPT_TYPE_STRING, { 0 }, 0, 0, AV_OPT_FLAG_EXPORT },
117     { "metadata", "metadata read from the bitstream", OFFSET(metadata), AV_OPT_TYPE_DICT, {0}, 0, 0, AV_OPT_FLAG_EXPORT },
118     { "auth_type", "HTTP authentication type", OFFSET(auth_state.auth_type), AV_OPT_TYPE_INT, { .i64 = HTTP_AUTH_NONE }, HTTP_AUTH_NONE, HTTP_AUTH_BASIC, D | E, "auth_type"},
119     { "none", "No auth method set, autodetect", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_NONE }, 0, 0, D | E, "auth_type"},
120     { "basic", "HTTP basic authentication", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_BASIC }, 0, 0, D | E, "auth_type"},
121     { "send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, E },
122     { "location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D | E },
123     { "offset", "initial byte offset", OFFSET(off), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, D },
124     { "end_offset", "try to limit the request to bytes preceding this offset", OFFSET(end_off), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, D },
125     { "method", "Override the HTTP method", OFFSET(method), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
126     { NULL }
127 };
128
129 static int http_connect(URLContext *h, const char *path, const char *local_path,
130                         const char *hoststr, const char *auth,
131                         const char *proxyauth, int *new_location);
132
133 void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
134 {
135     memcpy(&((HTTPContext *)dest->priv_data)->auth_state,
136            &((HTTPContext *)src->priv_data)->auth_state,
137            sizeof(HTTPAuthState));
138     memcpy(&((HTTPContext *)dest->priv_data)->proxy_auth_state,
139            &((HTTPContext *)src->priv_data)->proxy_auth_state,
140            sizeof(HTTPAuthState));
141 }
142
143 static int http_open_cnx_internal(URLContext *h, AVDictionary **options)
144 {
145     const char *path, *proxy_path, *lower_proto = "tcp", *local_path;
146     char hostname[1024], hoststr[1024], proto[10];
147     char auth[1024], proxyauth[1024] = "";
148     char path1[MAX_URL_SIZE];
149     char buf[1024], urlbuf[MAX_URL_SIZE];
150     int port, use_proxy, err, location_changed = 0;
151     HTTPContext *s = h->priv_data;
152
153     av_url_split(proto, sizeof(proto), auth, sizeof(auth),
154                  hostname, sizeof(hostname), &port,
155                  path1, sizeof(path1), s->location);
156     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
157
158     proxy_path = getenv("http_proxy");
159     use_proxy  = !ff_http_match_no_proxy(getenv("no_proxy"), hostname) &&
160                  proxy_path != NULL && av_strstart(proxy_path, "http://", NULL);
161
162     if (!strcmp(proto, "https")) {
163         lower_proto = "tls";
164         use_proxy   = 0;
165         if (port < 0)
166             port = 443;
167     }
168     if (port < 0)
169         port = 80;
170
171     if (path1[0] == '\0')
172         path = "/";
173     else
174         path = path1;
175     local_path = path;
176     if (use_proxy) {
177         /* Reassemble the request URL without auth string - we don't
178          * want to leak the auth to the proxy. */
179         ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
180                     path1);
181         path = urlbuf;
182         av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
183                      hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
184     }
185
186     ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
187
188     if (!s->hd) {
189         err = ffurl_open(&s->hd, buf, AVIO_FLAG_READ_WRITE,
190                          &h->interrupt_callback, options);
191         if (err < 0)
192             return err;
193     }
194
195     err = http_connect(h, path, local_path, hoststr,
196                        auth, proxyauth, &location_changed);
197     if (err < 0)
198         return err;
199
200     return location_changed;
201 }
202
203 /* return non zero if error */
204 static int http_open_cnx(URLContext *h, AVDictionary **options)
205 {
206     HTTPAuthType cur_auth_type, cur_proxy_auth_type;
207     HTTPContext *s = h->priv_data;
208     int location_changed, attempts = 0, redirects = 0;
209 redo:
210     cur_auth_type       = s->auth_state.auth_type;
211     cur_proxy_auth_type = s->auth_state.auth_type;
212
213     location_changed = http_open_cnx_internal(h, options);
214     if (location_changed < 0)
215         goto fail;
216
217     attempts++;
218     if (s->http_code == 401) {
219         if ((cur_auth_type == HTTP_AUTH_NONE || s->auth_state.stale) &&
220             s->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
221             ffurl_closep(&s->hd);
222             goto redo;
223         } else
224             goto fail;
225     }
226     if (s->http_code == 407) {
227         if ((cur_proxy_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
228             s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
229             ffurl_closep(&s->hd);
230             goto redo;
231         } else
232             goto fail;
233     }
234     if ((s->http_code == 301 || s->http_code == 302 ||
235          s->http_code == 303 || s->http_code == 307) &&
236         location_changed == 1) {
237         /* url moved, get next */
238         ffurl_closep(&s->hd);
239         if (redirects++ >= MAX_REDIRECTS)
240             return AVERROR(EIO);
241         /* Restart the authentication process with the new target, which
242          * might use a different auth mechanism. */
243         memset(&s->auth_state, 0, sizeof(s->auth_state));
244         attempts         = 0;
245         location_changed = 0;
246         goto redo;
247     }
248     return 0;
249
250 fail:
251     if (s->hd)
252         ffurl_closep(&s->hd);
253     return AVERROR(EIO);
254 }
255
256 int ff_http_do_new_request(URLContext *h, const char *uri)
257 {
258     HTTPContext *s = h->priv_data;
259     AVDictionary *options = NULL;
260     int ret;
261
262     s->off           = 0;
263     s->icy_data_read = 0;
264     av_free(s->location);
265     s->location = av_strdup(uri);
266     if (!s->location)
267         return AVERROR(ENOMEM);
268
269     av_dict_copy(&options, s->chained_options, 0);
270     ret = http_open_cnx(h, &options);
271     av_dict_free(&options);
272     return ret;
273 }
274
275 static int http_open(URLContext *h, const char *uri, int flags,
276                      AVDictionary **options)
277 {
278     HTTPContext *s = h->priv_data;
279     int ret;
280
281     if( s->seekable == 1 )
282         h->is_streamed = 0;
283     else
284         h->is_streamed = 1;
285
286     s->filesize = -1;
287     s->location = av_strdup(uri);
288     if (!s->location)
289         return AVERROR(ENOMEM);
290     if (options)
291         av_dict_copy(&s->chained_options, *options, 0);
292
293     if (s->headers) {
294         int len = strlen(s->headers);
295         if (len < 2 || strcmp("\r\n", s->headers + len - 2))
296             av_log(h, AV_LOG_WARNING,
297                    "No trailing CRLF found in HTTP header.\n");
298     }
299
300     ret = http_open_cnx(h, options);
301     if (ret < 0)
302         av_dict_free(&s->chained_options);
303     return ret;
304 }
305
306 static int http_getc(HTTPContext *s)
307 {
308     int len;
309     if (s->buf_ptr >= s->buf_end) {
310         len = ffurl_read(s->hd, s->buffer, BUFFER_SIZE);
311         if (len < 0) {
312             return len;
313         } else if (len == 0) {
314             return AVERROR_EOF;
315         } else {
316             s->buf_ptr = s->buffer;
317             s->buf_end = s->buffer + len;
318         }
319     }
320     return *s->buf_ptr++;
321 }
322
323 static int http_get_line(HTTPContext *s, char *line, int line_size)
324 {
325     int ch;
326     char *q;
327
328     q = line;
329     for (;;) {
330         ch = http_getc(s);
331         if (ch < 0)
332             return ch;
333         if (ch == '\n') {
334             /* process line */
335             if (q > line && q[-1] == '\r')
336                 q--;
337             *q = '\0';
338
339             return 0;
340         } else {
341             if ((q - line) < line_size - 1)
342                 *q++ = ch;
343         }
344     }
345 }
346
347 static int check_http_code(URLContext *h, int http_code, const char *end)
348 {
349     HTTPContext *s = h->priv_data;
350     /* error codes are 4xx and 5xx, but regard 401 as a success, so we
351      * don't abort until all headers have been parsed. */
352     if (http_code >= 400 && http_code < 600 &&
353         (http_code != 401 || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
354         (http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
355         end += strspn(end, SPACE_CHARS);
356         av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n", http_code, end);
357         return AVERROR(EIO);
358     }
359     return 0;
360 }
361
362 static int parse_location(HTTPContext *s, const char *p)
363 {
364     char redirected_location[MAX_URL_SIZE], *new_loc;
365     ff_make_absolute_url(redirected_location, sizeof(redirected_location),
366                          s->location, p);
367     new_loc = av_strdup(redirected_location);
368     if (!new_loc)
369         return AVERROR(ENOMEM);
370     av_free(s->location);
371     s->location = new_loc;
372     return 0;
373 }
374
375 /* "bytes $from-$to/$document_size" */
376 static void parse_content_range(URLContext *h, const char *p)
377 {
378     HTTPContext *s = h->priv_data;
379     const char *slash;
380
381     if (!strncmp(p, "bytes ", 6)) {
382         p     += 6;
383         s->off = strtoll(p, NULL, 10);
384         if ((slash = strchr(p, '/')) && strlen(slash) > 0)
385             s->filesize = strtoll(slash + 1, NULL, 10);
386     }
387     if (s->seekable == -1 && (!s->is_akamai || s->filesize != 2147483647))
388         h->is_streamed = 0; /* we _can_ in fact seek */
389 }
390
391 static int parse_content_encoding(URLContext *h, const char *p)
392 {
393     HTTPContext *s = h->priv_data;
394
395     if (!av_strncasecmp(p, "gzip", 4) ||
396         !av_strncasecmp(p, "deflate", 7)) {
397 #if CONFIG_ZLIB
398         s->compressed = 1;
399         inflateEnd(&s->inflate_stream);
400         if (inflateInit2(&s->inflate_stream, 32 + 15) != Z_OK) {
401             av_log(h, AV_LOG_WARNING, "Error during zlib initialisation: %s\n",
402                    s->inflate_stream.msg);
403             return AVERROR(ENOSYS);
404         }
405         if (zlibCompileFlags() & (1 << 17)) {
406             av_log(h, AV_LOG_WARNING,
407                    "Your zlib was compiled without gzip support.\n");
408             return AVERROR(ENOSYS);
409         }
410 #else
411         av_log(h, AV_LOG_WARNING,
412                "Compressed (%s) content, need zlib with gzip support\n", p);
413         return AVERROR(ENOSYS);
414 #endif /* CONFIG_ZLIB */
415     } else if (!av_strncasecmp(p, "identity", 8)) {
416         // The normal, no-encoding case (although servers shouldn't include
417         // the header at all if this is the case).
418     } else {
419         av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
420     }
421     return 0;
422 }
423
424 // Concat all Icy- header lines
425 static int parse_icy(HTTPContext *s, const char *tag, const char *p)
426 {
427     int len = 4 + strlen(p) + strlen(tag);
428     int is_first = !s->icy_metadata_headers;
429     int ret;
430
431     av_dict_set(&s->metadata, tag, p, 0);
432
433     if (s->icy_metadata_headers)
434         len += strlen(s->icy_metadata_headers);
435
436     if ((ret = av_reallocp(&s->icy_metadata_headers, len)) < 0)
437         return ret;
438
439     if (is_first)
440         *s->icy_metadata_headers = '\0';
441
442     av_strlcatf(s->icy_metadata_headers, len, "%s: %s\n", tag, p);
443
444     return 0;
445 }
446
447 static int process_line(URLContext *h, char *line, int line_count,
448                         int *new_location)
449 {
450     HTTPContext *s = h->priv_data;
451     char *tag, *p, *end;
452     int ret;
453
454     /* end of header */
455     if (line[0] == '\0') {
456         s->end_header = 1;
457         return 0;
458     }
459
460     p = line;
461     if (line_count == 0) {
462         while (!av_isspace(*p) && *p != '\0')
463             p++;
464         while (av_isspace(*p))
465             p++;
466         s->http_code = strtol(p, &end, 10);
467
468         av_log(h, AV_LOG_DEBUG, "http_code=%d\n", s->http_code);
469
470         if ((ret = check_http_code(h, s->http_code, end)) < 0)
471             return ret;
472     } else {
473         while (*p != '\0' && *p != ':')
474             p++;
475         if (*p != ':')
476             return 1;
477
478         *p  = '\0';
479         tag = line;
480         p++;
481         while (av_isspace(*p))
482             p++;
483         if (!av_strcasecmp(tag, "Location")) {
484             if ((ret = parse_location(s, p)) < 0)
485                 return ret;
486             *new_location = 1;
487         } else if (!av_strcasecmp(tag, "Content-Length") && s->filesize == -1) {
488             s->filesize = strtoll(p, NULL, 10);
489         } else if (!av_strcasecmp(tag, "Content-Range")) {
490             parse_content_range(h, p);
491         } else if (!av_strcasecmp(tag, "Accept-Ranges") &&
492                    !strncmp(p, "bytes", 5) &&
493                    s->seekable == -1) {
494             h->is_streamed = 0;
495         } else if (!av_strcasecmp(tag, "Transfer-Encoding") &&
496                    !av_strncasecmp(p, "chunked", 7)) {
497             s->filesize  = -1;
498             s->chunksize = 0;
499         } else if (!av_strcasecmp(tag, "WWW-Authenticate")) {
500             ff_http_auth_handle_header(&s->auth_state, tag, p);
501         } else if (!av_strcasecmp(tag, "Authentication-Info")) {
502             ff_http_auth_handle_header(&s->auth_state, tag, p);
503         } else if (!av_strcasecmp(tag, "Proxy-Authenticate")) {
504             ff_http_auth_handle_header(&s->proxy_auth_state, tag, p);
505         } else if (!av_strcasecmp(tag, "Connection")) {
506             if (!strcmp(p, "close"))
507                 s->willclose = 1;
508         } else if (!av_strcasecmp(tag, "Server")) {
509             if (!av_strcasecmp(p, "AkamaiGHost")) {
510                 s->is_akamai = 1;
511             } else if (!av_strncasecmp(p, "MediaGateway", 12)) {
512                 s->is_mediagateway = 1;
513             }
514         } else if (!av_strcasecmp(tag, "Content-Type")) {
515             av_free(s->mime_type);
516             s->mime_type = av_strdup(p);
517         } else if (!av_strcasecmp(tag, "Set-Cookie")) {
518             if (!s->cookies) {
519                 if (!(s->cookies = av_strdup(p)))
520                     return AVERROR(ENOMEM);
521             } else {
522                 char *tmp = s->cookies;
523                 size_t str_size = strlen(tmp) + strlen(p) + 2;
524                 if (!(s->cookies = av_malloc(str_size))) {
525                     s->cookies = tmp;
526                     return AVERROR(ENOMEM);
527                 }
528                 snprintf(s->cookies, str_size, "%s\n%s", tmp, p);
529                 av_free(tmp);
530             }
531         } else if (!av_strcasecmp(tag, "Icy-MetaInt")) {
532             s->icy_metaint = strtoll(p, NULL, 10);
533         } else if (!av_strncasecmp(tag, "Icy-", 4)) {
534             if ((ret = parse_icy(s, tag, p)) < 0)
535                 return ret;
536         } else if (!av_strcasecmp(tag, "Content-Encoding")) {
537             if ((ret = parse_content_encoding(h, p)) < 0)
538                 return ret;
539         }
540     }
541     return 1;
542 }
543
544 /**
545  * Create a string containing cookie values for use as a HTTP cookie header
546  * field value for a particular path and domain from the cookie values stored in
547  * the HTTP protocol context. The cookie string is stored in *cookies.
548  *
549  * @return a negative value if an error condition occurred, 0 otherwise
550  */
551 static int get_cookies(HTTPContext *s, char **cookies, const char *path,
552                        const char *domain)
553 {
554     // cookie strings will look like Set-Cookie header field values.  Multiple
555     // Set-Cookie fields will result in multiple values delimited by a newline
556     int ret = 0;
557     char *next, *cookie, *set_cookies = av_strdup(s->cookies), *cset_cookies = set_cookies;
558
559     if (!set_cookies) return AVERROR(EINVAL);
560
561     *cookies = NULL;
562     while ((cookie = av_strtok(set_cookies, "\n", &next))) {
563         int domain_offset = 0;
564         char *param, *next_param, *cdomain = NULL, *cpath = NULL, *cvalue = NULL;
565         set_cookies = NULL;
566
567         while ((param = av_strtok(cookie, "; ", &next_param))) {
568             cookie = NULL;
569             if        (!av_strncasecmp("path=",   param, 5)) {
570                 av_free(cpath);
571                 cpath = av_strdup(&param[5]);
572             } else if (!av_strncasecmp("domain=", param, 7)) {
573                 // if the cookie specifies a sub-domain, skip the leading dot thereby
574                 // supporting URLs that point to sub-domains and the master domain
575                 int leading_dot = (param[7] == '.');
576                 av_free(cdomain);
577                 cdomain = av_strdup(&param[7+leading_dot]);
578             } else if (!av_strncasecmp("secure",  param, 6) ||
579                        !av_strncasecmp("comment", param, 7) ||
580                        !av_strncasecmp("max-age", param, 7) ||
581                        !av_strncasecmp("version", param, 7)) {
582                 // ignore Comment, Max-Age, Secure and Version
583             } else {
584                 av_free(cvalue);
585                 cvalue = av_strdup(param);
586             }
587         }
588         if (!cdomain)
589             cdomain = av_strdup(domain);
590
591         // ensure all of the necessary values are valid
592         if (!cdomain || !cpath || !cvalue) {
593             av_log(s, AV_LOG_WARNING,
594                    "Invalid cookie found, no value, path or domain specified\n");
595             goto done_cookie;
596         }
597
598         // check if the request path matches the cookie path
599         if (av_strncasecmp(path, cpath, strlen(cpath)))
600             goto done_cookie;
601
602         // the domain should be at least the size of our cookie domain
603         domain_offset = strlen(domain) - strlen(cdomain);
604         if (domain_offset < 0)
605             goto done_cookie;
606
607         // match the cookie domain
608         if (av_strcasecmp(&domain[domain_offset], cdomain))
609             goto done_cookie;
610
611         // cookie parameters match, so copy the value
612         if (!*cookies) {
613             if (!(*cookies = av_strdup(cvalue))) {
614                 ret = AVERROR(ENOMEM);
615                 goto done_cookie;
616             }
617         } else {
618             char *tmp = *cookies;
619             size_t str_size = strlen(cvalue) + strlen(*cookies) + 3;
620             if (!(*cookies = av_malloc(str_size))) {
621                 ret = AVERROR(ENOMEM);
622                 goto done_cookie;
623             }
624             snprintf(*cookies, str_size, "%s; %s", tmp, cvalue);
625             av_free(tmp);
626         }
627
628         done_cookie:
629         av_free(cdomain);
630         av_free(cpath);
631         av_free(cvalue);
632         if (ret < 0) {
633             if (*cookies) av_freep(cookies);
634             av_free(cset_cookies);
635             return ret;
636         }
637     }
638
639     av_free(cset_cookies);
640
641     return 0;
642 }
643
644 static inline int has_header(const char *str, const char *header)
645 {
646     /* header + 2 to skip over CRLF prefix. (make sure you have one!) */
647     if (!str)
648         return 0;
649     return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
650 }
651
652 static int http_read_header(URLContext *h, int *new_location)
653 {
654     HTTPContext *s = h->priv_data;
655     char line[MAX_URL_SIZE];
656     int err = 0;
657
658     s->chunksize = -1;
659
660     for (;;) {
661         if ((err = http_get_line(s, line, sizeof(line))) < 0)
662             return err;
663
664         av_log(h, AV_LOG_DEBUG, "header='%s'\n", line);
665
666         err = process_line(h, line, s->line_count, new_location);
667         if (err < 0)
668             return err;
669         if (err == 0)
670             break;
671         s->line_count++;
672     }
673
674     if (s->seekable == -1 && s->is_mediagateway && s->filesize == 2000000000)
675         h->is_streamed = 1; /* we can in fact _not_ seek */
676
677     return err;
678 }
679
680 static int http_connect(URLContext *h, const char *path, const char *local_path,
681                         const char *hoststr, const char *auth,
682                         const char *proxyauth, int *new_location)
683 {
684     HTTPContext *s = h->priv_data;
685     int post, err;
686     char headers[HTTP_HEADERS_SIZE] = "";
687     char *authstr = NULL, *proxyauthstr = NULL;
688     int64_t off = s->off;
689     int len = 0;
690     const char *method;
691     int send_expect_100 = 0;
692
693     /* send http header */
694     post = h->flags & AVIO_FLAG_WRITE;
695
696     if (s->post_data) {
697         /* force POST method and disable chunked encoding when
698          * custom HTTP post data is set */
699         post            = 1;
700         s->chunked_post = 0;
701     }
702
703     if (s->method)
704         method = s->method;
705     else
706         method = post ? "POST" : "GET";
707
708     authstr      = ff_http_auth_create_response(&s->auth_state, auth,
709                                                 local_path, method);
710     proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
711                                                 local_path, method);
712     if (post && !s->post_data) {
713         send_expect_100 = s->send_expect_100;
714         /* The user has supplied authentication but we don't know the auth type,
715          * send Expect: 100-continue to get the 401 response including the
716          * WWW-Authenticate header, or an 100 continue if no auth actually
717          * is needed. */
718         if (auth && *auth &&
719             s->auth_state.auth_type == HTTP_AUTH_NONE &&
720             s->http_code != 401)
721             send_expect_100 = 1;
722     }
723
724     /* set default headers if needed */
725     if (!has_header(s->headers, "\r\nUser-Agent: "))
726         len += av_strlcatf(headers + len, sizeof(headers) - len,
727                            "User-Agent: %s\r\n", s->user_agent);
728     if (!has_header(s->headers, "\r\nAccept: "))
729         len += av_strlcpy(headers + len, "Accept: */*\r\n",
730                           sizeof(headers) - len);
731     // Note: we send this on purpose even when s->off is 0 when we're probing,
732     // since it allows us to detect more reliably if a (non-conforming)
733     // server supports seeking by analysing the reply headers.
734     if (!has_header(s->headers, "\r\nRange: ") && !post && (s->off > 0 || s->end_off || s->seekable == -1)) {
735         len += av_strlcatf(headers + len, sizeof(headers) - len,
736                            "Range: bytes=%"PRId64"-", s->off);
737         if (s->end_off)
738             len += av_strlcatf(headers + len, sizeof(headers) - len,
739                                "%"PRId64, s->end_off - 1);
740         len += av_strlcpy(headers + len, "\r\n",
741                           sizeof(headers) - len);
742     }
743     if (send_expect_100 && !has_header(s->headers, "\r\nExpect: "))
744         len += av_strlcatf(headers + len, sizeof(headers) - len,
745                            "Expect: 100-continue\r\n");
746
747     if (!has_header(s->headers, "\r\nConnection: ")) {
748         if (s->multiple_requests)
749             len += av_strlcpy(headers + len, "Connection: keep-alive\r\n",
750                               sizeof(headers) - len);
751         else
752             len += av_strlcpy(headers + len, "Connection: close\r\n",
753                               sizeof(headers) - len);
754     }
755
756     if (!has_header(s->headers, "\r\nHost: "))
757         len += av_strlcatf(headers + len, sizeof(headers) - len,
758                            "Host: %s\r\n", hoststr);
759     if (!has_header(s->headers, "\r\nContent-Length: ") && s->post_data)
760         len += av_strlcatf(headers + len, sizeof(headers) - len,
761                            "Content-Length: %d\r\n", s->post_datalen);
762
763     if (!has_header(s->headers, "\r\nContent-Type: ") && s->content_type)
764         len += av_strlcatf(headers + len, sizeof(headers) - len,
765                            "Content-Type: %s\r\n", s->content_type);
766     if (!has_header(s->headers, "\r\nCookie: ") && s->cookies) {
767         char *cookies = NULL;
768         if (!get_cookies(s, &cookies, path, hoststr) && cookies) {
769             len += av_strlcatf(headers + len, sizeof(headers) - len,
770                                "Cookie: %s\r\n", cookies);
771             av_free(cookies);
772         }
773     }
774     if (!has_header(s->headers, "\r\nIcy-MetaData: ") && s->icy)
775         len += av_strlcatf(headers + len, sizeof(headers) - len,
776                            "Icy-MetaData: %d\r\n", 1);
777
778     /* now add in custom headers */
779     if (s->headers)
780         av_strlcpy(headers + len, s->headers, sizeof(headers) - len);
781
782     snprintf(s->buffer, sizeof(s->buffer),
783              "%s %s HTTP/1.1\r\n"
784              "%s"
785              "%s"
786              "%s"
787              "%s%s"
788              "\r\n",
789              method,
790              path,
791              post && s->chunked_post ? "Transfer-Encoding: chunked\r\n" : "",
792              headers,
793              authstr ? authstr : "",
794              proxyauthstr ? "Proxy-" : "", proxyauthstr ? proxyauthstr : "");
795
796     av_log(h, AV_LOG_DEBUG, "request: %s\n", s->buffer);
797
798     if ((err = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
799         goto done;
800
801     if (s->post_data)
802         if ((err = ffurl_write(s->hd, s->post_data, s->post_datalen)) < 0)
803             goto done;
804
805     /* init input buffer */
806     s->buf_ptr          = s->buffer;
807     s->buf_end          = s->buffer;
808     s->line_count       = 0;
809     s->off              = 0;
810     s->icy_data_read    = 0;
811     s->filesize         = -1;
812     s->willclose        = 0;
813     s->end_chunked_post = 0;
814     s->end_header       = 0;
815     if (post && !s->post_data && !send_expect_100) {
816         /* Pretend that it did work. We didn't read any header yet, since
817          * we've still to send the POST data, but the code calling this
818          * function will check http_code after we return. */
819         s->http_code = 200;
820         err = 0;
821         goto done;
822     }
823
824     /* wait for header */
825     err = http_read_header(h, new_location);
826     if (err < 0)
827         goto done;
828
829     err = (off == s->off) ? 0 : -1;
830 done:
831     av_freep(&authstr);
832     av_freep(&proxyauthstr);
833     return err;
834 }
835
836 static int http_buf_read(URLContext *h, uint8_t *buf, int size)
837 {
838     HTTPContext *s = h->priv_data;
839     int len;
840     /* read bytes from input buffer first */
841     len = s->buf_end - s->buf_ptr;
842     if (len > 0) {
843         if (len > size)
844             len = size;
845         memcpy(buf, s->buf_ptr, len);
846         s->buf_ptr += len;
847     } else {
848         if ((!s->willclose || s->chunksize < 0) &&
849             s->filesize >= 0 && s->off >= s->filesize)
850             return AVERROR_EOF;
851         len = ffurl_read(s->hd, buf, size);
852     }
853     if (len > 0) {
854         s->off += len;
855         if (s->chunksize > 0)
856             s->chunksize -= len;
857     }
858     return len;
859 }
860
861 #if CONFIG_ZLIB
862 #define DECOMPRESS_BUF_SIZE (256 * 1024)
863 static int http_buf_read_compressed(URLContext *h, uint8_t *buf, int size)
864 {
865     HTTPContext *s = h->priv_data;
866     int ret;
867
868     if (!s->inflate_buffer) {
869         s->inflate_buffer = av_malloc(DECOMPRESS_BUF_SIZE);
870         if (!s->inflate_buffer)
871             return AVERROR(ENOMEM);
872     }
873
874     if (s->inflate_stream.avail_in == 0) {
875         int read = http_buf_read(h, s->inflate_buffer, DECOMPRESS_BUF_SIZE);
876         if (read <= 0)
877             return read;
878         s->inflate_stream.next_in  = s->inflate_buffer;
879         s->inflate_stream.avail_in = read;
880     }
881
882     s->inflate_stream.avail_out = size;
883     s->inflate_stream.next_out  = buf;
884
885     ret = inflate(&s->inflate_stream, Z_SYNC_FLUSH);
886     if (ret != Z_OK && ret != Z_STREAM_END)
887         av_log(h, AV_LOG_WARNING, "inflate return value: %d, %s\n",
888                ret, s->inflate_stream.msg);
889
890     return size - s->inflate_stream.avail_out;
891 }
892 #endif /* CONFIG_ZLIB */
893
894 static int http_read_stream(URLContext *h, uint8_t *buf, int size)
895 {
896     HTTPContext *s = h->priv_data;
897     int err, new_location;
898
899     if (!s->hd)
900         return AVERROR_EOF;
901
902     if (s->end_chunked_post && !s->end_header) {
903         err = http_read_header(h, &new_location);
904         if (err < 0)
905             return err;
906     }
907
908     if (s->chunksize >= 0) {
909         if (!s->chunksize) {
910             char line[32];
911
912                 do {
913                     if ((err = http_get_line(s, line, sizeof(line))) < 0)
914                         return err;
915                 } while (!*line);    /* skip CR LF from last chunk */
916
917                 s->chunksize = strtoll(line, NULL, 16);
918
919                 av_dlog(NULL, "Chunked encoding data size: %"PRId64"'\n",
920                         s->chunksize);
921
922                 if (!s->chunksize)
923                     return 0;
924         }
925         size = FFMIN(size, s->chunksize);
926     }
927 #if CONFIG_ZLIB
928     if (s->compressed)
929         return http_buf_read_compressed(h, buf, size);
930 #endif /* CONFIG_ZLIB */
931     return http_buf_read(h, buf, size);
932 }
933
934 // Like http_read_stream(), but no short reads.
935 // Assumes partial reads are an error.
936 static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
937 {
938     int pos = 0;
939     while (pos < size) {
940         int len = http_read_stream(h, buf + pos, size - pos);
941         if (len < 0)
942             return len;
943         pos += len;
944     }
945     return pos;
946 }
947
948 static void update_metadata(HTTPContext *s, char *data)
949 {
950     char *key;
951     char *val;
952     char *end;
953     char *next = data;
954
955     while (*next) {
956         key = next;
957         val = strstr(key, "='");
958         if (!val)
959             break;
960         end = strstr(val, "';");
961         if (!end)
962             break;
963
964         *val = '\0';
965         *end = '\0';
966         val += 2;
967
968         av_dict_set(&s->metadata, key, val, 0);
969
970         next = end + 2;
971     }
972 }
973
974 static int store_icy(URLContext *h, int size)
975 {
976     HTTPContext *s = h->priv_data;
977     /* until next metadata packet */
978     int remaining = s->icy_metaint - s->icy_data_read;
979
980     if (remaining < 0)
981         return AVERROR_INVALIDDATA;
982
983     if (!remaining) {
984         /* The metadata packet is variable sized. It has a 1 byte header
985          * which sets the length of the packet (divided by 16). If it's 0,
986          * the metadata doesn't change. After the packet, icy_metaint bytes
987          * of normal data follows. */
988         uint8_t ch;
989         int len = http_read_stream_all(h, &ch, 1);
990         if (len < 0)
991             return len;
992         if (ch > 0) {
993             char data[255 * 16 + 1];
994             int ret;
995             len = ch * 16;
996             ret = http_read_stream_all(h, data, len);
997             if (ret < 0)
998                 return ret;
999             data[len + 1] = 0;
1000             if ((ret = av_opt_set(s, "icy_metadata_packet", data, 0)) < 0)
1001                 return ret;
1002             update_metadata(s, data);
1003         }
1004         s->icy_data_read = 0;
1005         remaining        = s->icy_metaint;
1006     }
1007
1008     return FFMIN(size, remaining);
1009 }
1010
1011 static int http_read(URLContext *h, uint8_t *buf, int size)
1012 {
1013     HTTPContext *s = h->priv_data;
1014
1015     if (s->icy_metaint > 0) {
1016         size = store_icy(h, size);
1017         if (size < 0)
1018             return size;
1019     }
1020
1021     size = http_read_stream(h, buf, size);
1022     if (size > 0)
1023         s->icy_data_read += size;
1024     return size;
1025 }
1026
1027 /* used only when posting data */
1028 static int http_write(URLContext *h, const uint8_t *buf, int size)
1029 {
1030     char temp[11] = "";  /* 32-bit hex + CRLF + nul */
1031     int ret;
1032     char crlf[] = "\r\n";
1033     HTTPContext *s = h->priv_data;
1034
1035     if (!s->chunked_post) {
1036         /* non-chunked data is sent without any special encoding */
1037         return ffurl_write(s->hd, buf, size);
1038     }
1039
1040     /* silently ignore zero-size data since chunk encoding that would
1041      * signal EOF */
1042     if (size > 0) {
1043         /* upload data using chunked encoding */
1044         snprintf(temp, sizeof(temp), "%x\r\n", size);
1045
1046         if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 ||
1047             (ret = ffurl_write(s->hd, buf, size)) < 0          ||
1048             (ret = ffurl_write(s->hd, crlf, sizeof(crlf) - 1)) < 0)
1049             return ret;
1050     }
1051     return size;
1052 }
1053
1054 static int http_shutdown(URLContext *h, int flags)
1055 {
1056     int ret = 0;
1057     char footer[] = "0\r\n\r\n";
1058     HTTPContext *s = h->priv_data;
1059
1060     /* signal end of chunked encoding if used */
1061     if ((flags & AVIO_FLAG_WRITE) && s->chunked_post) {
1062         ret = ffurl_write(s->hd, footer, sizeof(footer) - 1);
1063         ret = ret > 0 ? 0 : ret;
1064         s->end_chunked_post = 1;
1065     }
1066
1067     return ret;
1068 }
1069
1070 static int http_close(URLContext *h)
1071 {
1072     int ret = 0;
1073     HTTPContext *s = h->priv_data;
1074
1075 #if CONFIG_ZLIB
1076     inflateEnd(&s->inflate_stream);
1077     av_freep(&s->inflate_buffer);
1078 #endif /* CONFIG_ZLIB */
1079
1080     if (!s->end_chunked_post)
1081         /* Close the write direction by sending the end of chunked encoding. */
1082         ret = http_shutdown(h, h->flags);
1083
1084     if (s->hd)
1085         ffurl_closep(&s->hd);
1086     av_dict_free(&s->chained_options);
1087     return ret;
1088 }
1089
1090 static int64_t http_seek(URLContext *h, int64_t off, int whence)
1091 {
1092     HTTPContext *s = h->priv_data;
1093     URLContext *old_hd = s->hd;
1094     int64_t old_off = s->off;
1095     uint8_t old_buf[BUFFER_SIZE];
1096     int old_buf_size, ret;
1097     AVDictionary *options = NULL;
1098
1099     if (whence == AVSEEK_SIZE)
1100         return s->filesize;
1101     else if ((whence == SEEK_CUR && off == 0) ||
1102              (whence == SEEK_SET && off == s->off))
1103         return s->off;
1104     else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
1105         return AVERROR(ENOSYS);
1106
1107     if (whence == SEEK_CUR)
1108         off += s->off;
1109     else if (whence == SEEK_END)
1110         off += s->filesize;
1111     else if (whence != SEEK_SET)
1112         return AVERROR(EINVAL);
1113     if (off < 0)
1114         return AVERROR(EINVAL);
1115     s->off = off;
1116
1117     /* we save the old context in case the seek fails */
1118     old_buf_size = s->buf_end - s->buf_ptr;
1119     memcpy(old_buf, s->buf_ptr, old_buf_size);
1120     s->hd = NULL;
1121
1122     /* if it fails, continue on old connection */
1123     av_dict_copy(&options, s->chained_options, 0);
1124     if ((ret = http_open_cnx(h, &options)) < 0) {
1125         av_dict_free(&options);
1126         memcpy(s->buffer, old_buf, old_buf_size);
1127         s->buf_ptr = s->buffer;
1128         s->buf_end = s->buffer + old_buf_size;
1129         s->hd      = old_hd;
1130         s->off     = old_off;
1131         return ret;
1132     }
1133     av_dict_free(&options);
1134     ffurl_close(old_hd);
1135     return off;
1136 }
1137
1138 static int http_get_file_handle(URLContext *h)
1139 {
1140     HTTPContext *s = h->priv_data;
1141     return ffurl_get_file_handle(s->hd);
1142 }
1143
1144 #define HTTP_CLASS(flavor)                          \
1145 static const AVClass flavor ## _context_class = {   \
1146     .class_name = # flavor,                         \
1147     .item_name  = av_default_item_name,             \
1148     .option     = options,                          \
1149     .version    = LIBAVUTIL_VERSION_INT,            \
1150 }
1151
1152 #if CONFIG_HTTP_PROTOCOL
1153 HTTP_CLASS(http);
1154
1155 URLProtocol ff_http_protocol = {
1156     .name                = "http",
1157     .url_open2           = http_open,
1158     .url_read            = http_read,
1159     .url_write           = http_write,
1160     .url_seek            = http_seek,
1161     .url_close           = http_close,
1162     .url_get_file_handle = http_get_file_handle,
1163     .url_shutdown        = http_shutdown,
1164     .priv_data_size      = sizeof(HTTPContext),
1165     .priv_data_class     = &http_context_class,
1166     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1167 };
1168 #endif /* CONFIG_HTTP_PROTOCOL */
1169
1170 #if CONFIG_HTTPS_PROTOCOL
1171 HTTP_CLASS(https);
1172
1173 URLProtocol ff_https_protocol = {
1174     .name                = "https",
1175     .url_open2           = http_open,
1176     .url_read            = http_read,
1177     .url_write           = http_write,
1178     .url_seek            = http_seek,
1179     .url_close           = http_close,
1180     .url_get_file_handle = http_get_file_handle,
1181     .url_shutdown        = http_shutdown,
1182     .priv_data_size      = sizeof(HTTPContext),
1183     .priv_data_class     = &https_context_class,
1184     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1185 };
1186 #endif /* CONFIG_HTTPS_PROTOCOL */
1187
1188 #if CONFIG_HTTPPROXY_PROTOCOL
1189 static int http_proxy_close(URLContext *h)
1190 {
1191     HTTPContext *s = h->priv_data;
1192     if (s->hd)
1193         ffurl_closep(&s->hd);
1194     return 0;
1195 }
1196
1197 static int http_proxy_open(URLContext *h, const char *uri, int flags)
1198 {
1199     HTTPContext *s = h->priv_data;
1200     char hostname[1024], hoststr[1024];
1201     char auth[1024], pathbuf[1024], *path;
1202     char lower_url[100];
1203     int port, ret = 0, attempts = 0;
1204     HTTPAuthType cur_auth_type;
1205     char *authstr;
1206     int new_loc;
1207
1208     if( s->seekable == 1 )
1209         h->is_streamed = 0;
1210     else
1211         h->is_streamed = 1;
1212
1213     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
1214                  pathbuf, sizeof(pathbuf), uri);
1215     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
1216     path = pathbuf;
1217     if (*path == '/')
1218         path++;
1219
1220     ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
1221                 NULL);
1222 redo:
1223     ret = ffurl_open(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
1224                      &h->interrupt_callback, NULL);
1225     if (ret < 0)
1226         return ret;
1227
1228     authstr = ff_http_auth_create_response(&s->proxy_auth_state, auth,
1229                                            path, "CONNECT");
1230     snprintf(s->buffer, sizeof(s->buffer),
1231              "CONNECT %s HTTP/1.1\r\n"
1232              "Host: %s\r\n"
1233              "Connection: close\r\n"
1234              "%s%s"
1235              "\r\n",
1236              path,
1237              hoststr,
1238              authstr ? "Proxy-" : "", authstr ? authstr : "");
1239     av_freep(&authstr);
1240
1241     if ((ret = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
1242         goto fail;
1243
1244     s->buf_ptr    = s->buffer;
1245     s->buf_end    = s->buffer;
1246     s->line_count = 0;
1247     s->filesize   = -1;
1248     cur_auth_type = s->proxy_auth_state.auth_type;
1249
1250     /* Note: This uses buffering, potentially reading more than the
1251      * HTTP header. If tunneling a protocol where the server starts
1252      * the conversation, we might buffer part of that here, too.
1253      * Reading that requires using the proper ffurl_read() function
1254      * on this URLContext, not using the fd directly (as the tls
1255      * protocol does). This shouldn't be an issue for tls though,
1256      * since the client starts the conversation there, so there
1257      * is no extra data that we might buffer up here.
1258      */
1259     ret = http_read_header(h, &new_loc);
1260     if (ret < 0)
1261         goto fail;
1262
1263     attempts++;
1264     if (s->http_code == 407 &&
1265         (cur_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
1266         s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2) {
1267         ffurl_closep(&s->hd);
1268         goto redo;
1269     }
1270
1271     if (s->http_code < 400)
1272         return 0;
1273     ret = AVERROR(EIO);
1274
1275 fail:
1276     http_proxy_close(h);
1277     return ret;
1278 }
1279
1280 static int http_proxy_write(URLContext *h, const uint8_t *buf, int size)
1281 {
1282     HTTPContext *s = h->priv_data;
1283     return ffurl_write(s->hd, buf, size);
1284 }
1285
1286 URLProtocol ff_httpproxy_protocol = {
1287     .name                = "httpproxy",
1288     .url_open            = http_proxy_open,
1289     .url_read            = http_buf_read,
1290     .url_write           = http_proxy_write,
1291     .url_close           = http_proxy_close,
1292     .url_get_file_handle = http_get_file_handle,
1293     .priv_data_size      = sizeof(HTTPContext),
1294     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1295 };
1296 #endif /* CONFIG_HTTPPROXY_PROTOCOL */