]> git.sesse.net Git - ffmpeg/blob - libavformat/http.c
isom: add Radius DV YUV FourCCs
[ffmpeg] / libavformat / http.c
1 /*
2  * HTTP protocol for avconv client
3  * Copyright (c) 2000, 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav 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  * Libav 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 Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/avstring.h"
23 #include "avformat.h"
24 #include "internal.h"
25 #include "network.h"
26 #include "http.h"
27 #include "os_support.h"
28 #include "httpauth.h"
29 #include "url.h"
30 #include "libavutil/opt.h"
31
32 #if CONFIG_ZLIB
33 #include <zlib.h>
34 #endif
35
36 /* XXX: POST protocol is not completely implemented because avconv uses
37    only a subset of it. */
38
39 /* The IO buffer size is unrelated to the max URL size in itself, but needs
40  * to be large enough to fit the full request headers (including long
41  * path names).
42  */
43 #define BUFFER_SIZE MAX_URL_SIZE
44 #define MAX_REDIRECTS 8
45
46 typedef struct {
47     const AVClass *class;
48     URLContext *hd;
49     unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
50     int line_count;
51     int http_code;
52     int64_t chunksize;      /**< Used if "Transfer-Encoding: chunked" otherwise -1. */
53     int64_t off, filesize;
54     char *location;
55     HTTPAuthState auth_state;
56     HTTPAuthState proxy_auth_state;
57     char *headers;
58     int willclose;          /**< Set if the server correctly handles Connection: close and will close the connection after feeding us the content. */
59     int chunked_post;
60     int end_chunked_post;   /**< A flag which indicates if the end of chunked encoding has been sent. */
61     int end_header;         /**< A flag which indicates we have finished to read POST reply. */
62     int multiple_requests;  /**< A flag which indicates if we use persistent connections. */
63     uint8_t *post_data;
64     int post_datalen;
65 #if CONFIG_ZLIB
66     int compressed;
67     z_stream inflate_stream;
68     uint8_t *inflate_buffer;
69 #endif
70     AVDictionary *chained_options;
71     int send_expect_100;
72 } HTTPContext;
73
74 #define OFFSET(x) offsetof(HTTPContext, x)
75 #define D AV_OPT_FLAG_DECODING_PARAM
76 #define E AV_OPT_FLAG_ENCODING_PARAM
77 static const AVOption options[] = {
78 {"chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_INT, {.i64 = 1}, 0, 1, E },
79 {"headers", "custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
80 {"multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, D|E },
81 {"post_data", "custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D|E },
82 {"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" },
83 {"none", "No auth method set, autodetect", 0, AV_OPT_TYPE_CONST, {.i64 = HTTP_AUTH_NONE}, 0, 0, D|E, "auth_type" },
84 {"basic", "HTTP basic authentication", 0, AV_OPT_TYPE_CONST, {.i64 = HTTP_AUTH_BASIC}, 0, 0, D|E, "auth_type" },
85 {"send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1, E },
86 {"location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { 0 }, 0, 0, D|E },
87 {NULL}
88 };
89 #define HTTP_CLASS(flavor)\
90 static const AVClass flavor ## _context_class = {\
91     .class_name     = #flavor,\
92     .item_name      = av_default_item_name,\
93     .option         = options,\
94     .version        = LIBAVUTIL_VERSION_INT,\
95 }
96
97 HTTP_CLASS(http);
98 HTTP_CLASS(https);
99
100 static int http_connect(URLContext *h, const char *path, const char *local_path,
101                         const char *hoststr, const char *auth,
102                         const char *proxyauth, int *new_location);
103
104 void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
105 {
106     memcpy(&((HTTPContext*)dest->priv_data)->auth_state,
107            &((HTTPContext*)src->priv_data)->auth_state, sizeof(HTTPAuthState));
108     memcpy(&((HTTPContext*)dest->priv_data)->proxy_auth_state,
109            &((HTTPContext*)src->priv_data)->proxy_auth_state,
110            sizeof(HTTPAuthState));
111 }
112
113 /* return non zero if error */
114 static int http_open_cnx(URLContext *h, AVDictionary **options)
115 {
116     const char *path, *proxy_path, *lower_proto = "tcp", *local_path;
117     char hostname[1024], hoststr[1024], proto[10];
118     char auth[1024], proxyauth[1024] = "";
119     char path1[MAX_URL_SIZE];
120     char buf[1024], urlbuf[MAX_URL_SIZE];
121     int port, use_proxy, err, location_changed = 0, redirects = 0, attempts = 0;
122     HTTPAuthType cur_auth_type, cur_proxy_auth_type;
123     HTTPContext *s = h->priv_data;
124
125     /* fill the dest addr */
126  redo:
127     /* needed in any case to build the host string */
128     av_url_split(proto, sizeof(proto), auth, sizeof(auth),
129                  hostname, sizeof(hostname), &port,
130                  path1, sizeof(path1), s->location);
131     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
132
133     proxy_path = getenv("http_proxy");
134     use_proxy = !ff_http_match_no_proxy(getenv("no_proxy"), hostname) &&
135                 proxy_path != NULL && av_strstart(proxy_path, "http://", NULL);
136
137     if (!strcmp(proto, "https")) {
138         lower_proto = "tls";
139         use_proxy = 0;
140         if (port < 0)
141             port = 443;
142     }
143     if (port < 0)
144         port = 80;
145
146     if (path1[0] == '\0')
147         path = "/";
148     else
149         path = path1;
150     local_path = path;
151     if (use_proxy) {
152         /* Reassemble the request URL without auth string - we don't
153          * want to leak the auth to the proxy. */
154         ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
155                     path1);
156         path = urlbuf;
157         av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
158                      hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
159     }
160
161     ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
162
163     if (!s->hd) {
164         err = ffurl_open(&s->hd, buf, AVIO_FLAG_READ_WRITE,
165                          &h->interrupt_callback, options);
166         if (err < 0)
167             goto fail;
168     }
169
170     cur_auth_type = s->auth_state.auth_type;
171     cur_proxy_auth_type = s->auth_state.auth_type;
172     if (http_connect(h, path, local_path, hoststr, auth, proxyauth, &location_changed) < 0)
173         goto fail;
174     attempts++;
175     if (s->http_code == 401) {
176         if ((cur_auth_type == HTTP_AUTH_NONE || s->auth_state.stale) &&
177             s->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
178             ffurl_close(s->hd);
179             s->hd = NULL;
180             goto redo;
181         } else
182             goto fail;
183     }
184     if (s->http_code == 407) {
185         if ((cur_proxy_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
186             s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
187             ffurl_close(s->hd);
188             s->hd = NULL;
189             goto redo;
190         } else
191             goto fail;
192     }
193     if ((s->http_code == 301 || s->http_code == 302 || s->http_code == 303 || s->http_code == 307)
194         && location_changed == 1) {
195         /* url moved, get next */
196         ffurl_close(s->hd);
197         s->hd = NULL;
198         if (redirects++ >= MAX_REDIRECTS)
199             return AVERROR(EIO);
200         /* Restart the authentication process with the new target, which
201          * might use a different auth mechanism. */
202         memset(&s->auth_state, 0, sizeof(s->auth_state));
203         attempts = 0;
204         location_changed = 0;
205         goto redo;
206     }
207     return 0;
208  fail:
209     if (s->hd)
210         ffurl_close(s->hd);
211     s->hd = NULL;
212     return AVERROR(EIO);
213 }
214
215 int ff_http_do_new_request(URLContext *h, const char *uri)
216 {
217     HTTPContext *s = h->priv_data;
218     AVDictionary *options = NULL;
219     int ret;
220
221     s->off = 0;
222     av_free(s->location);
223     s->location = av_strdup(uri);
224     if (!s->location)
225         return AVERROR(ENOMEM);
226
227     av_dict_copy(&options, s->chained_options, 0);
228     ret = http_open_cnx(h, &options);
229     av_dict_free(&options);
230     return ret;
231 }
232
233 static int http_open(URLContext *h, const char *uri, int flags,
234                      AVDictionary **options)
235 {
236     HTTPContext *s = h->priv_data;
237     int ret;
238
239     h->is_streamed = 1;
240
241     s->filesize = -1;
242     s->location = av_strdup(uri);
243     if (!s->location)
244         return AVERROR(ENOMEM);
245     if (options)
246         av_dict_copy(&s->chained_options, *options, 0);
247
248     if (s->headers) {
249         int len = strlen(s->headers);
250         if (len < 2 || strcmp("\r\n", s->headers + len - 2))
251             av_log(h, AV_LOG_WARNING, "No trailing CRLF found in HTTP header.\n");
252     }
253
254     ret = http_open_cnx(h, options);
255     if (ret < 0)
256         av_dict_free(&s->chained_options);
257     return ret;
258 }
259 static int http_getc(HTTPContext *s)
260 {
261     int len;
262     if (s->buf_ptr >= s->buf_end) {
263         len = ffurl_read(s->hd, s->buffer, BUFFER_SIZE);
264         if (len < 0) {
265             return len;
266         } else if (len == 0) {
267             return -1;
268         } else {
269             s->buf_ptr = s->buffer;
270             s->buf_end = s->buffer + len;
271         }
272     }
273     return *s->buf_ptr++;
274 }
275
276 static int http_get_line(HTTPContext *s, char *line, int line_size)
277 {
278     int ch;
279     char *q;
280
281     q = line;
282     for(;;) {
283         ch = http_getc(s);
284         if (ch < 0)
285             return ch;
286         if (ch == '\n') {
287             /* process line */
288             if (q > line && q[-1] == '\r')
289                 q--;
290             *q = '\0';
291
292             return 0;
293         } else {
294             if ((q - line) < line_size - 1)
295                 *q++ = ch;
296         }
297     }
298 }
299
300 static int process_line(URLContext *h, char *line, int line_count,
301                         int *new_location)
302 {
303     HTTPContext *s = h->priv_data;
304     char *tag, *p, *end;
305
306     /* end of header */
307     if (line[0] == '\0') {
308         s->end_header = 1;
309         return 0;
310     }
311
312     p = line;
313     if (line_count == 0) {
314         while (!av_isspace(*p) && *p != '\0')
315             p++;
316         while (av_isspace(*p))
317             p++;
318         s->http_code = strtol(p, &end, 10);
319
320         av_dlog(NULL, "http_code=%d\n", s->http_code);
321
322         /* error codes are 4xx and 5xx, but regard 401 as a success, so we
323          * don't abort until all headers have been parsed. */
324         if (s->http_code >= 400 && s->http_code < 600 && (s->http_code != 401
325             || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
326             (s->http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
327             end += strspn(end, SPACE_CHARS);
328             av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n",
329                    s->http_code, end);
330             return -1;
331         }
332     } else {
333         while (*p != '\0' && *p != ':')
334             p++;
335         if (*p != ':')
336             return 1;
337
338         *p = '\0';
339         tag = line;
340         p++;
341         while (av_isspace(*p))
342             p++;
343         if (!av_strcasecmp(tag, "Location")) {
344             char redirected_location[MAX_URL_SIZE], *new_loc;
345             ff_make_absolute_url(redirected_location, sizeof(redirected_location),
346                                  s->location, p);
347             new_loc = av_strdup(redirected_location);
348             if (!new_loc)
349                 return AVERROR(ENOMEM);
350             av_free(s->location);
351             s->location = new_loc;
352             *new_location = 1;
353         } else if (!av_strcasecmp (tag, "Content-Length") && s->filesize == -1) {
354             s->filesize = strtoll(p, NULL, 10);
355         } else if (!av_strcasecmp (tag, "Content-Range")) {
356             /* "bytes $from-$to/$document_size" */
357             const char *slash;
358             if (!strncmp (p, "bytes ", 6)) {
359                 p += 6;
360                 s->off = strtoll(p, NULL, 10);
361                 if ((slash = strchr(p, '/')) && strlen(slash) > 0)
362                     s->filesize = strtoll(slash+1, NULL, 10);
363             }
364             h->is_streamed = 0; /* we _can_ in fact seek */
365         } else if (!av_strcasecmp(tag, "Accept-Ranges") && !strncmp(p, "bytes", 5)) {
366             h->is_streamed = 0;
367         } else if (!av_strcasecmp (tag, "Transfer-Encoding") && !av_strncasecmp(p, "chunked", 7)) {
368             s->filesize = -1;
369             s->chunksize = 0;
370         } else if (!av_strcasecmp (tag, "WWW-Authenticate")) {
371             ff_http_auth_handle_header(&s->auth_state, tag, p);
372         } else if (!av_strcasecmp (tag, "Authentication-Info")) {
373             ff_http_auth_handle_header(&s->auth_state, tag, p);
374         } else if (!av_strcasecmp (tag, "Proxy-Authenticate")) {
375             ff_http_auth_handle_header(&s->proxy_auth_state, tag, p);
376         } else if (!av_strcasecmp (tag, "Connection")) {
377             if (!strcmp(p, "close"))
378                 s->willclose = 1;
379         } else if (!av_strcasecmp (tag, "Content-Encoding")) {
380             if (!av_strncasecmp(p, "gzip", 4) || !av_strncasecmp(p, "deflate", 7)) {
381 #if CONFIG_ZLIB
382                 s->compressed = 1;
383                 inflateEnd(&s->inflate_stream);
384                 if (inflateInit2(&s->inflate_stream, 32 + 15) != Z_OK) {
385                     av_log(h, AV_LOG_WARNING, "Error during zlib initialisation: %s\n",
386                            s->inflate_stream.msg);
387                     return AVERROR(ENOSYS);
388                 }
389                 if (zlibCompileFlags() & (1 << 17)) {
390                     av_log(h, AV_LOG_WARNING, "Your zlib was compiled without gzip support.\n");
391                     return AVERROR(ENOSYS);
392                 }
393 #else
394                 av_log(h, AV_LOG_WARNING, "Compressed (%s) content, need zlib with gzip support\n", p);
395                 return AVERROR(ENOSYS);
396 #endif
397             } else if (!av_strncasecmp(p, "identity", 8)) {
398                 // The normal, no-encoding case (although servers shouldn't include
399                 // the header at all if this is the case).
400             } else {
401                 av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
402                 return AVERROR(ENOSYS);
403             }
404         }
405     }
406     return 1;
407 }
408
409 static inline int has_header(const char *str, const char *header)
410 {
411     /* header + 2 to skip over CRLF prefix. (make sure you have one!) */
412     if (!str)
413         return 0;
414     return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
415 }
416
417 static int http_read_header(URLContext *h, int *new_location)
418 {
419     HTTPContext *s = h->priv_data;
420     char line[MAX_URL_SIZE];
421     int err = 0;
422
423     s->chunksize = -1;
424
425     for (;;) {
426         if ((err = http_get_line(s, line, sizeof(line))) < 0)
427             return err;
428
429         av_dlog(NULL, "header='%s'\n", line);
430
431         err = process_line(h, line, s->line_count, new_location);
432         if (err < 0)
433             return err;
434         if (err == 0)
435             break;
436         s->line_count++;
437     }
438
439     return err;
440 }
441
442 static int http_connect(URLContext *h, const char *path, const char *local_path,
443                         const char *hoststr, const char *auth,
444                         const char *proxyauth, int *new_location)
445 {
446     HTTPContext *s = h->priv_data;
447     int post, err;
448     char headers[1024] = "";
449     char *authstr = NULL, *proxyauthstr = NULL;
450     int64_t off = s->off;
451     int len = 0;
452     const char *method;
453     int send_expect_100 = 0;
454
455
456     /* send http header */
457     post = h->flags & AVIO_FLAG_WRITE;
458
459     if (s->post_data) {
460         /* force POST method and disable chunked encoding when
461          * custom HTTP post data is set */
462         post = 1;
463         s->chunked_post = 0;
464     }
465
466     method = post ? "POST" : "GET";
467     authstr = ff_http_auth_create_response(&s->auth_state, auth, local_path,
468                                            method);
469     proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
470                                                 local_path, method);
471     if (post && !s->post_data) {
472         send_expect_100 = s->send_expect_100;
473         /* The user has supplied authentication but we don't know the auth type,
474          * send Expect: 100-continue to get the 401 response including the
475          * WWW-Authenticate header, or an 100 continue if no auth actually
476          * is needed. */
477         if (auth && *auth &&
478             s->auth_state.auth_type == HTTP_AUTH_NONE &&
479             s->http_code != 401)
480             send_expect_100 = 1;
481     }
482
483     /* set default headers if needed */
484     if (!has_header(s->headers, "\r\nUser-Agent: "))
485        len += av_strlcatf(headers + len, sizeof(headers) - len,
486                           "User-Agent: %s\r\n", LIBAVFORMAT_IDENT);
487     if (!has_header(s->headers, "\r\nAccept: "))
488         len += av_strlcpy(headers + len, "Accept: */*\r\n",
489                           sizeof(headers) - len);
490     if (!has_header(s->headers, "\r\nRange: ") && !post)
491         len += av_strlcatf(headers + len, sizeof(headers) - len,
492                            "Range: bytes=%"PRId64"-\r\n", s->off);
493     if (send_expect_100 && !has_header(s->headers, "\r\nExpect: "))
494         len += av_strlcatf(headers + len, sizeof(headers) - len,
495                            "Expect: 100-continue\r\n");
496
497     if (!has_header(s->headers, "\r\nConnection: ")) {
498         if (s->multiple_requests) {
499             len += av_strlcpy(headers + len, "Connection: keep-alive\r\n",
500                               sizeof(headers) - len);
501         } else {
502             len += av_strlcpy(headers + len, "Connection: close\r\n",
503                               sizeof(headers) - len);
504         }
505     }
506
507     if (!has_header(s->headers, "\r\nHost: "))
508         len += av_strlcatf(headers + len, sizeof(headers) - len,
509                            "Host: %s\r\n", hoststr);
510     if (!has_header(s->headers, "\r\nContent-Length: ") && s->post_data)
511         len += av_strlcatf(headers + len, sizeof(headers) - len,
512                            "Content-Length: %d\r\n", s->post_datalen);
513
514     /* now add in custom headers */
515     if (s->headers)
516         av_strlcpy(headers + len, s->headers, sizeof(headers) - len);
517
518     snprintf(s->buffer, sizeof(s->buffer),
519              "%s %s HTTP/1.1\r\n"
520              "%s"
521              "%s"
522              "%s"
523              "%s%s"
524              "\r\n",
525              method,
526              path,
527              post && s->chunked_post ? "Transfer-Encoding: chunked\r\n" : "",
528              headers,
529              authstr ? authstr : "",
530              proxyauthstr ? "Proxy-" : "", proxyauthstr ? proxyauthstr : "");
531
532     av_freep(&authstr);
533     av_freep(&proxyauthstr);
534     if ((err = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
535         return err;
536
537     if (s->post_data)
538         if ((err = ffurl_write(s->hd, s->post_data, s->post_datalen)) < 0)
539             return err;
540
541     /* init input buffer */
542     s->buf_ptr = s->buffer;
543     s->buf_end = s->buffer;
544     s->line_count = 0;
545     s->off = 0;
546     s->filesize = -1;
547     s->willclose = 0;
548     s->end_chunked_post = 0;
549     s->end_header = 0;
550     if (post && !s->post_data && !send_expect_100) {
551         /* Pretend that it did work. We didn't read any header yet, since
552          * we've still to send the POST data, but the code calling this
553          * function will check http_code after we return. */
554         s->http_code = 200;
555         return 0;
556     }
557
558     /* wait for header */
559     err = http_read_header(h, new_location);
560     if (err < 0)
561         return err;
562
563     return (off == s->off) ? 0 : -1;
564 }
565
566
567 static int http_buf_read(URLContext *h, uint8_t *buf, int size)
568 {
569     HTTPContext *s = h->priv_data;
570     int len;
571     /* read bytes from input buffer first */
572     len = s->buf_end - s->buf_ptr;
573     if (len > 0) {
574         if (len > size)
575             len = size;
576         memcpy(buf, s->buf_ptr, len);
577         s->buf_ptr += len;
578     } else {
579         if (!s->willclose && s->filesize >= 0 && s->off >= s->filesize)
580             return AVERROR_EOF;
581         len = ffurl_read(s->hd, buf, size);
582     }
583     if (len > 0) {
584         s->off += len;
585         if (s->chunksize > 0)
586             s->chunksize -= len;
587     }
588     return len;
589 }
590
591 #if CONFIG_ZLIB
592 #define DECOMPRESS_BUF_SIZE (256 * 1024)
593 static int http_buf_read_compressed(URLContext *h, uint8_t *buf, int size)
594 {
595     HTTPContext *s = h->priv_data;
596     int ret;
597
598     if (!s->inflate_buffer) {
599         s->inflate_buffer = av_malloc(DECOMPRESS_BUF_SIZE);
600         if (!s->inflate_buffer)
601             return AVERROR(ENOMEM);
602     }
603
604     if (s->inflate_stream.avail_in == 0) {
605         int read = http_buf_read(h, s->inflate_buffer, DECOMPRESS_BUF_SIZE);
606         if (read <= 0)
607             return read;
608         s->inflate_stream.next_in  = s->inflate_buffer;
609         s->inflate_stream.avail_in = read;
610     }
611
612     s->inflate_stream.avail_out = size;
613     s->inflate_stream.next_out  = buf;
614
615     ret = inflate(&s->inflate_stream, Z_SYNC_FLUSH);
616     if (ret != Z_OK && ret != Z_STREAM_END)
617         av_log(h, AV_LOG_WARNING, "inflate return value: %d, %s\n", ret, s->inflate_stream.msg);
618
619     return size - s->inflate_stream.avail_out;
620 }
621 #endif
622
623 static int http_read(URLContext *h, uint8_t *buf, int size)
624 {
625     HTTPContext *s = h->priv_data;
626     int err, new_location;
627
628     if (!s->hd)
629         return AVERROR_EOF;
630
631     if (s->end_chunked_post && !s->end_header) {
632         err = http_read_header(h, &new_location);
633         if (err < 0)
634             return err;
635     }
636
637     if (s->chunksize >= 0) {
638         if (!s->chunksize) {
639             char line[32];
640
641             for(;;) {
642                 do {
643                     if ((err = http_get_line(s, line, sizeof(line))) < 0)
644                         return err;
645                 } while (!*line);    /* skip CR LF from last chunk */
646
647                 s->chunksize = strtoll(line, NULL, 16);
648
649                 av_dlog(NULL, "Chunked encoding data size: %"PRId64"'\n", s->chunksize);
650
651                 if (!s->chunksize)
652                     return 0;
653                 break;
654             }
655         }
656         size = FFMIN(size, s->chunksize);
657     }
658 #if CONFIG_ZLIB
659     if (s->compressed)
660         return http_buf_read_compressed(h, buf, size);
661 #endif
662     return http_buf_read(h, buf, size);
663 }
664
665 /* used only when posting data */
666 static int http_write(URLContext *h, const uint8_t *buf, int size)
667 {
668     char temp[11] = "";  /* 32-bit hex + CRLF + nul */
669     int ret;
670     char crlf[] = "\r\n";
671     HTTPContext *s = h->priv_data;
672
673     if (!s->chunked_post) {
674         /* non-chunked data is sent without any special encoding */
675         return ffurl_write(s->hd, buf, size);
676     }
677
678     /* silently ignore zero-size data since chunk encoding that would
679      * signal EOF */
680     if (size > 0) {
681         /* upload data using chunked encoding */
682         snprintf(temp, sizeof(temp), "%x\r\n", size);
683
684         if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 ||
685             (ret = ffurl_write(s->hd, buf, size)) < 0 ||
686             (ret = ffurl_write(s->hd, crlf, sizeof(crlf) - 1)) < 0)
687             return ret;
688     }
689     return size;
690 }
691
692 static int http_shutdown(URLContext *h, int flags)
693 {
694     int ret = 0;
695     char footer[] = "0\r\n\r\n";
696     HTTPContext *s = h->priv_data;
697
698     /* signal end of chunked encoding if used */
699     if ((flags & AVIO_FLAG_WRITE) && s->chunked_post) {
700         ret = ffurl_write(s->hd, footer, sizeof(footer) - 1);
701         ret = ret > 0 ? 0 : ret;
702         s->end_chunked_post = 1;
703     }
704
705     return ret;
706 }
707
708 static int http_close(URLContext *h)
709 {
710     int ret = 0;
711     HTTPContext *s = h->priv_data;
712
713 #if CONFIG_ZLIB
714     inflateEnd(&s->inflate_stream);
715     av_freep(&s->inflate_buffer);
716 #endif
717
718     if (!s->end_chunked_post) {
719         /* Close the write direction by sending the end of chunked encoding. */
720         ret = http_shutdown(h, h->flags);
721     }
722
723     if (s->hd)
724         ffurl_close(s->hd);
725     av_dict_free(&s->chained_options);
726     return ret;
727 }
728
729 static int64_t http_seek(URLContext *h, int64_t off, int whence)
730 {
731     HTTPContext *s = h->priv_data;
732     URLContext *old_hd = s->hd;
733     int64_t old_off = s->off;
734     uint8_t old_buf[BUFFER_SIZE];
735     int old_buf_size;
736     AVDictionary *options = NULL;
737
738     if (whence == AVSEEK_SIZE)
739         return s->filesize;
740     else if ((s->filesize == -1 && whence == SEEK_END) || h->is_streamed)
741         return -1;
742
743     /* we save the old context in case the seek fails */
744     old_buf_size = s->buf_end - s->buf_ptr;
745     memcpy(old_buf, s->buf_ptr, old_buf_size);
746     s->hd = NULL;
747     if (whence == SEEK_CUR)
748         off += s->off;
749     else if (whence == SEEK_END)
750         off += s->filesize;
751     s->off = off;
752
753     /* if it fails, continue on old connection */
754     av_dict_copy(&options, s->chained_options, 0);
755     if (http_open_cnx(h, &options) < 0) {
756         av_dict_free(&options);
757         memcpy(s->buffer, old_buf, old_buf_size);
758         s->buf_ptr = s->buffer;
759         s->buf_end = s->buffer + old_buf_size;
760         s->hd = old_hd;
761         s->off = old_off;
762         return -1;
763     }
764     av_dict_free(&options);
765     ffurl_close(old_hd);
766     return off;
767 }
768
769 static int
770 http_get_file_handle(URLContext *h)
771 {
772     HTTPContext *s = h->priv_data;
773     return ffurl_get_file_handle(s->hd);
774 }
775
776 #if CONFIG_HTTP_PROTOCOL
777 URLProtocol ff_http_protocol = {
778     .name                = "http",
779     .url_open2           = http_open,
780     .url_read            = http_read,
781     .url_write           = http_write,
782     .url_seek            = http_seek,
783     .url_close           = http_close,
784     .url_get_file_handle = http_get_file_handle,
785     .url_shutdown        = http_shutdown,
786     .priv_data_size      = sizeof(HTTPContext),
787     .priv_data_class     = &http_context_class,
788     .flags               = URL_PROTOCOL_FLAG_NETWORK,
789 };
790 #endif
791 #if CONFIG_HTTPS_PROTOCOL
792 URLProtocol ff_https_protocol = {
793     .name                = "https",
794     .url_open2           = http_open,
795     .url_read            = http_read,
796     .url_write           = http_write,
797     .url_seek            = http_seek,
798     .url_close           = http_close,
799     .url_get_file_handle = http_get_file_handle,
800     .url_shutdown        = http_shutdown,
801     .priv_data_size      = sizeof(HTTPContext),
802     .priv_data_class     = &https_context_class,
803     .flags               = URL_PROTOCOL_FLAG_NETWORK,
804 };
805 #endif
806
807 #if CONFIG_HTTPPROXY_PROTOCOL
808 static int http_proxy_close(URLContext *h)
809 {
810     HTTPContext *s = h->priv_data;
811     if (s->hd)
812         ffurl_close(s->hd);
813     return 0;
814 }
815
816 static int http_proxy_open(URLContext *h, const char *uri, int flags)
817 {
818     HTTPContext *s = h->priv_data;
819     char hostname[1024], hoststr[1024];
820     char auth[1024], pathbuf[1024], *path;
821     char lower_url[100];
822     int port, ret = 0, attempts = 0;
823     HTTPAuthType cur_auth_type;
824     char *authstr;
825     int new_loc;
826
827     h->is_streamed = 1;
828
829     av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
830                  pathbuf, sizeof(pathbuf), uri);
831     ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
832     path = pathbuf;
833     if (*path == '/')
834         path++;
835
836     ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
837                 NULL);
838 redo:
839     ret = ffurl_open(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
840                      &h->interrupt_callback, NULL);
841     if (ret < 0)
842         return ret;
843
844     authstr = ff_http_auth_create_response(&s->proxy_auth_state, auth,
845                                            path, "CONNECT");
846     snprintf(s->buffer, sizeof(s->buffer),
847              "CONNECT %s HTTP/1.1\r\n"
848              "Host: %s\r\n"
849              "Connection: close\r\n"
850              "%s%s"
851              "\r\n",
852              path,
853              hoststr,
854              authstr ? "Proxy-" : "", authstr ? authstr : "");
855     av_freep(&authstr);
856
857     if ((ret = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
858         goto fail;
859
860     s->buf_ptr = s->buffer;
861     s->buf_end = s->buffer;
862     s->line_count = 0;
863     s->filesize = -1;
864     cur_auth_type = s->proxy_auth_state.auth_type;
865
866     /* Note: This uses buffering, potentially reading more than the
867      * HTTP header. If tunneling a protocol where the server starts
868      * the conversation, we might buffer part of that here, too.
869      * Reading that requires using the proper ffurl_read() function
870      * on this URLContext, not using the fd directly (as the tls
871      * protocol does). This shouldn't be an issue for tls though,
872      * since the client starts the conversation there, so there
873      * is no extra data that we might buffer up here.
874      */
875     ret = http_read_header(h, &new_loc);
876     if (ret < 0)
877         goto fail;
878
879     attempts++;
880     if (s->http_code == 407 &&
881         (cur_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
882         s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2) {
883         ffurl_close(s->hd);
884         s->hd = NULL;
885         goto redo;
886     }
887
888     if (s->http_code < 400)
889         return 0;
890     ret = AVERROR(EIO);
891
892 fail:
893     http_proxy_close(h);
894     return ret;
895 }
896
897 static int http_proxy_write(URLContext *h, const uint8_t *buf, int size)
898 {
899     HTTPContext *s = h->priv_data;
900     return ffurl_write(s->hd, buf, size);
901 }
902
903 URLProtocol ff_httpproxy_protocol = {
904     .name                = "httpproxy",
905     .url_open            = http_proxy_open,
906     .url_read            = http_buf_read,
907     .url_write           = http_proxy_write,
908     .url_close           = http_proxy_close,
909     .url_get_file_handle = http_get_file_handle,
910     .priv_data_size      = sizeof(HTTPContext),
911     .flags               = URL_PROTOCOL_FLAG_NETWORK,
912 };
913 #endif