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