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