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