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