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