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