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