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