]> git.sesse.net Git - ffmpeg/blob - libavformat/http.c
Merge commit 'c8e135ea9225137050a6315fd9ba9c0f242c90b6'
[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/avassert.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/time.h"
32 #include "libavutil/parseutils.h"
33
34 #include "avformat.h"
35 #include "http.h"
36 #include "httpauth.h"
37 #include "internal.h"
38 #include "network.h"
39 #include "os_support.h"
40 #include "url.h"
41
42 /* XXX: POST protocol is not completely implemented because ffmpeg uses
43  * only a subset of it. */
44
45 /* The IO buffer size is unrelated to the max URL size in itself, but needs
46  * to be large enough to fit the full request headers (including long
47  * path names). */
48 #define BUFFER_SIZE   MAX_URL_SIZE
49 #define MAX_REDIRECTS 8
50 #define HTTP_SINGLE   1
51 #define HTTP_MUTLI    2
52 #define MAX_EXPIRY    19
53 #define WHITESPACES " \n\t\r"
54 typedef enum {
55     LOWER_PROTO,
56     READ_HEADERS,
57     WRITE_REPLY_HEADERS,
58     FINISH
59 }HandshakeState;
60
61 typedef struct HTTPContext {
62     const AVClass *class;
63     URLContext *hd;
64     unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
65     int line_count;
66     int http_code;
67     /* Used if "Transfer-Encoding: chunked" otherwise -1. */
68     uint64_t chunksize;
69     int chunkend;
70     uint64_t off, end_off, filesize;
71     char *location;
72     HTTPAuthState auth_state;
73     HTTPAuthState proxy_auth_state;
74     char *http_proxy;
75     char *headers;
76     char *mime_type;
77     char *http_version;
78     char *user_agent;
79     char *referer;
80 #if FF_API_HTTP_USER_AGENT
81     char *user_agent_deprecated;
82 #endif
83     char *content_type;
84     /* Set if the server correctly handles Connection: close and will close
85      * the connection after feeding us the content. */
86     int willclose;
87     int seekable;           /**< Control seekability, 0 = disable, 1 = enable, -1 = probe. */
88     int chunked_post;
89     /* A flag which indicates if the end of chunked encoding has been sent. */
90     int end_chunked_post;
91     /* A flag which indicates we have finished to read POST reply. */
92     int end_header;
93     /* A flag which indicates if we use persistent connections. */
94     int multiple_requests;
95     uint8_t *post_data;
96     int post_datalen;
97     int is_akamai;
98     int is_mediagateway;
99     char *cookies;          ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
100     /* A dictionary containing cookies keyed by cookie name */
101     AVDictionary *cookie_dict;
102     int icy;
103     /* how much data was read since the last ICY metadata packet */
104     uint64_t icy_data_read;
105     /* after how many bytes of read data a new metadata packet will be found */
106     uint64_t icy_metaint;
107     char *icy_metadata_headers;
108     char *icy_metadata_packet;
109     AVDictionary *metadata;
110 #if CONFIG_ZLIB
111     int compressed;
112     z_stream inflate_stream;
113     uint8_t *inflate_buffer;
114 #endif /* CONFIG_ZLIB */
115     AVDictionary *chained_options;
116     int send_expect_100;
117     char *method;
118     int reconnect;
119     int reconnect_at_eof;
120     int reconnect_streamed;
121     int reconnect_delay_max;
122     int listen;
123     char *resource;
124     int reply_code;
125     int is_multi_client;
126     HandshakeState handshake_step;
127     int is_connected_server;
128 } HTTPContext;
129
130 #define OFFSET(x) offsetof(HTTPContext, x)
131 #define D AV_OPT_FLAG_DECODING_PARAM
132 #define E AV_OPT_FLAG_ENCODING_PARAM
133 #define DEFAULT_USER_AGENT "Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION)
134
135 static const AVOption options[] = {
136     { "seekable", "control seekability of connection", OFFSET(seekable), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, D },
137     { "chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
138     { "http_proxy", "set HTTP proxy to tunnel through", OFFSET(http_proxy), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
139     { "headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
140     { "content_type", "set a specific content type for the POST messages", OFFSET(content_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
141     { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
142     { "referer", "override referer header", OFFSET(referer), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
143 #if FF_API_HTTP_USER_AGENT
144     { "user-agent", "override User-Agent header", OFFSET(user_agent_deprecated), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
145 #endif
146     { "multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D | E },
147     { "post_data", "set custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D | E },
148     { "mime_type", "export the MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
149     { "http_version", "export the http response version", OFFSET(http_version), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
150     { "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, { .str = NULL }, 0, 0, D },
151     { "icy", "request ICY metadata", OFFSET(icy), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, D },
152     { "icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
153     { "icy_metadata_packet", "return current ICY metadata packet", OFFSET(icy_metadata_packet), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
154     { "metadata", "metadata read from the bitstream", OFFSET(metadata), AV_OPT_TYPE_DICT, {0}, 0, 0, AV_OPT_FLAG_EXPORT },
155     { "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"},
156     { "none", "No auth method set, autodetect", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_NONE }, 0, 0, D | E, "auth_type"},
157     { "basic", "HTTP basic authentication", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_BASIC }, 0, 0, D | E, "auth_type"},
158     { "send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
159     { "location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
160     { "offset", "initial byte offset", OFFSET(off), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, D },
161     { "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 },
162     { "method", "Override the HTTP method or set the expected HTTP method from a client", OFFSET(method), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
163     { "reconnect", "auto reconnect after disconnect before EOF", OFFSET(reconnect), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
164     { "reconnect_at_eof", "auto reconnect at EOF", OFFSET(reconnect_at_eof), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
165     { "reconnect_streamed", "auto reconnect streamed / non seekable streams", OFFSET(reconnect_streamed), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
166     { "reconnect_delay_max", "max reconnect delay in seconds after which to give up", OFFSET(reconnect_delay_max), AV_OPT_TYPE_INT, { .i64 = 120 }, 0, UINT_MAX/1000/1000, D },
167     { "listen", "listen on HTTP", OFFSET(listen), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, D | E },
168     { "resource", "The resource requested by a client", OFFSET(resource), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
169     { "reply_code", "The http status code to return to a client", OFFSET(reply_code), AV_OPT_TYPE_INT, { .i64 = 200}, INT_MIN, 599, E},
170     { NULL }
171 };
172
173 static int http_connect(URLContext *h, const char *path, const char *local_path,
174                         const char *hoststr, const char *auth,
175                         const char *proxyauth, int *new_location);
176 static int http_read_header(URLContext *h, int *new_location);
177 static int http_shutdown(URLContext *h, int flags);
178
179 void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
180 {
181     memcpy(&((HTTPContext *)dest->priv_data)->auth_state,
182            &((HTTPContext *)src->priv_data)->auth_state,
183            sizeof(HTTPAuthState));
184     memcpy(&((HTTPContext *)dest->priv_data)->proxy_auth_state,
185            &((HTTPContext *)src->priv_data)->proxy_auth_state,
186            sizeof(HTTPAuthState));
187 }
188
189 static int http_open_cnx_internal(URLContext *h, AVDictionary **options)
190 {
191     const char *path, *proxy_path, *lower_proto = "tcp", *local_path;
192     char hostname[1024], hoststr[1024], proto[10];
193     char auth[1024], proxyauth[1024] = "";
194     char path1[MAX_URL_SIZE];
195     char buf[1024], urlbuf[MAX_URL_SIZE];
196     int port, use_proxy, err, location_changed = 0;
197     HTTPContext *s = h->priv_data;
198
199     av_url_split(proto, sizeof(proto), auth, sizeof(auth),
200                  hostname, sizeof(hostname), &port,
201                  path1, sizeof(path1), s->location);
202     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
203
204     proxy_path = s->http_proxy ? s->http_proxy : getenv("http_proxy");
205     use_proxy  = !ff_http_match_no_proxy(getenv("no_proxy"), hostname) &&
206                  proxy_path && av_strstart(proxy_path, "http://", NULL);
207
208     if (!strcmp(proto, "https")) {
209         lower_proto = "tls";
210         use_proxy   = 0;
211         if (port < 0)
212             port = 443;
213     }
214     if (port < 0)
215         port = 80;
216
217     if (path1[0] == '\0')
218         path = "/";
219     else
220         path = path1;
221     local_path = path;
222     if (use_proxy) {
223         /* Reassemble the request URL without auth string - we don't
224          * want to leak the auth to the proxy. */
225         ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
226                     path1);
227         path = urlbuf;
228         av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
229                      hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
230     }
231
232     ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
233
234     if (!s->hd) {
235         err = ffurl_open_whitelist(&s->hd, buf, AVIO_FLAG_READ_WRITE,
236                                    &h->interrupt_callback, options,
237                                    h->protocol_whitelist, h->protocol_blacklist, h);
238         if (err < 0)
239             return err;
240     }
241
242     err = http_connect(h, path, local_path, hoststr,
243                        auth, proxyauth, &location_changed);
244     if (err < 0)
245         return err;
246
247     return location_changed;
248 }
249
250 /* return non zero if error */
251 static int http_open_cnx(URLContext *h, AVDictionary **options)
252 {
253     HTTPAuthType cur_auth_type, cur_proxy_auth_type;
254     HTTPContext *s = h->priv_data;
255     int location_changed, attempts = 0, redirects = 0;
256 redo:
257     av_dict_copy(options, s->chained_options, 0);
258
259     cur_auth_type       = s->auth_state.auth_type;
260     cur_proxy_auth_type = s->auth_state.auth_type;
261
262     location_changed = http_open_cnx_internal(h, options);
263     if (location_changed < 0)
264         goto fail;
265
266     attempts++;
267     if (s->http_code == 401) {
268         if ((cur_auth_type == HTTP_AUTH_NONE || s->auth_state.stale) &&
269             s->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
270             ffurl_closep(&s->hd);
271             goto redo;
272         } else
273             goto fail;
274     }
275     if (s->http_code == 407) {
276         if ((cur_proxy_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
277             s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
278             ffurl_closep(&s->hd);
279             goto redo;
280         } else
281             goto fail;
282     }
283     if ((s->http_code == 301 || s->http_code == 302 ||
284          s->http_code == 303 || s->http_code == 307) &&
285         location_changed == 1) {
286         /* url moved, get next */
287         ffurl_closep(&s->hd);
288         if (redirects++ >= MAX_REDIRECTS)
289             return AVERROR(EIO);
290         /* Restart the authentication process with the new target, which
291          * might use a different auth mechanism. */
292         memset(&s->auth_state, 0, sizeof(s->auth_state));
293         attempts         = 0;
294         location_changed = 0;
295         goto redo;
296     }
297     return 0;
298
299 fail:
300     if (s->hd)
301         ffurl_closep(&s->hd);
302     if (location_changed < 0)
303         return location_changed;
304     return ff_http_averror(s->http_code, AVERROR(EIO));
305 }
306
307 int ff_http_do_new_request(URLContext *h, const char *uri)
308 {
309     HTTPContext *s = h->priv_data;
310     AVDictionary *options = NULL;
311     int ret;
312     char hostname1[1024], hostname2[1024], proto1[10], proto2[10];
313     int port1, port2;
314
315     if (!h->prot ||
316         !(!strcmp(h->prot->name, "http") ||
317           !strcmp(h->prot->name, "https")))
318         return AVERROR(EINVAL);
319
320     av_url_split(proto1, sizeof(proto1), NULL, 0,
321                  hostname1, sizeof(hostname1), &port1,
322                  NULL, 0, s->location);
323     av_url_split(proto2, sizeof(proto2), NULL, 0,
324                  hostname2, sizeof(hostname2), &port2,
325                  NULL, 0, uri);
326     if (port1 != port2 || strncmp(hostname1, hostname2, sizeof(hostname2)) != 0) {
327         av_log(h, AV_LOG_ERROR, "Cannot reuse HTTP connection for different host: %s:%d != %s:%d\n",
328             hostname1, port1,
329             hostname2, port2
330         );
331         return AVERROR(EINVAL);
332     }
333
334     if (!s->end_chunked_post) {
335         ret = http_shutdown(h, h->flags);
336         if (ret < 0)
337             return ret;
338     }
339
340     if (s->willclose)
341         return AVERROR_EOF;
342
343     s->end_chunked_post = 0;
344     s->chunkend      = 0;
345     s->off           = 0;
346     s->icy_data_read = 0;
347     av_free(s->location);
348     s->location = av_strdup(uri);
349     if (!s->location)
350         return AVERROR(ENOMEM);
351
352     av_log(s, AV_LOG_INFO, "Opening \'%s\' for %s\n", uri, h->flags & AVIO_FLAG_WRITE ? "writing" : "reading");
353     ret = http_open_cnx(h, &options);
354     av_dict_free(&options);
355     return ret;
356 }
357
358 int ff_http_averror(int status_code, int default_averror)
359 {
360     switch (status_code) {
361         case 400: return AVERROR_HTTP_BAD_REQUEST;
362         case 401: return AVERROR_HTTP_UNAUTHORIZED;
363         case 403: return AVERROR_HTTP_FORBIDDEN;
364         case 404: return AVERROR_HTTP_NOT_FOUND;
365         default: break;
366     }
367     if (status_code >= 400 && status_code <= 499)
368         return AVERROR_HTTP_OTHER_4XX;
369     else if (status_code >= 500)
370         return AVERROR_HTTP_SERVER_ERROR;
371     else
372         return default_averror;
373 }
374
375 static int http_write_reply(URLContext* h, int status_code)
376 {
377     int ret, body = 0, reply_code, message_len;
378     const char *reply_text, *content_type;
379     HTTPContext *s = h->priv_data;
380     char message[BUFFER_SIZE];
381     content_type = "text/plain";
382
383     if (status_code < 0)
384         body = 1;
385     switch (status_code) {
386     case AVERROR_HTTP_BAD_REQUEST:
387     case 400:
388         reply_code = 400;
389         reply_text = "Bad Request";
390         break;
391     case AVERROR_HTTP_FORBIDDEN:
392     case 403:
393         reply_code = 403;
394         reply_text = "Forbidden";
395         break;
396     case AVERROR_HTTP_NOT_FOUND:
397     case 404:
398         reply_code = 404;
399         reply_text = "Not Found";
400         break;
401     case 200:
402         reply_code = 200;
403         reply_text = "OK";
404         content_type = s->content_type ? s->content_type : "application/octet-stream";
405         break;
406     case AVERROR_HTTP_SERVER_ERROR:
407     case 500:
408         reply_code = 500;
409         reply_text = "Internal server error";
410         break;
411     default:
412         return AVERROR(EINVAL);
413     }
414     if (body) {
415         s->chunked_post = 0;
416         message_len = snprintf(message, sizeof(message),
417                  "HTTP/1.1 %03d %s\r\n"
418                  "Content-Type: %s\r\n"
419                  "Content-Length: %"SIZE_SPECIFIER"\r\n"
420                  "%s"
421                  "\r\n"
422                  "%03d %s\r\n",
423                  reply_code,
424                  reply_text,
425                  content_type,
426                  strlen(reply_text) + 6, // 3 digit status code + space + \r\n
427                  s->headers ? s->headers : "",
428                  reply_code,
429                  reply_text);
430     } else {
431         s->chunked_post = 1;
432         message_len = snprintf(message, sizeof(message),
433                  "HTTP/1.1 %03d %s\r\n"
434                  "Content-Type: %s\r\n"
435                  "Transfer-Encoding: chunked\r\n"
436                  "%s"
437                  "\r\n",
438                  reply_code,
439                  reply_text,
440                  content_type,
441                  s->headers ? s->headers : "");
442     }
443     av_log(h, AV_LOG_TRACE, "HTTP reply header: \n%s----\n", message);
444     if ((ret = ffurl_write(s->hd, message, message_len)) < 0)
445         return ret;
446     return 0;
447 }
448
449 static void handle_http_errors(URLContext *h, int error)
450 {
451     av_assert0(error < 0);
452     http_write_reply(h, error);
453 }
454
455 static int http_handshake(URLContext *c)
456 {
457     int ret, err, new_location;
458     HTTPContext *ch = c->priv_data;
459     URLContext *cl = ch->hd;
460     switch (ch->handshake_step) {
461     case LOWER_PROTO:
462         av_log(c, AV_LOG_TRACE, "Lower protocol\n");
463         if ((ret = ffurl_handshake(cl)) > 0)
464             return 2 + ret;
465         if (ret < 0)
466             return ret;
467         ch->handshake_step = READ_HEADERS;
468         ch->is_connected_server = 1;
469         return 2;
470     case READ_HEADERS:
471         av_log(c, AV_LOG_TRACE, "Read headers\n");
472         if ((err = http_read_header(c, &new_location)) < 0) {
473             handle_http_errors(c, err);
474             return err;
475         }
476         ch->handshake_step = WRITE_REPLY_HEADERS;
477         return 1;
478     case WRITE_REPLY_HEADERS:
479         av_log(c, AV_LOG_TRACE, "Reply code: %d\n", ch->reply_code);
480         if ((err = http_write_reply(c, ch->reply_code)) < 0)
481             return err;
482         ch->handshake_step = FINISH;
483         return 1;
484     case FINISH:
485         return 0;
486     }
487     // this should never be reached.
488     return AVERROR(EINVAL);
489 }
490
491 static int http_listen(URLContext *h, const char *uri, int flags,
492                        AVDictionary **options) {
493     HTTPContext *s = h->priv_data;
494     int ret;
495     char hostname[1024], proto[10];
496     char lower_url[100];
497     const char *lower_proto = "tcp";
498     int port;
499     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), &port,
500                  NULL, 0, uri);
501     if (!strcmp(proto, "https"))
502         lower_proto = "tls";
503     ff_url_join(lower_url, sizeof(lower_url), lower_proto, NULL, hostname, port,
504                 NULL);
505     if ((ret = av_dict_set_int(options, "listen", s->listen, 0)) < 0)
506         goto fail;
507     if ((ret = ffurl_open_whitelist(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
508                                     &h->interrupt_callback, options,
509                                     h->protocol_whitelist, h->protocol_blacklist, h
510                                    )) < 0)
511         goto fail;
512     s->handshake_step = LOWER_PROTO;
513     if (s->listen == HTTP_SINGLE) { /* single client */
514         s->reply_code = 200;
515         while ((ret = http_handshake(h)) > 0);
516     }
517 fail:
518     av_dict_free(&s->chained_options);
519     return ret;
520 }
521
522 static int http_open(URLContext *h, const char *uri, int flags,
523                      AVDictionary **options)
524 {
525     HTTPContext *s = h->priv_data;
526     int ret;
527
528     if( s->seekable == 1 )
529         h->is_streamed = 0;
530     else
531         h->is_streamed = 1;
532
533     s->filesize = UINT64_MAX;
534     s->location = av_strdup(uri);
535     if (!s->location)
536         return AVERROR(ENOMEM);
537     if (options)
538         av_dict_copy(&s->chained_options, *options, 0);
539
540     if (s->headers) {
541         int len = strlen(s->headers);
542         if (len < 2 || strcmp("\r\n", s->headers + len - 2)) {
543             av_log(h, AV_LOG_WARNING,
544                    "No trailing CRLF found in HTTP header.\n");
545             ret = av_reallocp(&s->headers, len + 3);
546             if (ret < 0)
547                 return ret;
548             s->headers[len]     = '\r';
549             s->headers[len + 1] = '\n';
550             s->headers[len + 2] = '\0';
551         }
552     }
553
554     if (s->listen) {
555         return http_listen(h, uri, flags, options);
556     }
557     ret = http_open_cnx(h, options);
558     if (ret < 0)
559         av_dict_free(&s->chained_options);
560     return ret;
561 }
562
563 static int http_accept(URLContext *s, URLContext **c)
564 {
565     int ret;
566     HTTPContext *sc = s->priv_data;
567     HTTPContext *cc;
568     URLContext *sl = sc->hd;
569     URLContext *cl = NULL;
570
571     av_assert0(sc->listen);
572     if ((ret = ffurl_alloc(c, s->filename, s->flags, &sl->interrupt_callback)) < 0)
573         goto fail;
574     cc = (*c)->priv_data;
575     if ((ret = ffurl_accept(sl, &cl)) < 0)
576         goto fail;
577     cc->hd = cl;
578     cc->is_multi_client = 1;
579 fail:
580     return ret;
581 }
582
583 static int http_getc(HTTPContext *s)
584 {
585     int len;
586     if (s->buf_ptr >= s->buf_end) {
587         len = ffurl_read(s->hd, s->buffer, BUFFER_SIZE);
588         if (len < 0) {
589             return len;
590         } else if (len == 0) {
591             return AVERROR_EOF;
592         } else {
593             s->buf_ptr = s->buffer;
594             s->buf_end = s->buffer + len;
595         }
596     }
597     return *s->buf_ptr++;
598 }
599
600 static int http_get_line(HTTPContext *s, char *line, int line_size)
601 {
602     int ch;
603     char *q;
604
605     q = line;
606     for (;;) {
607         ch = http_getc(s);
608         if (ch < 0)
609             return ch;
610         if (ch == '\n') {
611             /* process line */
612             if (q > line && q[-1] == '\r')
613                 q--;
614             *q = '\0';
615
616             return 0;
617         } else {
618             if ((q - line) < line_size - 1)
619                 *q++ = ch;
620         }
621     }
622 }
623
624 static int check_http_code(URLContext *h, int http_code, const char *end)
625 {
626     HTTPContext *s = h->priv_data;
627     /* error codes are 4xx and 5xx, but regard 401 as a success, so we
628      * don't abort until all headers have been parsed. */
629     if (http_code >= 400 && http_code < 600 &&
630         (http_code != 401 || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
631         (http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
632         end += strspn(end, SPACE_CHARS);
633         av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n", http_code, end);
634         return ff_http_averror(http_code, AVERROR(EIO));
635     }
636     return 0;
637 }
638
639 static int parse_location(HTTPContext *s, const char *p)
640 {
641     char redirected_location[MAX_URL_SIZE], *new_loc;
642     ff_make_absolute_url(redirected_location, sizeof(redirected_location),
643                          s->location, p);
644     new_loc = av_strdup(redirected_location);
645     if (!new_loc)
646         return AVERROR(ENOMEM);
647     av_free(s->location);
648     s->location = new_loc;
649     return 0;
650 }
651
652 /* "bytes $from-$to/$document_size" */
653 static void parse_content_range(URLContext *h, const char *p)
654 {
655     HTTPContext *s = h->priv_data;
656     const char *slash;
657
658     if (!strncmp(p, "bytes ", 6)) {
659         p     += 6;
660         s->off = strtoull(p, NULL, 10);
661         if ((slash = strchr(p, '/')) && strlen(slash) > 0)
662             s->filesize = strtoull(slash + 1, NULL, 10);
663     }
664     if (s->seekable == -1 && (!s->is_akamai || s->filesize != 2147483647))
665         h->is_streamed = 0; /* we _can_ in fact seek */
666 }
667
668 static int parse_content_encoding(URLContext *h, const char *p)
669 {
670     if (!av_strncasecmp(p, "gzip", 4) ||
671         !av_strncasecmp(p, "deflate", 7)) {
672 #if CONFIG_ZLIB
673         HTTPContext *s = h->priv_data;
674
675         s->compressed = 1;
676         inflateEnd(&s->inflate_stream);
677         if (inflateInit2(&s->inflate_stream, 32 + 15) != Z_OK) {
678             av_log(h, AV_LOG_WARNING, "Error during zlib initialisation: %s\n",
679                    s->inflate_stream.msg);
680             return AVERROR(ENOSYS);
681         }
682         if (zlibCompileFlags() & (1 << 17)) {
683             av_log(h, AV_LOG_WARNING,
684                    "Your zlib was compiled without gzip support.\n");
685             return AVERROR(ENOSYS);
686         }
687 #else
688         av_log(h, AV_LOG_WARNING,
689                "Compressed (%s) content, need zlib with gzip support\n", p);
690         return AVERROR(ENOSYS);
691 #endif /* CONFIG_ZLIB */
692     } else if (!av_strncasecmp(p, "identity", 8)) {
693         // The normal, no-encoding case (although servers shouldn't include
694         // the header at all if this is the case).
695     } else {
696         av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
697     }
698     return 0;
699 }
700
701 // Concat all Icy- header lines
702 static int parse_icy(HTTPContext *s, const char *tag, const char *p)
703 {
704     int len = 4 + strlen(p) + strlen(tag);
705     int is_first = !s->icy_metadata_headers;
706     int ret;
707
708     av_dict_set(&s->metadata, tag, p, 0);
709
710     if (s->icy_metadata_headers)
711         len += strlen(s->icy_metadata_headers);
712
713     if ((ret = av_reallocp(&s->icy_metadata_headers, len)) < 0)
714         return ret;
715
716     if (is_first)
717         *s->icy_metadata_headers = '\0';
718
719     av_strlcatf(s->icy_metadata_headers, len, "%s: %s\n", tag, p);
720
721     return 0;
722 }
723
724 static int parse_set_cookie_expiry_time(const char *exp_str, struct tm *buf)
725 {
726     char exp_buf[MAX_EXPIRY];
727     int i, j, exp_buf_len = MAX_EXPIRY-1;
728     char *expiry;
729
730     // strip off any punctuation or whitespace
731     for (i = 0, j = 0; exp_str[i] != '\0' && j < exp_buf_len; i++) {
732         if ((exp_str[i] >= '0' && exp_str[i] <= '9') ||
733             (exp_str[i] >= 'A' && exp_str[i] <= 'Z') ||
734             (exp_str[i] >= 'a' && exp_str[i] <= 'z')) {
735             exp_buf[j] = exp_str[i];
736             j++;
737         }
738     }
739     exp_buf[j] = '\0';
740     expiry = exp_buf;
741
742     // move the string beyond the day of week
743     while ((*expiry < '0' || *expiry > '9') && *expiry != '\0')
744         expiry++;
745
746     return av_small_strptime(expiry, "%d%b%Y%H%M%S", buf) ? 0 : AVERROR(EINVAL);
747 }
748
749 static int parse_set_cookie(const char *set_cookie, AVDictionary **dict)
750 {
751     char *param, *next_param, *cstr, *back;
752
753     if (!(cstr = av_strdup(set_cookie)))
754         return AVERROR(EINVAL);
755
756     // strip any trailing whitespace
757     back = &cstr[strlen(cstr)-1];
758     while (strchr(WHITESPACES, *back)) {
759         *back='\0';
760         back--;
761     }
762
763     next_param = cstr;
764     while ((param = av_strtok(next_param, ";", &next_param))) {
765         char *name, *value;
766         param += strspn(param, WHITESPACES);
767         if ((name = av_strtok(param, "=", &value))) {
768             if (av_dict_set(dict, name, value, 0) < 0) {
769                 av_free(cstr);
770                 return -1;
771             }
772         }
773     }
774
775     av_free(cstr);
776     return 0;
777 }
778
779 static int parse_cookie(HTTPContext *s, const char *p, AVDictionary **cookies)
780 {
781     AVDictionary *new_params = NULL;
782     AVDictionaryEntry *e, *cookie_entry;
783     char *eql, *name;
784
785     // ensure the cookie is parsable
786     if (parse_set_cookie(p, &new_params))
787         return -1;
788
789     // if there is no cookie value there is nothing to parse
790     cookie_entry = av_dict_get(new_params, "", NULL, AV_DICT_IGNORE_SUFFIX);
791     if (!cookie_entry || !cookie_entry->value) {
792         av_dict_free(&new_params);
793         return -1;
794     }
795
796     // ensure the cookie is not expired or older than an existing value
797     if ((e = av_dict_get(new_params, "expires", NULL, 0)) && e->value) {
798         struct tm new_tm = {0};
799         if (!parse_set_cookie_expiry_time(e->value, &new_tm)) {
800             AVDictionaryEntry *e2;
801
802             // if the cookie has already expired ignore it
803             if (av_timegm(&new_tm) < av_gettime() / 1000000) {
804                 av_dict_free(&new_params);
805                 return -1;
806             }
807
808             // only replace an older cookie with the same name
809             e2 = av_dict_get(*cookies, cookie_entry->key, NULL, 0);
810             if (e2 && e2->value) {
811                 AVDictionary *old_params = NULL;
812                 if (!parse_set_cookie(p, &old_params)) {
813                     e2 = av_dict_get(old_params, "expires", NULL, 0);
814                     if (e2 && e2->value) {
815                         struct tm old_tm = {0};
816                         if (!parse_set_cookie_expiry_time(e->value, &old_tm)) {
817                             if (av_timegm(&new_tm) < av_timegm(&old_tm)) {
818                                 av_dict_free(&new_params);
819                                 av_dict_free(&old_params);
820                                 return -1;
821                             }
822                         }
823                     }
824                 }
825                 av_dict_free(&old_params);
826             }
827         }
828     }
829     av_dict_free(&new_params);
830
831     // duplicate the cookie name (dict will dupe the value)
832     if (!(eql = strchr(p, '='))) return AVERROR(EINVAL);
833     if (!(name = av_strndup(p, eql - p))) return AVERROR(ENOMEM);
834
835     // add the cookie to the dictionary
836     av_dict_set(cookies, name, eql, AV_DICT_DONT_STRDUP_KEY);
837
838     return 0;
839 }
840
841 static int cookie_string(AVDictionary *dict, char **cookies)
842 {
843     AVDictionaryEntry *e = NULL;
844     int len = 1;
845
846     // determine how much memory is needed for the cookies string
847     while (e = av_dict_get(dict, "", e, AV_DICT_IGNORE_SUFFIX))
848         len += strlen(e->key) + strlen(e->value) + 1;
849
850     // reallocate the cookies
851     e = NULL;
852     if (*cookies) av_free(*cookies);
853     *cookies = av_malloc(len);
854     if (!*cookies) return AVERROR(ENOMEM);
855     *cookies[0] = '\0';
856
857     // write out the cookies
858     while (e = av_dict_get(dict, "", e, AV_DICT_IGNORE_SUFFIX))
859         av_strlcatf(*cookies, len, "%s%s\n", e->key, e->value);
860
861     return 0;
862 }
863
864 static int process_line(URLContext *h, char *line, int line_count,
865                         int *new_location)
866 {
867     HTTPContext *s = h->priv_data;
868     const char *auto_method =  h->flags & AVIO_FLAG_READ ? "POST" : "GET";
869     char *tag, *p, *end, *method, *resource, *version;
870     int ret;
871
872     /* end of header */
873     if (line[0] == '\0') {
874         s->end_header = 1;
875         return 0;
876     }
877
878     p = line;
879     if (line_count == 0) {
880         if (s->is_connected_server) {
881             // HTTP method
882             method = p;
883             while (*p && !av_isspace(*p))
884                 p++;
885             *(p++) = '\0';
886             av_log(h, AV_LOG_TRACE, "Received method: %s\n", method);
887             if (s->method) {
888                 if (av_strcasecmp(s->method, method)) {
889                     av_log(h, AV_LOG_ERROR, "Received and expected HTTP method do not match. (%s expected, %s received)\n",
890                            s->method, method);
891                     return ff_http_averror(400, AVERROR(EIO));
892                 }
893             } else {
894                 // use autodetected HTTP method to expect
895                 av_log(h, AV_LOG_TRACE, "Autodetected %s HTTP method\n", auto_method);
896                 if (av_strcasecmp(auto_method, method)) {
897                     av_log(h, AV_LOG_ERROR, "Received and autodetected HTTP method did not match "
898                            "(%s autodetected %s received)\n", auto_method, method);
899                     return ff_http_averror(400, AVERROR(EIO));
900                 }
901                 if (!(s->method = av_strdup(method)))
902                     return AVERROR(ENOMEM);
903             }
904
905             // HTTP resource
906             while (av_isspace(*p))
907                 p++;
908             resource = p;
909             while (!av_isspace(*p))
910                 p++;
911             *(p++) = '\0';
912             av_log(h, AV_LOG_TRACE, "Requested resource: %s\n", resource);
913             if (!(s->resource = av_strdup(resource)))
914                 return AVERROR(ENOMEM);
915
916             // HTTP version
917             while (av_isspace(*p))
918                 p++;
919             version = p;
920             while (*p && !av_isspace(*p))
921                 p++;
922             *p = '\0';
923             if (av_strncasecmp(version, "HTTP/", 5)) {
924                 av_log(h, AV_LOG_ERROR, "Malformed HTTP version string.\n");
925                 return ff_http_averror(400, AVERROR(EIO));
926             }
927             av_log(h, AV_LOG_TRACE, "HTTP version string: %s\n", version);
928         } else {
929             if (av_strncasecmp(p, "HTTP/1.0", 8) == 0)
930                 s->willclose = 1;
931             while (*p != '/' && *p != '\0')
932                 p++;
933             while (*p == '/')
934                 p++;
935             av_freep(&s->http_version);
936             s->http_version = av_strndup(p, 3);
937             while (!av_isspace(*p) && *p != '\0')
938                 p++;
939             while (av_isspace(*p))
940                 p++;
941             s->http_code = strtol(p, &end, 10);
942
943             av_log(h, AV_LOG_TRACE, "http_code=%d\n", s->http_code);
944
945             if ((ret = check_http_code(h, s->http_code, end)) < 0)
946                 return ret;
947         }
948     } else {
949         while (*p != '\0' && *p != ':')
950             p++;
951         if (*p != ':')
952             return 1;
953
954         *p  = '\0';
955         tag = line;
956         p++;
957         while (av_isspace(*p))
958             p++;
959         if (!av_strcasecmp(tag, "Location")) {
960             if ((ret = parse_location(s, p)) < 0)
961                 return ret;
962             *new_location = 1;
963         } else if (!av_strcasecmp(tag, "Content-Length") &&
964                    s->filesize == UINT64_MAX) {
965             s->filesize = strtoull(p, NULL, 10);
966         } else if (!av_strcasecmp(tag, "Content-Range")) {
967             parse_content_range(h, p);
968         } else if (!av_strcasecmp(tag, "Accept-Ranges") &&
969                    !strncmp(p, "bytes", 5) &&
970                    s->seekable == -1) {
971             h->is_streamed = 0;
972         } else if (!av_strcasecmp(tag, "Transfer-Encoding") &&
973                    !av_strncasecmp(p, "chunked", 7)) {
974             s->filesize  = UINT64_MAX;
975             s->chunksize = 0;
976         } else if (!av_strcasecmp(tag, "WWW-Authenticate")) {
977             ff_http_auth_handle_header(&s->auth_state, tag, p);
978         } else if (!av_strcasecmp(tag, "Authentication-Info")) {
979             ff_http_auth_handle_header(&s->auth_state, tag, p);
980         } else if (!av_strcasecmp(tag, "Proxy-Authenticate")) {
981             ff_http_auth_handle_header(&s->proxy_auth_state, tag, p);
982         } else if (!av_strcasecmp(tag, "Connection")) {
983             if (!strcmp(p, "close"))
984                 s->willclose = 1;
985         } else if (!av_strcasecmp(tag, "Server")) {
986             if (!av_strcasecmp(p, "AkamaiGHost")) {
987                 s->is_akamai = 1;
988             } else if (!av_strncasecmp(p, "MediaGateway", 12)) {
989                 s->is_mediagateway = 1;
990             }
991         } else if (!av_strcasecmp(tag, "Content-Type")) {
992             av_free(s->mime_type);
993             s->mime_type = av_strdup(p);
994         } else if (!av_strcasecmp(tag, "Set-Cookie")) {
995             if (parse_cookie(s, p, &s->cookie_dict))
996                 av_log(h, AV_LOG_WARNING, "Unable to parse '%s'\n", p);
997         } else if (!av_strcasecmp(tag, "Icy-MetaInt")) {
998             s->icy_metaint = strtoull(p, NULL, 10);
999         } else if (!av_strncasecmp(tag, "Icy-", 4)) {
1000             if ((ret = parse_icy(s, tag, p)) < 0)
1001                 return ret;
1002         } else if (!av_strcasecmp(tag, "Content-Encoding")) {
1003             if ((ret = parse_content_encoding(h, p)) < 0)
1004                 return ret;
1005         }
1006     }
1007     return 1;
1008 }
1009
1010 /**
1011  * Create a string containing cookie values for use as a HTTP cookie header
1012  * field value for a particular path and domain from the cookie values stored in
1013  * the HTTP protocol context. The cookie string is stored in *cookies.
1014  *
1015  * @return a negative value if an error condition occurred, 0 otherwise
1016  */
1017 static int get_cookies(HTTPContext *s, char **cookies, const char *path,
1018                        const char *domain)
1019 {
1020     // cookie strings will look like Set-Cookie header field values.  Multiple
1021     // Set-Cookie fields will result in multiple values delimited by a newline
1022     int ret = 0;
1023     char *cookie, *set_cookies = av_strdup(s->cookies), *next = set_cookies;
1024
1025     if (!set_cookies) return AVERROR(EINVAL);
1026
1027     // destroy any cookies in the dictionary.
1028     av_dict_free(&s->cookie_dict);
1029
1030     *cookies = NULL;
1031     while ((cookie = av_strtok(next, "\n", &next))) {
1032         AVDictionary *cookie_params = NULL;
1033         AVDictionaryEntry *cookie_entry, *e;
1034
1035         // store the cookie in a dict in case it is updated in the response
1036         if (parse_cookie(s, cookie, &s->cookie_dict))
1037             av_log(s, AV_LOG_WARNING, "Unable to parse '%s'\n", cookie);
1038
1039         // continue on to the next cookie if this one cannot be parsed
1040         if (parse_set_cookie(cookie, &cookie_params))
1041             continue;
1042
1043         // if the cookie has no value, skip it
1044         cookie_entry = av_dict_get(cookie_params, "", NULL, AV_DICT_IGNORE_SUFFIX);
1045         if (!cookie_entry || !cookie_entry->value) {
1046             av_dict_free(&cookie_params);
1047             continue;
1048         }
1049
1050         // if the cookie has expired, don't add it
1051         if ((e = av_dict_get(cookie_params, "expires", NULL, 0)) && e->value) {
1052             struct tm tm_buf = {0};
1053             if (!parse_set_cookie_expiry_time(e->value, &tm_buf)) {
1054                 if (av_timegm(&tm_buf) < av_gettime() / 1000000) {
1055                     av_dict_free(&cookie_params);
1056                     continue;
1057                 }
1058             }
1059         }
1060
1061         // if no domain in the cookie assume it appied to this request
1062         if ((e = av_dict_get(cookie_params, "domain", NULL, 0)) && e->value) {
1063             // find the offset comparison is on the min domain (b.com, not a.b.com)
1064             int domain_offset = strlen(domain) - strlen(e->value);
1065             if (domain_offset < 0) {
1066                 av_dict_free(&cookie_params);
1067                 continue;
1068             }
1069
1070             // match the cookie domain
1071             if (av_strcasecmp(&domain[domain_offset], e->value)) {
1072                 av_dict_free(&cookie_params);
1073                 continue;
1074             }
1075         }
1076
1077         // ensure this cookie matches the path
1078         e = av_dict_get(cookie_params, "path", NULL, 0);
1079         if (!e || av_strncasecmp(path, e->value, strlen(e->value))) {
1080             av_dict_free(&cookie_params);
1081             continue;
1082         }
1083
1084         // cookie parameters match, so copy the value
1085         if (!*cookies) {
1086             if (!(*cookies = av_asprintf("%s=%s", cookie_entry->key, cookie_entry->value))) {
1087                 ret = AVERROR(ENOMEM);
1088                 break;
1089             }
1090         } else {
1091             char *tmp = *cookies;
1092             size_t str_size = strlen(cookie_entry->key) + strlen(cookie_entry->value) + strlen(*cookies) + 4;
1093             if (!(*cookies = av_malloc(str_size))) {
1094                 ret = AVERROR(ENOMEM);
1095                 av_free(tmp);
1096                 break;
1097             }
1098             snprintf(*cookies, str_size, "%s; %s=%s", tmp, cookie_entry->key, cookie_entry->value);
1099             av_free(tmp);
1100         }
1101     }
1102
1103     av_free(set_cookies);
1104
1105     return ret;
1106 }
1107
1108 static inline int has_header(const char *str, const char *header)
1109 {
1110     /* header + 2 to skip over CRLF prefix. (make sure you have one!) */
1111     if (!str)
1112         return 0;
1113     return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
1114 }
1115
1116 static int http_read_header(URLContext *h, int *new_location)
1117 {
1118     HTTPContext *s = h->priv_data;
1119     char line[MAX_URL_SIZE];
1120     int err = 0;
1121
1122     s->chunksize = UINT64_MAX;
1123
1124     for (;;) {
1125         if ((err = http_get_line(s, line, sizeof(line))) < 0)
1126             return err;
1127
1128         av_log(h, AV_LOG_TRACE, "header='%s'\n", line);
1129
1130         err = process_line(h, line, s->line_count, new_location);
1131         if (err < 0)
1132             return err;
1133         if (err == 0)
1134             break;
1135         s->line_count++;
1136     }
1137
1138     if (s->seekable == -1 && s->is_mediagateway && s->filesize == 2000000000)
1139         h->is_streamed = 1; /* we can in fact _not_ seek */
1140
1141     // add any new cookies into the existing cookie string
1142     cookie_string(s->cookie_dict, &s->cookies);
1143     av_dict_free(&s->cookie_dict);
1144
1145     return err;
1146 }
1147
1148 static int http_connect(URLContext *h, const char *path, const char *local_path,
1149                         const char *hoststr, const char *auth,
1150                         const char *proxyauth, int *new_location)
1151 {
1152     HTTPContext *s = h->priv_data;
1153     int post, err;
1154     char headers[HTTP_HEADERS_SIZE] = "";
1155     char *authstr = NULL, *proxyauthstr = NULL;
1156     uint64_t off = s->off;
1157     int len = 0;
1158     const char *method;
1159     int send_expect_100 = 0;
1160     int ret;
1161
1162     /* send http header */
1163     post = h->flags & AVIO_FLAG_WRITE;
1164
1165     if (s->post_data) {
1166         /* force POST method and disable chunked encoding when
1167          * custom HTTP post data is set */
1168         post            = 1;
1169         s->chunked_post = 0;
1170     }
1171
1172     if (s->method)
1173         method = s->method;
1174     else
1175         method = post ? "POST" : "GET";
1176
1177     authstr      = ff_http_auth_create_response(&s->auth_state, auth,
1178                                                 local_path, method);
1179     proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
1180                                                 local_path, method);
1181     if (post && !s->post_data) {
1182         send_expect_100 = s->send_expect_100;
1183         /* The user has supplied authentication but we don't know the auth type,
1184          * send Expect: 100-continue to get the 401 response including the
1185          * WWW-Authenticate header, or an 100 continue if no auth actually
1186          * is needed. */
1187         if (auth && *auth &&
1188             s->auth_state.auth_type == HTTP_AUTH_NONE &&
1189             s->http_code != 401)
1190             send_expect_100 = 1;
1191     }
1192
1193 #if FF_API_HTTP_USER_AGENT
1194     if (strcmp(s->user_agent_deprecated, DEFAULT_USER_AGENT)) {
1195         av_log(s, AV_LOG_WARNING, "the user-agent option is deprecated, please use user_agent option\n");
1196         s->user_agent = av_strdup(s->user_agent_deprecated);
1197     }
1198 #endif
1199     /* set default headers if needed */
1200     if (!has_header(s->headers, "\r\nUser-Agent: "))
1201         len += av_strlcatf(headers + len, sizeof(headers) - len,
1202                            "User-Agent: %s\r\n", s->user_agent);
1203     if (s->referer) {
1204         /* set default headers if needed */
1205         if (!has_header(s->headers, "\r\nReferer: "))
1206             len += av_strlcatf(headers + len, sizeof(headers) - len,
1207                                "Referer: %s\r\n", s->referer);
1208     }
1209     if (!has_header(s->headers, "\r\nAccept: "))
1210         len += av_strlcpy(headers + len, "Accept: */*\r\n",
1211                           sizeof(headers) - len);
1212     // Note: we send this on purpose even when s->off is 0 when we're probing,
1213     // since it allows us to detect more reliably if a (non-conforming)
1214     // server supports seeking by analysing the reply headers.
1215     if (!has_header(s->headers, "\r\nRange: ") && !post && (s->off > 0 || s->end_off || s->seekable == -1)) {
1216         len += av_strlcatf(headers + len, sizeof(headers) - len,
1217                            "Range: bytes=%"PRIu64"-", s->off);
1218         if (s->end_off)
1219             len += av_strlcatf(headers + len, sizeof(headers) - len,
1220                                "%"PRId64, s->end_off - 1);
1221         len += av_strlcpy(headers + len, "\r\n",
1222                           sizeof(headers) - len);
1223     }
1224     if (send_expect_100 && !has_header(s->headers, "\r\nExpect: "))
1225         len += av_strlcatf(headers + len, sizeof(headers) - len,
1226                            "Expect: 100-continue\r\n");
1227
1228     if (!has_header(s->headers, "\r\nConnection: ")) {
1229         if (s->multiple_requests)
1230             len += av_strlcpy(headers + len, "Connection: keep-alive\r\n",
1231                               sizeof(headers) - len);
1232         else
1233             len += av_strlcpy(headers + len, "Connection: close\r\n",
1234                               sizeof(headers) - len);
1235     }
1236
1237     if (!has_header(s->headers, "\r\nHost: "))
1238         len += av_strlcatf(headers + len, sizeof(headers) - len,
1239                            "Host: %s\r\n", hoststr);
1240     if (!has_header(s->headers, "\r\nContent-Length: ") && s->post_data)
1241         len += av_strlcatf(headers + len, sizeof(headers) - len,
1242                            "Content-Length: %d\r\n", s->post_datalen);
1243
1244     if (!has_header(s->headers, "\r\nContent-Type: ") && s->content_type)
1245         len += av_strlcatf(headers + len, sizeof(headers) - len,
1246                            "Content-Type: %s\r\n", s->content_type);
1247     if (!has_header(s->headers, "\r\nCookie: ") && s->cookies) {
1248         char *cookies = NULL;
1249         if (!get_cookies(s, &cookies, path, hoststr) && cookies) {
1250             len += av_strlcatf(headers + len, sizeof(headers) - len,
1251                                "Cookie: %s\r\n", cookies);
1252             av_free(cookies);
1253         }
1254     }
1255     if (!has_header(s->headers, "\r\nIcy-MetaData: ") && s->icy)
1256         len += av_strlcatf(headers + len, sizeof(headers) - len,
1257                            "Icy-MetaData: %d\r\n", 1);
1258
1259     /* now add in custom headers */
1260     if (s->headers)
1261         av_strlcpy(headers + len, s->headers, sizeof(headers) - len);
1262
1263     ret = snprintf(s->buffer, sizeof(s->buffer),
1264              "%s %s HTTP/1.1\r\n"
1265              "%s"
1266              "%s"
1267              "%s"
1268              "%s%s"
1269              "\r\n",
1270              method,
1271              path,
1272              post && s->chunked_post ? "Transfer-Encoding: chunked\r\n" : "",
1273              headers,
1274              authstr ? authstr : "",
1275              proxyauthstr ? "Proxy-" : "", proxyauthstr ? proxyauthstr : "");
1276
1277     av_log(h, AV_LOG_DEBUG, "request: %s\n", s->buffer);
1278
1279     if (strlen(headers) + 1 == sizeof(headers) ||
1280         ret >= sizeof(s->buffer)) {
1281         av_log(h, AV_LOG_ERROR, "overlong headers\n");
1282         err = AVERROR(EINVAL);
1283         goto done;
1284     }
1285
1286
1287     if ((err = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
1288         goto done;
1289
1290     if (s->post_data)
1291         if ((err = ffurl_write(s->hd, s->post_data, s->post_datalen)) < 0)
1292             goto done;
1293
1294     /* init input buffer */
1295     s->buf_ptr          = s->buffer;
1296     s->buf_end          = s->buffer;
1297     s->line_count       = 0;
1298     s->off              = 0;
1299     s->icy_data_read    = 0;
1300     s->filesize         = UINT64_MAX;
1301     s->willclose        = 0;
1302     s->end_chunked_post = 0;
1303     s->end_header       = 0;
1304 #if CONFIG_ZLIB
1305     s->compressed       = 0;
1306 #endif
1307     if (post && !s->post_data && !send_expect_100) {
1308         /* Pretend that it did work. We didn't read any header yet, since
1309          * we've still to send the POST data, but the code calling this
1310          * function will check http_code after we return. */
1311         s->http_code = 200;
1312         err = 0;
1313         goto done;
1314     }
1315
1316     /* wait for header */
1317     err = http_read_header(h, new_location);
1318     if (err < 0)
1319         goto done;
1320
1321     if (*new_location)
1322         s->off = off;
1323
1324     err = (off == s->off) ? 0 : -1;
1325 done:
1326     av_freep(&authstr);
1327     av_freep(&proxyauthstr);
1328     return err;
1329 }
1330
1331 static int http_buf_read(URLContext *h, uint8_t *buf, int size)
1332 {
1333     HTTPContext *s = h->priv_data;
1334     int len;
1335
1336     if (s->chunksize != UINT64_MAX) {
1337         if (s->chunkend) {
1338             return AVERROR_EOF;
1339         }
1340         if (!s->chunksize) {
1341             char line[32];
1342             int err;
1343
1344             do {
1345                 if ((err = http_get_line(s, line, sizeof(line))) < 0)
1346                     return err;
1347             } while (!*line);    /* skip CR LF from last chunk */
1348
1349             s->chunksize = strtoull(line, NULL, 16);
1350
1351             av_log(h, AV_LOG_TRACE,
1352                    "Chunked encoding data size: %"PRIu64"\n",
1353                     s->chunksize);
1354
1355             if (!s->chunksize && s->multiple_requests) {
1356                 http_get_line(s, line, sizeof(line)); // read empty chunk
1357                 s->chunkend = 1;
1358                 return 0;
1359             }
1360             else if (!s->chunksize) {
1361                 av_log(h, AV_LOG_DEBUG, "Last chunk received, closing conn\n");
1362                 ffurl_closep(&s->hd);
1363                 return 0;
1364             }
1365             else if (s->chunksize == UINT64_MAX) {
1366                 av_log(h, AV_LOG_ERROR, "Invalid chunk size %"PRIu64"\n",
1367                        s->chunksize);
1368                 return AVERROR(EINVAL);
1369             }
1370         }
1371         size = FFMIN(size, s->chunksize);
1372     }
1373
1374     /* read bytes from input buffer first */
1375     len = s->buf_end - s->buf_ptr;
1376     if (len > 0) {
1377         if (len > size)
1378             len = size;
1379         memcpy(buf, s->buf_ptr, len);
1380         s->buf_ptr += len;
1381     } else {
1382         uint64_t target_end = s->end_off ? s->end_off : s->filesize;
1383         if ((!s->willclose || s->chunksize == UINT64_MAX) && s->off >= target_end)
1384             return AVERROR_EOF;
1385         len = ffurl_read(s->hd, buf, size);
1386         if (!len && (!s->willclose || s->chunksize == UINT64_MAX) && s->off < target_end) {
1387             av_log(h, AV_LOG_ERROR,
1388                    "Stream ends prematurely at %"PRIu64", should be %"PRIu64"\n",
1389                    s->off, target_end
1390                   );
1391             return AVERROR(EIO);
1392         }
1393     }
1394     if (len > 0) {
1395         s->off += len;
1396         if (s->chunksize > 0 && s->chunksize != UINT64_MAX) {
1397             av_assert0(s->chunksize >= len);
1398             s->chunksize -= len;
1399         }
1400     }
1401     return len;
1402 }
1403
1404 #if CONFIG_ZLIB
1405 #define DECOMPRESS_BUF_SIZE (256 * 1024)
1406 static int http_buf_read_compressed(URLContext *h, uint8_t *buf, int size)
1407 {
1408     HTTPContext *s = h->priv_data;
1409     int ret;
1410
1411     if (!s->inflate_buffer) {
1412         s->inflate_buffer = av_malloc(DECOMPRESS_BUF_SIZE);
1413         if (!s->inflate_buffer)
1414             return AVERROR(ENOMEM);
1415     }
1416
1417     if (s->inflate_stream.avail_in == 0) {
1418         int read = http_buf_read(h, s->inflate_buffer, DECOMPRESS_BUF_SIZE);
1419         if (read <= 0)
1420             return read;
1421         s->inflate_stream.next_in  = s->inflate_buffer;
1422         s->inflate_stream.avail_in = read;
1423     }
1424
1425     s->inflate_stream.avail_out = size;
1426     s->inflate_stream.next_out  = buf;
1427
1428     ret = inflate(&s->inflate_stream, Z_SYNC_FLUSH);
1429     if (ret != Z_OK && ret != Z_STREAM_END)
1430         av_log(h, AV_LOG_WARNING, "inflate return value: %d, %s\n",
1431                ret, s->inflate_stream.msg);
1432
1433     return size - s->inflate_stream.avail_out;
1434 }
1435 #endif /* CONFIG_ZLIB */
1436
1437 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect);
1438
1439 static int http_read_stream(URLContext *h, uint8_t *buf, int size)
1440 {
1441     HTTPContext *s = h->priv_data;
1442     int err, new_location, read_ret;
1443     int64_t seek_ret;
1444     int reconnect_delay = 0;
1445
1446     if (!s->hd)
1447         return AVERROR_EOF;
1448
1449     if (s->end_chunked_post && !s->end_header) {
1450         err = http_read_header(h, &new_location);
1451         if (err < 0)
1452             return err;
1453     }
1454
1455 #if CONFIG_ZLIB
1456     if (s->compressed)
1457         return http_buf_read_compressed(h, buf, size);
1458 #endif /* CONFIG_ZLIB */
1459     read_ret = http_buf_read(h, buf, size);
1460     while (read_ret < 0) {
1461         uint64_t target = h->is_streamed ? 0 : s->off;
1462
1463         if (read_ret == AVERROR_EXIT)
1464             break;
1465
1466         if (h->is_streamed && !s->reconnect_streamed)
1467             break;
1468
1469         if (!(s->reconnect && s->filesize > 0 && s->off < s->filesize) &&
1470             !(s->reconnect_at_eof && read_ret == AVERROR_EOF))
1471             break;
1472
1473         if (reconnect_delay > s->reconnect_delay_max)
1474             return AVERROR(EIO);
1475
1476         av_log(h, AV_LOG_WARNING, "Will reconnect at %"PRIu64" in %d second(s), error=%s.\n", s->off, reconnect_delay, av_err2str(read_ret));
1477         err = ff_network_sleep_interruptible(1000U*1000*reconnect_delay, &h->interrupt_callback);
1478         if (err != AVERROR(ETIMEDOUT))
1479             return err;
1480         reconnect_delay = 1 + 2*reconnect_delay;
1481         seek_ret = http_seek_internal(h, target, SEEK_SET, 1);
1482         if (seek_ret >= 0 && seek_ret != target) {
1483             av_log(h, AV_LOG_ERROR, "Failed to reconnect at %"PRIu64".\n", target);
1484             return read_ret;
1485         }
1486
1487         read_ret = http_buf_read(h, buf, size);
1488     }
1489
1490     return read_ret;
1491 }
1492
1493 // Like http_read_stream(), but no short reads.
1494 // Assumes partial reads are an error.
1495 static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
1496 {
1497     int pos = 0;
1498     while (pos < size) {
1499         int len = http_read_stream(h, buf + pos, size - pos);
1500         if (len < 0)
1501             return len;
1502         pos += len;
1503     }
1504     return pos;
1505 }
1506
1507 static void update_metadata(HTTPContext *s, char *data)
1508 {
1509     char *key;
1510     char *val;
1511     char *end;
1512     char *next = data;
1513
1514     while (*next) {
1515         key = next;
1516         val = strstr(key, "='");
1517         if (!val)
1518             break;
1519         end = strstr(val, "';");
1520         if (!end)
1521             break;
1522
1523         *val = '\0';
1524         *end = '\0';
1525         val += 2;
1526
1527         av_dict_set(&s->metadata, key, val, 0);
1528
1529         next = end + 2;
1530     }
1531 }
1532
1533 static int store_icy(URLContext *h, int size)
1534 {
1535     HTTPContext *s = h->priv_data;
1536     /* until next metadata packet */
1537     uint64_t remaining;
1538
1539     if (s->icy_metaint < s->icy_data_read)
1540         return AVERROR_INVALIDDATA;
1541     remaining = s->icy_metaint - s->icy_data_read;
1542
1543     if (!remaining) {
1544         /* The metadata packet is variable sized. It has a 1 byte header
1545          * which sets the length of the packet (divided by 16). If it's 0,
1546          * the metadata doesn't change. After the packet, icy_metaint bytes
1547          * of normal data follows. */
1548         uint8_t ch;
1549         int len = http_read_stream_all(h, &ch, 1);
1550         if (len < 0)
1551             return len;
1552         if (ch > 0) {
1553             char data[255 * 16 + 1];
1554             int ret;
1555             len = ch * 16;
1556             ret = http_read_stream_all(h, data, len);
1557             if (ret < 0)
1558                 return ret;
1559             data[len + 1] = 0;
1560             if ((ret = av_opt_set(s, "icy_metadata_packet", data, 0)) < 0)
1561                 return ret;
1562             update_metadata(s, data);
1563         }
1564         s->icy_data_read = 0;
1565         remaining        = s->icy_metaint;
1566     }
1567
1568     return FFMIN(size, remaining);
1569 }
1570
1571 static int http_read(URLContext *h, uint8_t *buf, int size)
1572 {
1573     HTTPContext *s = h->priv_data;
1574
1575     if (s->icy_metaint > 0) {
1576         size = store_icy(h, size);
1577         if (size < 0)
1578             return size;
1579     }
1580
1581     size = http_read_stream(h, buf, size);
1582     if (size > 0)
1583         s->icy_data_read += size;
1584     return size;
1585 }
1586
1587 /* used only when posting data */
1588 static int http_write(URLContext *h, const uint8_t *buf, int size)
1589 {
1590     char temp[11] = "";  /* 32-bit hex + CRLF + nul */
1591     int ret;
1592     char crlf[] = "\r\n";
1593     HTTPContext *s = h->priv_data;
1594
1595     if (!s->chunked_post) {
1596         /* non-chunked data is sent without any special encoding */
1597         return ffurl_write(s->hd, buf, size);
1598     }
1599
1600     /* silently ignore zero-size data since chunk encoding that would
1601      * signal EOF */
1602     if (size > 0) {
1603         /* upload data using chunked encoding */
1604         snprintf(temp, sizeof(temp), "%x\r\n", size);
1605
1606         if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 ||
1607             (ret = ffurl_write(s->hd, buf, size)) < 0          ||
1608             (ret = ffurl_write(s->hd, crlf, sizeof(crlf) - 1)) < 0)
1609             return ret;
1610     }
1611     return size;
1612 }
1613
1614 static int http_shutdown(URLContext *h, int flags)
1615 {
1616     int ret = 0;
1617     char footer[] = "0\r\n\r\n";
1618     HTTPContext *s = h->priv_data;
1619
1620     /* signal end of chunked encoding if used */
1621     if (((flags & AVIO_FLAG_WRITE) && s->chunked_post) ||
1622         ((flags & AVIO_FLAG_READ) && s->chunked_post && s->listen)) {
1623         ret = ffurl_write(s->hd, footer, sizeof(footer) - 1);
1624         ret = ret > 0 ? 0 : ret;
1625         s->end_chunked_post = 1;
1626     }
1627
1628     return ret;
1629 }
1630
1631 static int http_close(URLContext *h)
1632 {
1633     int ret = 0;
1634     HTTPContext *s = h->priv_data;
1635
1636 #if CONFIG_ZLIB
1637     inflateEnd(&s->inflate_stream);
1638     av_freep(&s->inflate_buffer);
1639 #endif /* CONFIG_ZLIB */
1640
1641     if (!s->end_chunked_post)
1642         /* Close the write direction by sending the end of chunked encoding. */
1643         ret = http_shutdown(h, h->flags);
1644
1645     if (s->hd)
1646         ffurl_closep(&s->hd);
1647     av_dict_free(&s->chained_options);
1648     return ret;
1649 }
1650
1651 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect)
1652 {
1653     HTTPContext *s = h->priv_data;
1654     URLContext *old_hd = s->hd;
1655     uint64_t old_off = s->off;
1656     uint8_t old_buf[BUFFER_SIZE];
1657     int old_buf_size, ret;
1658     AVDictionary *options = NULL;
1659
1660     if (whence == AVSEEK_SIZE)
1661         return s->filesize;
1662     else if (!force_reconnect &&
1663              ((whence == SEEK_CUR && off == 0) ||
1664               (whence == SEEK_SET && off == s->off)))
1665         return s->off;
1666     else if ((s->filesize == UINT64_MAX && whence == SEEK_END))
1667         return AVERROR(ENOSYS);
1668
1669     if (whence == SEEK_CUR)
1670         off += s->off;
1671     else if (whence == SEEK_END)
1672         off += s->filesize;
1673     else if (whence != SEEK_SET)
1674         return AVERROR(EINVAL);
1675     if (off < 0)
1676         return AVERROR(EINVAL);
1677     s->off = off;
1678
1679     if (s->off && h->is_streamed)
1680         return AVERROR(ENOSYS);
1681
1682     /* we save the old context in case the seek fails */
1683     old_buf_size = s->buf_end - s->buf_ptr;
1684     memcpy(old_buf, s->buf_ptr, old_buf_size);
1685     s->hd = NULL;
1686
1687     /* if it fails, continue on old connection */
1688     if ((ret = http_open_cnx(h, &options)) < 0) {
1689         av_dict_free(&options);
1690         memcpy(s->buffer, old_buf, old_buf_size);
1691         s->buf_ptr = s->buffer;
1692         s->buf_end = s->buffer + old_buf_size;
1693         s->hd      = old_hd;
1694         s->off     = old_off;
1695         return ret;
1696     }
1697     av_dict_free(&options);
1698     ffurl_close(old_hd);
1699     return off;
1700 }
1701
1702 static int64_t http_seek(URLContext *h, int64_t off, int whence)
1703 {
1704     return http_seek_internal(h, off, whence, 0);
1705 }
1706
1707 static int http_get_file_handle(URLContext *h)
1708 {
1709     HTTPContext *s = h->priv_data;
1710     return ffurl_get_file_handle(s->hd);
1711 }
1712
1713 static int http_get_short_seek(URLContext *h)
1714 {
1715     HTTPContext *s = h->priv_data;
1716     return ffurl_get_short_seek(s->hd);
1717 }
1718
1719 #define HTTP_CLASS(flavor)                          \
1720 static const AVClass flavor ## _context_class = {   \
1721     .class_name = # flavor,                         \
1722     .item_name  = av_default_item_name,             \
1723     .option     = options,                          \
1724     .version    = LIBAVUTIL_VERSION_INT,            \
1725 }
1726
1727 #if CONFIG_HTTP_PROTOCOL
1728 HTTP_CLASS(http);
1729
1730 const URLProtocol ff_http_protocol = {
1731     .name                = "http",
1732     .url_open2           = http_open,
1733     .url_accept          = http_accept,
1734     .url_handshake       = http_handshake,
1735     .url_read            = http_read,
1736     .url_write           = http_write,
1737     .url_seek            = http_seek,
1738     .url_close           = http_close,
1739     .url_get_file_handle = http_get_file_handle,
1740     .url_get_short_seek  = http_get_short_seek,
1741     .url_shutdown        = http_shutdown,
1742     .priv_data_size      = sizeof(HTTPContext),
1743     .priv_data_class     = &http_context_class,
1744     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1745     .default_whitelist   = "http,https,tls,rtp,tcp,udp,crypto,httpproxy"
1746 };
1747 #endif /* CONFIG_HTTP_PROTOCOL */
1748
1749 #if CONFIG_HTTPS_PROTOCOL
1750 HTTP_CLASS(https);
1751
1752 const URLProtocol ff_https_protocol = {
1753     .name                = "https",
1754     .url_open2           = http_open,
1755     .url_read            = http_read,
1756     .url_write           = http_write,
1757     .url_seek            = http_seek,
1758     .url_close           = http_close,
1759     .url_get_file_handle = http_get_file_handle,
1760     .url_get_short_seek  = http_get_short_seek,
1761     .url_shutdown        = http_shutdown,
1762     .priv_data_size      = sizeof(HTTPContext),
1763     .priv_data_class     = &https_context_class,
1764     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1765     .default_whitelist   = "http,https,tls,rtp,tcp,udp,crypto,httpproxy"
1766 };
1767 #endif /* CONFIG_HTTPS_PROTOCOL */
1768
1769 #if CONFIG_HTTPPROXY_PROTOCOL
1770 static int http_proxy_close(URLContext *h)
1771 {
1772     HTTPContext *s = h->priv_data;
1773     if (s->hd)
1774         ffurl_closep(&s->hd);
1775     return 0;
1776 }
1777
1778 static int http_proxy_open(URLContext *h, const char *uri, int flags)
1779 {
1780     HTTPContext *s = h->priv_data;
1781     char hostname[1024], hoststr[1024];
1782     char auth[1024], pathbuf[1024], *path;
1783     char lower_url[100];
1784     int port, ret = 0, attempts = 0;
1785     HTTPAuthType cur_auth_type;
1786     char *authstr;
1787     int new_loc;
1788
1789     if( s->seekable == 1 )
1790         h->is_streamed = 0;
1791     else
1792         h->is_streamed = 1;
1793
1794     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
1795                  pathbuf, sizeof(pathbuf), uri);
1796     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
1797     path = pathbuf;
1798     if (*path == '/')
1799         path++;
1800
1801     ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
1802                 NULL);
1803 redo:
1804     ret = ffurl_open_whitelist(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
1805                                &h->interrupt_callback, NULL,
1806                                h->protocol_whitelist, h->protocol_blacklist, h);
1807     if (ret < 0)
1808         return ret;
1809
1810     authstr = ff_http_auth_create_response(&s->proxy_auth_state, auth,
1811                                            path, "CONNECT");
1812     snprintf(s->buffer, sizeof(s->buffer),
1813              "CONNECT %s HTTP/1.1\r\n"
1814              "Host: %s\r\n"
1815              "Connection: close\r\n"
1816              "%s%s"
1817              "\r\n",
1818              path,
1819              hoststr,
1820              authstr ? "Proxy-" : "", authstr ? authstr : "");
1821     av_freep(&authstr);
1822
1823     if ((ret = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
1824         goto fail;
1825
1826     s->buf_ptr    = s->buffer;
1827     s->buf_end    = s->buffer;
1828     s->line_count = 0;
1829     s->filesize   = UINT64_MAX;
1830     cur_auth_type = s->proxy_auth_state.auth_type;
1831
1832     /* Note: This uses buffering, potentially reading more than the
1833      * HTTP header. If tunneling a protocol where the server starts
1834      * the conversation, we might buffer part of that here, too.
1835      * Reading that requires using the proper ffurl_read() function
1836      * on this URLContext, not using the fd directly (as the tls
1837      * protocol does). This shouldn't be an issue for tls though,
1838      * since the client starts the conversation there, so there
1839      * is no extra data that we might buffer up here.
1840      */
1841     ret = http_read_header(h, &new_loc);
1842     if (ret < 0)
1843         goto fail;
1844
1845     attempts++;
1846     if (s->http_code == 407 &&
1847         (cur_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
1848         s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2) {
1849         ffurl_closep(&s->hd);
1850         goto redo;
1851     }
1852
1853     if (s->http_code < 400)
1854         return 0;
1855     ret = ff_http_averror(s->http_code, AVERROR(EIO));
1856
1857 fail:
1858     http_proxy_close(h);
1859     return ret;
1860 }
1861
1862 static int http_proxy_write(URLContext *h, const uint8_t *buf, int size)
1863 {
1864     HTTPContext *s = h->priv_data;
1865     return ffurl_write(s->hd, buf, size);
1866 }
1867
1868 const URLProtocol ff_httpproxy_protocol = {
1869     .name                = "httpproxy",
1870     .url_open            = http_proxy_open,
1871     .url_read            = http_buf_read,
1872     .url_write           = http_proxy_write,
1873     .url_close           = http_proxy_close,
1874     .url_get_file_handle = http_get_file_handle,
1875     .priv_data_size      = sizeof(HTTPContext),
1876     .flags               = URL_PROTOCOL_FLAG_NETWORK,
1877 };
1878 #endif /* CONFIG_HTTPPROXY_PROTOCOL */