FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
http.c
Go to the documentation of this file.
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 "config.h"
23 
24 #if CONFIG_ZLIB
25 #include <zlib.h>
26 #endif /* CONFIG_ZLIB */
27 
28 #include "libavutil/avassert.h"
29 #include "libavutil/avstring.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/time.h"
32 
33 #include "avformat.h"
34 #include "http.h"
35 #include "httpauth.h"
36 #include "internal.h"
37 #include "network.h"
38 #include "os_support.h"
39 #include "url.h"
40 
41 /* XXX: POST protocol is not completely implemented because ffmpeg uses
42  * only a subset of it. */
43 
44 /* The IO buffer size is unrelated to the max URL size in itself, but needs
45  * to be large enough to fit the full request headers (including long
46  * path names). */
47 #define BUFFER_SIZE MAX_URL_SIZE
48 #define MAX_REDIRECTS 8
49 #define HTTP_SINGLE 1
50 #define HTTP_MUTLI 2
51 typedef enum {
57 
58 typedef struct HTTPContext {
59  const AVClass *class;
61  unsigned char buffer[BUFFER_SIZE], *buf_ptr, *buf_end;
63  int http_code;
64  /* Used if "Transfer-Encoding: chunked" otherwise -1. */
65  int64_t chunksize;
66  int64_t off, end_off, filesize;
67  char *location;
70  char *http_proxy;
71  char *headers;
72  char *mime_type;
73  char *user_agent;
74 #if FF_API_HTTP_USER_AGENT
75  char *user_agent_deprecated;
76 #endif
77  char *content_type;
78  /* Set if the server correctly handles Connection: close and will close
79  * the connection after feeding us the content. */
80  int willclose;
81  int seekable; /**< Control seekability, 0 = disable, 1 = enable, -1 = probe. */
83  /* A flag which indicates if the end of chunked encoding has been sent. */
85  /* A flag which indicates we have finished to read POST reply. */
87  /* A flag which indicates if we use persistent connections. */
91  int is_akamai;
93  char *cookies; ///< holds newline (\n) delimited Set-Cookie header field values (without the "Set-Cookie: " field name)
94  /* A dictionary containing cookies keyed by cookie name */
96  int icy;
97  /* how much data was read since the last ICY metadata packet */
99  /* after how many bytes of read data a new metadata packet will be found */
104 #if CONFIG_ZLIB
105  int compressed;
106  z_stream inflate_stream;
107  uint8_t *inflate_buffer;
108 #endif /* CONFIG_ZLIB */
111  char *method;
117  int listen;
118  char *resource;
123 } HTTPContext;
124 
125 #define OFFSET(x) offsetof(HTTPContext, x)
126 #define D AV_OPT_FLAG_DECODING_PARAM
127 #define E AV_OPT_FLAG_ENCODING_PARAM
128 #define DEFAULT_USER_AGENT "Lavf/" AV_STRINGIFY(LIBAVFORMAT_VERSION)
129 
130 static const AVOption options[] = {
131  { "seekable", "control seekability of connection", OFFSET(seekable), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, D },
132  { "chunked_post", "use chunked transfer-encoding for posts", OFFSET(chunked_post), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, E },
133  { "http_proxy", "set HTTP proxy to tunnel through", OFFSET(http_proxy), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
134  { "headers", "set custom HTTP headers, can override built in default headers", OFFSET(headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
135  { "content_type", "set a specific content type for the POST messages", OFFSET(content_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
136  { "user_agent", "override User-Agent header", OFFSET(user_agent), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
137 #if FF_API_HTTP_USER_AGENT
138  { "user-agent", "override User-Agent header", OFFSET(user_agent_deprecated), AV_OPT_TYPE_STRING, { .str = DEFAULT_USER_AGENT }, 0, 0, D },
139 #endif
140  { "multiple_requests", "use persistent connections", OFFSET(multiple_requests), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D | E },
141  { "post_data", "set custom HTTP post data", OFFSET(post_data), AV_OPT_TYPE_BINARY, .flags = D | E },
142  { "mime_type", "export the MIME type", OFFSET(mime_type), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT | AV_OPT_FLAG_READONLY },
143  { "cookies", "set cookies to be sent in applicable future requests, use newline delimited Set-Cookie HTTP field value syntax", OFFSET(cookies), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D },
144  { "icy", "request ICY metadata", OFFSET(icy), AV_OPT_TYPE_BOOL, { .i64 = 1 }, 0, 1, D },
145  { "icy_metadata_headers", "return ICY metadata headers", OFFSET(icy_metadata_headers), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
146  { "icy_metadata_packet", "return current ICY metadata packet", OFFSET(icy_metadata_packet), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_EXPORT },
147  { "metadata", "metadata read from the bitstream", OFFSET(metadata), AV_OPT_TYPE_DICT, {0}, 0, 0, AV_OPT_FLAG_EXPORT },
148  { "auth_type", "HTTP authentication type", OFFSET(auth_state.auth_type), AV_OPT_TYPE_INT, { .i64 = HTTP_AUTH_NONE }, HTTP_AUTH_NONE, HTTP_AUTH_BASIC, D | E, "auth_type"},
149  { "none", "No auth method set, autodetect", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_NONE }, 0, 0, D | E, "auth_type"},
150  { "basic", "HTTP basic authentication", 0, AV_OPT_TYPE_CONST, { .i64 = HTTP_AUTH_BASIC }, 0, 0, D | E, "auth_type"},
151  { "send_expect_100", "Force sending an Expect: 100-continue header for POST", OFFSET(send_expect_100), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
152  { "location", "The actual location of the data received", OFFSET(location), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
153  { "offset", "initial byte offset", OFFSET(off), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, D },
154  { "end_offset", "try to limit the request to bytes preceding this offset", OFFSET(end_off), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, D },
155  { "method", "Override the HTTP method or set the expected HTTP method from a client", OFFSET(method), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, D | E },
156  { "reconnect", "auto reconnect after disconnect before EOF", OFFSET(reconnect), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
157  { "reconnect_at_eof", "auto reconnect at EOF", OFFSET(reconnect_at_eof), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
158  { "reconnect_streamed", "auto reconnect streamed / non seekable streams", OFFSET(reconnect_streamed), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, D },
159  { "reconnect_delay_max", "max reconnect delay in seconds after which to give up", OFFSET(reconnect_delay_max), AV_OPT_TYPE_INT, { .i64 = 120 }, 0, UINT_MAX/1000/1000, D },
160  { "listen", "listen on HTTP", OFFSET(listen), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, D | E },
161  { "resource", "The resource requested by a client", OFFSET(resource), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, E },
162  { "reply_code", "The http status code to return to a client", OFFSET(reply_code), AV_OPT_TYPE_INT, { .i64 = 200}, INT_MIN, 599, E},
163  { NULL }
164 };
165 
166 static int http_connect(URLContext *h, const char *path, const char *local_path,
167  const char *hoststr, const char *auth,
168  const char *proxyauth, int *new_location);
169 static int http_read_header(URLContext *h, int *new_location);
170 
172 {
173  memcpy(&((HTTPContext *)dest->priv_data)->auth_state,
174  &((HTTPContext *)src->priv_data)->auth_state,
175  sizeof(HTTPAuthState));
176  memcpy(&((HTTPContext *)dest->priv_data)->proxy_auth_state,
177  &((HTTPContext *)src->priv_data)->proxy_auth_state,
178  sizeof(HTTPAuthState));
179 }
180 
182 {
183  const char *path, *proxy_path, *lower_proto = "tcp", *local_path;
184  char hostname[1024], hoststr[1024], proto[10];
185  char auth[1024], proxyauth[1024] = "";
186  char path1[MAX_URL_SIZE];
187  char buf[1024], urlbuf[MAX_URL_SIZE];
188  int port, use_proxy, err, location_changed = 0;
189  HTTPContext *s = h->priv_data;
190 
191  av_url_split(proto, sizeof(proto), auth, sizeof(auth),
192  hostname, sizeof(hostname), &port,
193  path1, sizeof(path1), s->location);
194  ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
195 
196  proxy_path = s->http_proxy ? s->http_proxy : getenv("http_proxy");
197  use_proxy = !ff_http_match_no_proxy(getenv("no_proxy"), hostname) &&
198  proxy_path && av_strstart(proxy_path, "http://", NULL);
199 
200  if (!strcmp(proto, "https")) {
201  lower_proto = "tls";
202  use_proxy = 0;
203  if (port < 0)
204  port = 443;
205  }
206  if (port < 0)
207  port = 80;
208 
209  if (path1[0] == '\0')
210  path = "/";
211  else
212  path = path1;
213  local_path = path;
214  if (use_proxy) {
215  /* Reassemble the request URL without auth string - we don't
216  * want to leak the auth to the proxy. */
217  ff_url_join(urlbuf, sizeof(urlbuf), proto, NULL, hostname, port, "%s",
218  path1);
219  path = urlbuf;
220  av_url_split(NULL, 0, proxyauth, sizeof(proxyauth),
221  hostname, sizeof(hostname), &port, NULL, 0, proxy_path);
222  }
223 
224  ff_url_join(buf, sizeof(buf), lower_proto, NULL, hostname, port, NULL);
225 
226  if (!s->hd) {
228  &h->interrupt_callback, options,
230  if (err < 0)
231  return err;
232  }
233 
234  err = http_connect(h, path, local_path, hoststr,
235  auth, proxyauth, &location_changed);
236  if (err < 0)
237  return err;
238 
239  return location_changed;
240 }
241 
242 /* return non zero if error */
243 static int http_open_cnx(URLContext *h, AVDictionary **options)
244 {
245  HTTPAuthType cur_auth_type, cur_proxy_auth_type;
246  HTTPContext *s = h->priv_data;
247  int location_changed, attempts = 0, redirects = 0;
248 redo:
249  av_dict_copy(options, s->chained_options, 0);
250 
251  cur_auth_type = s->auth_state.auth_type;
252  cur_proxy_auth_type = s->auth_state.auth_type;
253 
254  location_changed = http_open_cnx_internal(h, options);
255  if (location_changed < 0)
256  goto fail;
257 
258  attempts++;
259  if (s->http_code == 401) {
260  if ((cur_auth_type == HTTP_AUTH_NONE || s->auth_state.stale) &&
261  s->auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
262  ffurl_closep(&s->hd);
263  goto redo;
264  } else
265  goto fail;
266  }
267  if (s->http_code == 407) {
268  if ((cur_proxy_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
269  s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 4) {
270  ffurl_closep(&s->hd);
271  goto redo;
272  } else
273  goto fail;
274  }
275  if ((s->http_code == 301 || s->http_code == 302 ||
276  s->http_code == 303 || s->http_code == 307) &&
277  location_changed == 1) {
278  /* url moved, get next */
279  ffurl_closep(&s->hd);
280  if (redirects++ >= MAX_REDIRECTS)
281  return AVERROR(EIO);
282  /* Restart the authentication process with the new target, which
283  * might use a different auth mechanism. */
284  memset(&s->auth_state, 0, sizeof(s->auth_state));
285  attempts = 0;
286  location_changed = 0;
287  goto redo;
288  }
289  return 0;
290 
291 fail:
292  if (s->hd)
293  ffurl_closep(&s->hd);
294  if (location_changed < 0)
295  return location_changed;
296  return ff_http_averror(s->http_code, AVERROR(EIO));
297 }
298 
299 int ff_http_do_new_request(URLContext *h, const char *uri)
300 {
301  HTTPContext *s = h->priv_data;
302  AVDictionary *options = NULL;
303  int ret;
304 
305  s->off = 0;
306  s->icy_data_read = 0;
307  av_free(s->location);
308  s->location = av_strdup(uri);
309  if (!s->location)
310  return AVERROR(ENOMEM);
311 
312  ret = http_open_cnx(h, &options);
313  av_dict_free(&options);
314  return ret;
315 }
316 
317 int ff_http_averror(int status_code, int default_averror)
318 {
319  switch (status_code) {
320  case 400: return AVERROR_HTTP_BAD_REQUEST;
321  case 401: return AVERROR_HTTP_UNAUTHORIZED;
322  case 403: return AVERROR_HTTP_FORBIDDEN;
323  case 404: return AVERROR_HTTP_NOT_FOUND;
324  default: break;
325  }
326  if (status_code >= 400 && status_code <= 499)
327  return AVERROR_HTTP_OTHER_4XX;
328  else if (status_code >= 500)
330  else
331  return default_averror;
332 }
333 
334 static int http_write_reply(URLContext* h, int status_code)
335 {
336  int ret, body = 0, reply_code, message_len;
337  const char *reply_text, *content_type;
338  HTTPContext *s = h->priv_data;
339  char message[BUFFER_SIZE];
340  content_type = "text/plain";
341 
342  if (status_code < 0)
343  body = 1;
344  switch (status_code) {
346  case 400:
347  reply_code = 400;
348  reply_text = "Bad Request";
349  break;
351  case 403:
352  reply_code = 403;
353  reply_text = "Forbidden";
354  break;
356  case 404:
357  reply_code = 404;
358  reply_text = "Not Found";
359  break;
360  case 200:
361  reply_code = 200;
362  reply_text = "OK";
363  content_type = s->content_type ? s->content_type : "application/octet-stream";
364  break;
366  case 500:
367  reply_code = 500;
368  reply_text = "Internal server error";
369  break;
370  default:
371  return AVERROR(EINVAL);
372  }
373  if (body) {
374  s->chunked_post = 0;
375  message_len = snprintf(message, sizeof(message),
376  "HTTP/1.1 %03d %s\r\n"
377  "Content-Type: %s\r\n"
378  "Content-Length: %"SIZE_SPECIFIER"\r\n"
379  "%s"
380  "\r\n"
381  "%03d %s\r\n",
382  reply_code,
383  reply_text,
384  content_type,
385  strlen(reply_text) + 6, // 3 digit status code + space + \r\n
386  s->headers ? s->headers : "",
387  reply_code,
388  reply_text);
389  } else {
390  s->chunked_post = 1;
391  message_len = snprintf(message, sizeof(message),
392  "HTTP/1.1 %03d %s\r\n"
393  "Content-Type: %s\r\n"
394  "Transfer-Encoding: chunked\r\n"
395  "%s"
396  "\r\n",
397  reply_code,
398  reply_text,
399  content_type,
400  s->headers ? s->headers : "");
401  }
402  av_log(h, AV_LOG_TRACE, "HTTP reply header: \n%s----\n", message);
403  if ((ret = ffurl_write(s->hd, message, message_len)) < 0)
404  return ret;
405  return 0;
406 }
407 
408 static void handle_http_errors(URLContext *h, int error)
409 {
410  av_assert0(error < 0);
411  http_write_reply(h, error);
412 }
413 
415 {
416  int ret, err, new_location;
417  HTTPContext *ch = c->priv_data;
418  URLContext *cl = ch->hd;
419  switch (ch->handshake_step) {
420  case LOWER_PROTO:
421  av_log(c, AV_LOG_TRACE, "Lower protocol\n");
422  if ((ret = ffurl_handshake(cl)) > 0)
423  return 2 + ret;
424  if (ret < 0)
425  return ret;
427  ch->is_connected_server = 1;
428  return 2;
429  case READ_HEADERS:
430  av_log(c, AV_LOG_TRACE, "Read headers\n");
431  if ((err = http_read_header(c, &new_location)) < 0) {
432  handle_http_errors(c, err);
433  return err;
434  }
436  return 1;
437  case WRITE_REPLY_HEADERS:
438  av_log(c, AV_LOG_TRACE, "Reply code: %d\n", ch->reply_code);
439  if ((err = http_write_reply(c, ch->reply_code)) < 0)
440  return err;
441  ch->handshake_step = FINISH;
442  return 1;
443  case FINISH:
444  return 0;
445  }
446  // this should never be reached.
447  return AVERROR(EINVAL);
448 }
449 
450 static int http_listen(URLContext *h, const char *uri, int flags,
451  AVDictionary **options) {
452  HTTPContext *s = h->priv_data;
453  int ret;
454  char hostname[1024], proto[10];
455  char lower_url[100];
456  const char *lower_proto = "tcp";
457  int port;
458  av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname), &port,
459  NULL, 0, uri);
460  if (!strcmp(proto, "https"))
461  lower_proto = "tls";
462  ff_url_join(lower_url, sizeof(lower_url), lower_proto, NULL, hostname, port,
463  NULL);
464  if ((ret = av_dict_set_int(options, "listen", s->listen, 0)) < 0)
465  goto fail;
466  if ((ret = ffurl_open_whitelist(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
467  &h->interrupt_callback, options,
469  )) < 0)
470  goto fail;
472  if (s->listen == HTTP_SINGLE) { /* single client */
473  s->reply_code = 200;
474  while ((ret = http_handshake(h)) > 0);
475  }
476 fail:
478  return ret;
479 }
480 
481 static int http_open(URLContext *h, const char *uri, int flags,
482  AVDictionary **options)
483 {
484  HTTPContext *s = h->priv_data;
485  int ret;
486 
487  if( s->seekable == 1 )
488  h->is_streamed = 0;
489  else
490  h->is_streamed = 1;
491 
492  s->filesize = -1;
493  s->location = av_strdup(uri);
494  if (!s->location)
495  return AVERROR(ENOMEM);
496  if (options)
497  av_dict_copy(&s->chained_options, *options, 0);
498 
499  if (s->headers) {
500  int len = strlen(s->headers);
501  if (len < 2 || strcmp("\r\n", s->headers + len - 2)) {
503  "No trailing CRLF found in HTTP header.\n");
504  ret = av_reallocp(&s->headers, len + 3);
505  if (ret < 0)
506  return ret;
507  s->headers[len] = '\r';
508  s->headers[len + 1] = '\n';
509  s->headers[len + 2] = '\0';
510  }
511  }
512 
513  if (s->listen) {
514  return http_listen(h, uri, flags, options);
515  }
516  ret = http_open_cnx(h, options);
517  if (ret < 0)
519  return ret;
520 }
521 
523 {
524  int ret;
525  HTTPContext *sc = s->priv_data;
526  HTTPContext *cc;
527  URLContext *sl = sc->hd;
528  URLContext *cl = NULL;
529 
530  av_assert0(sc->listen);
531  if ((ret = ffurl_alloc(c, s->filename, s->flags, &sl->interrupt_callback)) < 0)
532  goto fail;
533  cc = (*c)->priv_data;
534  if ((ret = ffurl_accept(sl, &cl)) < 0)
535  goto fail;
536  cc->hd = cl;
537  cc->is_multi_client = 1;
538 fail:
539  return ret;
540 }
541 
542 static int http_getc(HTTPContext *s)
543 {
544  int len;
545  if (s->buf_ptr >= s->buf_end) {
546  len = ffurl_read(s->hd, s->buffer, BUFFER_SIZE);
547  if (len < 0) {
548  return len;
549  } else if (len == 0) {
550  return AVERROR_EOF;
551  } else {
552  s->buf_ptr = s->buffer;
553  s->buf_end = s->buffer + len;
554  }
555  }
556  return *s->buf_ptr++;
557 }
558 
559 static int http_get_line(HTTPContext *s, char *line, int line_size)
560 {
561  int ch;
562  char *q;
563 
564  q = line;
565  for (;;) {
566  ch = http_getc(s);
567  if (ch < 0)
568  return ch;
569  if (ch == '\n') {
570  /* process line */
571  if (q > line && q[-1] == '\r')
572  q--;
573  *q = '\0';
574 
575  return 0;
576  } else {
577  if ((q - line) < line_size - 1)
578  *q++ = ch;
579  }
580  }
581 }
582 
583 static int check_http_code(URLContext *h, int http_code, const char *end)
584 {
585  HTTPContext *s = h->priv_data;
586  /* error codes are 4xx and 5xx, but regard 401 as a success, so we
587  * don't abort until all headers have been parsed. */
588  if (http_code >= 400 && http_code < 600 &&
589  (http_code != 401 || s->auth_state.auth_type != HTTP_AUTH_NONE) &&
590  (http_code != 407 || s->proxy_auth_state.auth_type != HTTP_AUTH_NONE)) {
591  end += strspn(end, SPACE_CHARS);
592  av_log(h, AV_LOG_WARNING, "HTTP error %d %s\n", http_code, end);
593  return ff_http_averror(http_code, AVERROR(EIO));
594  }
595  return 0;
596 }
597 
598 static int parse_location(HTTPContext *s, const char *p)
599 {
600  char redirected_location[MAX_URL_SIZE], *new_loc;
601  ff_make_absolute_url(redirected_location, sizeof(redirected_location),
602  s->location, p);
603  new_loc = av_strdup(redirected_location);
604  if (!new_loc)
605  return AVERROR(ENOMEM);
606  av_free(s->location);
607  s->location = new_loc;
608  return 0;
609 }
610 
611 /* "bytes $from-$to/$document_size" */
612 static void parse_content_range(URLContext *h, const char *p)
613 {
614  HTTPContext *s = h->priv_data;
615  const char *slash;
616 
617  if (!strncmp(p, "bytes ", 6)) {
618  p += 6;
619  s->off = strtoll(p, NULL, 10);
620  if ((slash = strchr(p, '/')) && strlen(slash) > 0)
621  s->filesize = strtoll(slash + 1, NULL, 10);
622  }
623  if (s->seekable == -1 && (!s->is_akamai || s->filesize != 2147483647))
624  h->is_streamed = 0; /* we _can_ in fact seek */
625 }
626 
627 static int parse_content_encoding(URLContext *h, const char *p)
628 {
629  if (!av_strncasecmp(p, "gzip", 4) ||
630  !av_strncasecmp(p, "deflate", 7)) {
631 #if CONFIG_ZLIB
632  HTTPContext *s = h->priv_data;
633 
634  s->compressed = 1;
635  inflateEnd(&s->inflate_stream);
636  if (inflateInit2(&s->inflate_stream, 32 + 15) != Z_OK) {
637  av_log(h, AV_LOG_WARNING, "Error during zlib initialisation: %s\n",
638  s->inflate_stream.msg);
639  return AVERROR(ENOSYS);
640  }
641  if (zlibCompileFlags() & (1 << 17)) {
643  "Your zlib was compiled without gzip support.\n");
644  return AVERROR(ENOSYS);
645  }
646 #else
648  "Compressed (%s) content, need zlib with gzip support\n", p);
649  return AVERROR(ENOSYS);
650 #endif /* CONFIG_ZLIB */
651  } else if (!av_strncasecmp(p, "identity", 8)) {
652  // The normal, no-encoding case (although servers shouldn't include
653  // the header at all if this is the case).
654  } else {
655  av_log(h, AV_LOG_WARNING, "Unknown content coding: %s\n", p);
656  }
657  return 0;
658 }
659 
660 // Concat all Icy- header lines
661 static int parse_icy(HTTPContext *s, const char *tag, const char *p)
662 {
663  int len = 4 + strlen(p) + strlen(tag);
664  int is_first = !s->icy_metadata_headers;
665  int ret;
666 
667  av_dict_set(&s->metadata, tag, p, 0);
668 
669  if (s->icy_metadata_headers)
670  len += strlen(s->icy_metadata_headers);
671 
672  if ((ret = av_reallocp(&s->icy_metadata_headers, len)) < 0)
673  return ret;
674 
675  if (is_first)
676  *s->icy_metadata_headers = '\0';
677 
678  av_strlcatf(s->icy_metadata_headers, len, "%s: %s\n", tag, p);
679 
680  return 0;
681 }
682 
683 static int parse_cookie(HTTPContext *s, const char *p, AVDictionary **cookies)
684 {
685  char *eql, *name;
686 
687  // duplicate the cookie name (dict will dupe the value)
688  if (!(eql = strchr(p, '='))) return AVERROR(EINVAL);
689  if (!(name = av_strndup(p, eql - p))) return AVERROR(ENOMEM);
690 
691  // add the cookie to the dictionary
692  av_dict_set(cookies, name, eql, AV_DICT_DONT_STRDUP_KEY);
693 
694  return 0;
695 }
696 
697 static int cookie_string(AVDictionary *dict, char **cookies)
698 {
699  AVDictionaryEntry *e = NULL;
700  int len = 1;
701 
702  // determine how much memory is needed for the cookies string
703  while (e = av_dict_get(dict, "", e, AV_DICT_IGNORE_SUFFIX))
704  len += strlen(e->key) + strlen(e->value) + 1;
705 
706  // reallocate the cookies
707  e = NULL;
708  if (*cookies) av_free(*cookies);
709  *cookies = av_malloc(len);
710  if (!*cookies) return AVERROR(ENOMEM);
711  *cookies[0] = '\0';
712 
713  // write out the cookies
714  while (e = av_dict_get(dict, "", e, AV_DICT_IGNORE_SUFFIX))
715  av_strlcatf(*cookies, len, "%s%s\n", e->key, e->value);
716 
717  return 0;
718 }
719 
720 static int process_line(URLContext *h, char *line, int line_count,
721  int *new_location)
722 {
723  HTTPContext *s = h->priv_data;
724  const char *auto_method = h->flags & AVIO_FLAG_READ ? "POST" : "GET";
725  char *tag, *p, *end, *method, *resource, *version;
726  int ret;
727 
728  /* end of header */
729  if (line[0] == '\0') {
730  s->end_header = 1;
731  return 0;
732  }
733 
734  p = line;
735  if (line_count == 0) {
736  if (s->is_connected_server) {
737  // HTTP method
738  method = p;
739  while (*p && !av_isspace(*p))
740  p++;
741  *(p++) = '\0';
742  av_log(h, AV_LOG_TRACE, "Received method: %s\n", method);
743  if (s->method) {
744  if (av_strcasecmp(s->method, method)) {
745  av_log(h, AV_LOG_ERROR, "Received and expected HTTP method do not match. (%s expected, %s received)\n",
746  s->method, method);
747  return ff_http_averror(400, AVERROR(EIO));
748  }
749  } else {
750  // use autodetected HTTP method to expect
751  av_log(h, AV_LOG_TRACE, "Autodetected %s HTTP method\n", auto_method);
752  if (av_strcasecmp(auto_method, method)) {
753  av_log(h, AV_LOG_ERROR, "Received and autodetected HTTP method did not match "
754  "(%s autodetected %s received)\n", auto_method, method);
755  return ff_http_averror(400, AVERROR(EIO));
756  }
757  if (!(s->method = av_strdup(method)))
758  return AVERROR(ENOMEM);
759  }
760 
761  // HTTP resource
762  while (av_isspace(*p))
763  p++;
764  resource = p;
765  while (!av_isspace(*p))
766  p++;
767  *(p++) = '\0';
768  av_log(h, AV_LOG_TRACE, "Requested resource: %s\n", resource);
769  if (!(s->resource = av_strdup(resource)))
770  return AVERROR(ENOMEM);
771 
772  // HTTP version
773  while (av_isspace(*p))
774  p++;
775  version = p;
776  while (*p && !av_isspace(*p))
777  p++;
778  *p = '\0';
779  if (av_strncasecmp(version, "HTTP/", 5)) {
780  av_log(h, AV_LOG_ERROR, "Malformed HTTP version string.\n");
781  return ff_http_averror(400, AVERROR(EIO));
782  }
783  av_log(h, AV_LOG_TRACE, "HTTP version string: %s\n", version);
784  } else {
785  while (!av_isspace(*p) && *p != '\0')
786  p++;
787  while (av_isspace(*p))
788  p++;
789  s->http_code = strtol(p, &end, 10);
790 
791  av_log(h, AV_LOG_TRACE, "http_code=%d\n", s->http_code);
792 
793  if ((ret = check_http_code(h, s->http_code, end)) < 0)
794  return ret;
795  }
796  } else {
797  while (*p != '\0' && *p != ':')
798  p++;
799  if (*p != ':')
800  return 1;
801 
802  *p = '\0';
803  tag = line;
804  p++;
805  while (av_isspace(*p))
806  p++;
807  if (!av_strcasecmp(tag, "Location")) {
808  if ((ret = parse_location(s, p)) < 0)
809  return ret;
810  *new_location = 1;
811  } else if (!av_strcasecmp(tag, "Content-Length") && s->filesize == -1) {
812  s->filesize = strtoll(p, NULL, 10);
813  } else if (!av_strcasecmp(tag, "Content-Range")) {
814  parse_content_range(h, p);
815  } else if (!av_strcasecmp(tag, "Accept-Ranges") &&
816  !strncmp(p, "bytes", 5) &&
817  s->seekable == -1) {
818  h->is_streamed = 0;
819  } else if (!av_strcasecmp(tag, "Transfer-Encoding") &&
820  !av_strncasecmp(p, "chunked", 7)) {
821  s->filesize = -1;
822  s->chunksize = 0;
823  } else if (!av_strcasecmp(tag, "WWW-Authenticate")) {
825  } else if (!av_strcasecmp(tag, "Authentication-Info")) {
827  } else if (!av_strcasecmp(tag, "Proxy-Authenticate")) {
829  } else if (!av_strcasecmp(tag, "Connection")) {
830  if (!strcmp(p, "close"))
831  s->willclose = 1;
832  } else if (!av_strcasecmp(tag, "Server")) {
833  if (!av_strcasecmp(p, "AkamaiGHost")) {
834  s->is_akamai = 1;
835  } else if (!av_strncasecmp(p, "MediaGateway", 12)) {
836  s->is_mediagateway = 1;
837  }
838  } else if (!av_strcasecmp(tag, "Content-Type")) {
839  av_free(s->mime_type);
840  s->mime_type = av_strdup(p);
841  } else if (!av_strcasecmp(tag, "Set-Cookie")) {
842  if (parse_cookie(s, p, &s->cookie_dict))
843  av_log(h, AV_LOG_WARNING, "Unable to parse '%s'\n", p);
844  } else if (!av_strcasecmp(tag, "Icy-MetaInt")) {
845  s->icy_metaint = strtoll(p, NULL, 10);
846  } else if (!av_strncasecmp(tag, "Icy-", 4)) {
847  if ((ret = parse_icy(s, tag, p)) < 0)
848  return ret;
849  } else if (!av_strcasecmp(tag, "Content-Encoding")) {
850  if ((ret = parse_content_encoding(h, p)) < 0)
851  return ret;
852  }
853  }
854  return 1;
855 }
856 
857 /**
858  * Create a string containing cookie values for use as a HTTP cookie header
859  * field value for a particular path and domain from the cookie values stored in
860  * the HTTP protocol context. The cookie string is stored in *cookies.
861  *
862  * @return a negative value if an error condition occurred, 0 otherwise
863  */
864 static int get_cookies(HTTPContext *s, char **cookies, const char *path,
865  const char *domain)
866 {
867  // cookie strings will look like Set-Cookie header field values. Multiple
868  // Set-Cookie fields will result in multiple values delimited by a newline
869  int ret = 0;
870  char *next, *cookie, *set_cookies = av_strdup(s->cookies), *cset_cookies = set_cookies;
871 
872  if (!set_cookies) return AVERROR(EINVAL);
873 
874  // destroy any cookies in the dictionary.
876 
877  *cookies = NULL;
878  while ((cookie = av_strtok(set_cookies, "\n", &next))) {
879  int domain_offset = 0;
880  char *param, *next_param, *cdomain = NULL, *cpath = NULL, *cvalue = NULL;
881  set_cookies = NULL;
882 
883  // store the cookie in a dict in case it is updated in the response
884  if (parse_cookie(s, cookie, &s->cookie_dict))
885  av_log(s, AV_LOG_WARNING, "Unable to parse '%s'\n", cookie);
886 
887  while ((param = av_strtok(cookie, "; ", &next_param))) {
888  if (cookie) {
889  // first key-value pair is the actual cookie value
890  cvalue = av_strdup(param);
891  cookie = NULL;
892  } else if (!av_strncasecmp("path=", param, 5)) {
893  av_free(cpath);
894  cpath = av_strdup(&param[5]);
895  } else if (!av_strncasecmp("domain=", param, 7)) {
896  // if the cookie specifies a sub-domain, skip the leading dot thereby
897  // supporting URLs that point to sub-domains and the master domain
898  int leading_dot = (param[7] == '.');
899  av_free(cdomain);
900  cdomain = av_strdup(&param[7+leading_dot]);
901  } else {
902  // ignore unknown attributes
903  }
904  }
905  if (!cdomain)
906  cdomain = av_strdup(domain);
907 
908  // ensure all of the necessary values are valid
909  if (!cdomain || !cpath || !cvalue) {
911  "Invalid cookie found, no value, path or domain specified\n");
912  goto done_cookie;
913  }
914 
915  // check if the request path matches the cookie path
916  if (av_strncasecmp(path, cpath, strlen(cpath)))
917  goto done_cookie;
918 
919  // the domain should be at least the size of our cookie domain
920  domain_offset = strlen(domain) - strlen(cdomain);
921  if (domain_offset < 0)
922  goto done_cookie;
923 
924  // match the cookie domain
925  if (av_strcasecmp(&domain[domain_offset], cdomain))
926  goto done_cookie;
927 
928  // cookie parameters match, so copy the value
929  if (!*cookies) {
930  if (!(*cookies = av_strdup(cvalue))) {
931  ret = AVERROR(ENOMEM);
932  goto done_cookie;
933  }
934  } else {
935  char *tmp = *cookies;
936  size_t str_size = strlen(cvalue) + strlen(*cookies) + 3;
937  if (!(*cookies = av_malloc(str_size))) {
938  ret = AVERROR(ENOMEM);
939  goto done_cookie;
940  }
941  snprintf(*cookies, str_size, "%s; %s", tmp, cvalue);
942  av_free(tmp);
943  }
944 
945  done_cookie:
946  av_freep(&cdomain);
947  av_freep(&cpath);
948  av_freep(&cvalue);
949  if (ret < 0) {
950  if (*cookies) av_freep(cookies);
951  av_free(cset_cookies);
952  return ret;
953  }
954  }
955 
956  av_free(cset_cookies);
957 
958  return 0;
959 }
960 
961 static inline int has_header(const char *str, const char *header)
962 {
963  /* header + 2 to skip over CRLF prefix. (make sure you have one!) */
964  if (!str)
965  return 0;
966  return av_stristart(str, header + 2, NULL) || av_stristr(str, header);
967 }
968 
969 static int http_read_header(URLContext *h, int *new_location)
970 {
971  HTTPContext *s = h->priv_data;
972  char line[MAX_URL_SIZE];
973  int err = 0;
974 
975  s->chunksize = -1;
976 
977  for (;;) {
978  if ((err = http_get_line(s, line, sizeof(line))) < 0)
979  return err;
980 
981  av_log(h, AV_LOG_TRACE, "header='%s'\n", line);
982 
983  err = process_line(h, line, s->line_count, new_location);
984  if (err < 0)
985  return err;
986  if (err == 0)
987  break;
988  s->line_count++;
989  }
990 
991  if (s->seekable == -1 && s->is_mediagateway && s->filesize == 2000000000)
992  h->is_streamed = 1; /* we can in fact _not_ seek */
993 
994  // add any new cookies into the existing cookie string
997 
998  return err;
999 }
1000 
1001 static int http_connect(URLContext *h, const char *path, const char *local_path,
1002  const char *hoststr, const char *auth,
1003  const char *proxyauth, int *new_location)
1004 {
1005  HTTPContext *s = h->priv_data;
1006  int post, err;
1007  char headers[HTTP_HEADERS_SIZE] = "";
1008  char *authstr = NULL, *proxyauthstr = NULL;
1009  int64_t off = s->off;
1010  int len = 0;
1011  const char *method;
1012  int send_expect_100 = 0;
1013 
1014  /* send http header */
1015  post = h->flags & AVIO_FLAG_WRITE;
1016 
1017  if (s->post_data) {
1018  /* force POST method and disable chunked encoding when
1019  * custom HTTP post data is set */
1020  post = 1;
1021  s->chunked_post = 0;
1022  }
1023 
1024  if (s->method)
1025  method = s->method;
1026  else
1027  method = post ? "POST" : "GET";
1028 
1029  authstr = ff_http_auth_create_response(&s->auth_state, auth,
1030  local_path, method);
1031  proxyauthstr = ff_http_auth_create_response(&s->proxy_auth_state, proxyauth,
1032  local_path, method);
1033  if (post && !s->post_data) {
1034  send_expect_100 = s->send_expect_100;
1035  /* The user has supplied authentication but we don't know the auth type,
1036  * send Expect: 100-continue to get the 401 response including the
1037  * WWW-Authenticate header, or an 100 continue if no auth actually
1038  * is needed. */
1039  if (auth && *auth &&
1041  s->http_code != 401)
1042  send_expect_100 = 1;
1043  }
1044 
1045 #if FF_API_HTTP_USER_AGENT
1046  if (strcmp(s->user_agent_deprecated, DEFAULT_USER_AGENT)) {
1047  av_log(s, AV_LOG_WARNING, "the user-agent option is deprecated, please use user_agent option\n");
1048  s->user_agent = av_strdup(s->user_agent_deprecated);
1049  }
1050 #endif
1051  /* set default headers if needed */
1052  if (!has_header(s->headers, "\r\nUser-Agent: "))
1053  len += av_strlcatf(headers + len, sizeof(headers) - len,
1054  "User-Agent: %s\r\n", s->user_agent);
1055  if (!has_header(s->headers, "\r\nAccept: "))
1056  len += av_strlcpy(headers + len, "Accept: */*\r\n",
1057  sizeof(headers) - len);
1058  // Note: we send this on purpose even when s->off is 0 when we're probing,
1059  // since it allows us to detect more reliably if a (non-conforming)
1060  // server supports seeking by analysing the reply headers.
1061  if (!has_header(s->headers, "\r\nRange: ") && !post && (s->off > 0 || s->end_off || s->seekable == -1)) {
1062  len += av_strlcatf(headers + len, sizeof(headers) - len,
1063  "Range: bytes=%"PRId64"-", s->off);
1064  if (s->end_off)
1065  len += av_strlcatf(headers + len, sizeof(headers) - len,
1066  "%"PRId64, s->end_off - 1);
1067  len += av_strlcpy(headers + len, "\r\n",
1068  sizeof(headers) - len);
1069  }
1070  if (send_expect_100 && !has_header(s->headers, "\r\nExpect: "))
1071  len += av_strlcatf(headers + len, sizeof(headers) - len,
1072  "Expect: 100-continue\r\n");
1073 
1074  if (!has_header(s->headers, "\r\nConnection: ")) {
1075  if (s->multiple_requests)
1076  len += av_strlcpy(headers + len, "Connection: keep-alive\r\n",
1077  sizeof(headers) - len);
1078  else
1079  len += av_strlcpy(headers + len, "Connection: close\r\n",
1080  sizeof(headers) - len);
1081  }
1082 
1083  if (!has_header(s->headers, "\r\nHost: "))
1084  len += av_strlcatf(headers + len, sizeof(headers) - len,
1085  "Host: %s\r\n", hoststr);
1086  if (!has_header(s->headers, "\r\nContent-Length: ") && s->post_data)
1087  len += av_strlcatf(headers + len, sizeof(headers) - len,
1088  "Content-Length: %d\r\n", s->post_datalen);
1089 
1090  if (!has_header(s->headers, "\r\nContent-Type: ") && s->content_type)
1091  len += av_strlcatf(headers + len, sizeof(headers) - len,
1092  "Content-Type: %s\r\n", s->content_type);
1093  if (!has_header(s->headers, "\r\nCookie: ") && s->cookies) {
1094  char *cookies = NULL;
1095  if (!get_cookies(s, &cookies, path, hoststr) && cookies) {
1096  len += av_strlcatf(headers + len, sizeof(headers) - len,
1097  "Cookie: %s\r\n", cookies);
1098  av_free(cookies);
1099  }
1100  }
1101  if (!has_header(s->headers, "\r\nIcy-MetaData: ") && s->icy)
1102  len += av_strlcatf(headers + len, sizeof(headers) - len,
1103  "Icy-MetaData: %d\r\n", 1);
1104 
1105  /* now add in custom headers */
1106  if (s->headers)
1107  av_strlcpy(headers + len, s->headers, sizeof(headers) - len);
1108 
1109  snprintf(s->buffer, sizeof(s->buffer),
1110  "%s %s HTTP/1.1\r\n"
1111  "%s"
1112  "%s"
1113  "%s"
1114  "%s%s"
1115  "\r\n",
1116  method,
1117  path,
1118  post && s->chunked_post ? "Transfer-Encoding: chunked\r\n" : "",
1119  headers,
1120  authstr ? authstr : "",
1121  proxyauthstr ? "Proxy-" : "", proxyauthstr ? proxyauthstr : "");
1122 
1123  av_log(h, AV_LOG_DEBUG, "request: %s\n", s->buffer);
1124 
1125  if ((err = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
1126  goto done;
1127 
1128  if (s->post_data)
1129  if ((err = ffurl_write(s->hd, s->post_data, s->post_datalen)) < 0)
1130  goto done;
1131 
1132  /* init input buffer */
1133  s->buf_ptr = s->buffer;
1134  s->buf_end = s->buffer;
1135  s->line_count = 0;
1136  s->off = 0;
1137  s->icy_data_read = 0;
1138  s->filesize = -1;
1139  s->willclose = 0;
1140  s->end_chunked_post = 0;
1141  s->end_header = 0;
1142  if (post && !s->post_data && !send_expect_100) {
1143  /* Pretend that it did work. We didn't read any header yet, since
1144  * we've still to send the POST data, but the code calling this
1145  * function will check http_code after we return. */
1146  s->http_code = 200;
1147  err = 0;
1148  goto done;
1149  }
1150 
1151  /* wait for header */
1152  err = http_read_header(h, new_location);
1153  if (err < 0)
1154  goto done;
1155 
1156  if (*new_location)
1157  s->off = off;
1158 
1159  err = (off == s->off) ? 0 : -1;
1160 done:
1161  av_freep(&authstr);
1162  av_freep(&proxyauthstr);
1163  return err;
1164 }
1165 
1167 {
1168  HTTPContext *s = h->priv_data;
1169  int len;
1170  /* read bytes from input buffer first */
1171  len = s->buf_end - s->buf_ptr;
1172  if (len > 0) {
1173  if (len > size)
1174  len = size;
1175  memcpy(buf, s->buf_ptr, len);
1176  s->buf_ptr += len;
1177  } else {
1178  int64_t target_end = s->end_off ? s->end_off : s->filesize;
1179  if ((!s->willclose || s->chunksize < 0) &&
1180  target_end >= 0 && s->off >= target_end)
1181  return AVERROR_EOF;
1182  len = ffurl_read(s->hd, buf, size);
1183  if (!len && (!s->willclose || s->chunksize < 0) &&
1184  target_end >= 0 && s->off < target_end) {
1185  av_log(h, AV_LOG_ERROR,
1186  "Stream ends prematurely at %"PRId64", should be %"PRId64"\n",
1187  s->off, target_end
1188  );
1189  return AVERROR(EIO);
1190  }
1191  }
1192  if (len > 0) {
1193  s->off += len;
1194  if (s->chunksize > 0)
1195  s->chunksize -= len;
1196  }
1197  return len;
1198 }
1199 
1200 #if CONFIG_ZLIB
1201 #define DECOMPRESS_BUF_SIZE (256 * 1024)
1202 static int http_buf_read_compressed(URLContext *h, uint8_t *buf, int size)
1203 {
1204  HTTPContext *s = h->priv_data;
1205  int ret;
1206 
1207  if (!s->inflate_buffer) {
1208  s->inflate_buffer = av_malloc(DECOMPRESS_BUF_SIZE);
1209  if (!s->inflate_buffer)
1210  return AVERROR(ENOMEM);
1211  }
1212 
1213  if (s->inflate_stream.avail_in == 0) {
1214  int read = http_buf_read(h, s->inflate_buffer, DECOMPRESS_BUF_SIZE);
1215  if (read <= 0)
1216  return read;
1217  s->inflate_stream.next_in = s->inflate_buffer;
1218  s->inflate_stream.avail_in = read;
1219  }
1220 
1221  s->inflate_stream.avail_out = size;
1222  s->inflate_stream.next_out = buf;
1223 
1224  ret = inflate(&s->inflate_stream, Z_SYNC_FLUSH);
1225  if (ret != Z_OK && ret != Z_STREAM_END)
1226  av_log(h, AV_LOG_WARNING, "inflate return value: %d, %s\n",
1227  ret, s->inflate_stream.msg);
1228 
1229  return size - s->inflate_stream.avail_out;
1230 }
1231 #endif /* CONFIG_ZLIB */
1232 
1233 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect);
1234 
1235 static int http_read_stream(URLContext *h, uint8_t *buf, int size)
1236 {
1237  HTTPContext *s = h->priv_data;
1238  int err, new_location, read_ret;
1239  int64_t seek_ret;
1240 
1241  if (!s->hd)
1242  return AVERROR_EOF;
1243 
1244  if (s->end_chunked_post && !s->end_header) {
1245  err = http_read_header(h, &new_location);
1246  if (err < 0)
1247  return err;
1248  }
1249 
1250  if (s->chunksize >= 0) {
1251  if (!s->chunksize) {
1252  char line[32];
1253 
1254  do {
1255  if ((err = http_get_line(s, line, sizeof(line))) < 0)
1256  return err;
1257  } while (!*line); /* skip CR LF from last chunk */
1258 
1259  s->chunksize = strtoll(line, NULL, 16);
1260 
1261  av_log(NULL, AV_LOG_TRACE, "Chunked encoding data size: %"PRId64"'\n",
1262  s->chunksize);
1263 
1264  if (!s->chunksize)
1265  return 0;
1266  }
1267  size = FFMIN(size, s->chunksize);
1268  }
1269 #if CONFIG_ZLIB
1270  if (s->compressed)
1271  return http_buf_read_compressed(h, buf, size);
1272 #endif /* CONFIG_ZLIB */
1273  read_ret = http_buf_read(h, buf, size);
1274  if ( (read_ret < 0 && s->reconnect && (!h->is_streamed || s->reconnect_streamed) && s->filesize > 0 && s->off < s->filesize)
1275  || (read_ret == 0 && s->reconnect_at_eof && (!h->is_streamed || s->reconnect_streamed))) {
1276  int64_t target = h->is_streamed ? 0 : s->off;
1277 
1279  return AVERROR(EIO);
1280 
1281  av_log(h, AV_LOG_INFO, "Will reconnect at %"PRId64" error=%s.\n", s->off, av_err2str(read_ret));
1282  av_usleep(1000U*1000*s->reconnect_delay);
1283  s->reconnect_delay = 1 + 2*s->reconnect_delay;
1284  seek_ret = http_seek_internal(h, target, SEEK_SET, 1);
1285  if (seek_ret != target) {
1286  av_log(h, AV_LOG_ERROR, "Failed to reconnect at %"PRId64".\n", target);
1287  return read_ret;
1288  }
1289 
1290  read_ret = http_buf_read(h, buf, size);
1291  } else
1292  s->reconnect_delay = 0;
1293 
1294  return read_ret;
1295 }
1296 
1297 // Like http_read_stream(), but no short reads.
1298 // Assumes partial reads are an error.
1299 static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
1300 {
1301  int pos = 0;
1302  while (pos < size) {
1303  int len = http_read_stream(h, buf + pos, size - pos);
1304  if (len < 0)
1305  return len;
1306  pos += len;
1307  }
1308  return pos;
1309 }
1310 
1311 static void update_metadata(HTTPContext *s, char *data)
1312 {
1313  char *key;
1314  char *val;
1315  char *end;
1316  char *next = data;
1317 
1318  while (*next) {
1319  key = next;
1320  val = strstr(key, "='");
1321  if (!val)
1322  break;
1323  end = strstr(val, "';");
1324  if (!end)
1325  break;
1326 
1327  *val = '\0';
1328  *end = '\0';
1329  val += 2;
1330 
1331  av_dict_set(&s->metadata, key, val, 0);
1332 
1333  next = end + 2;
1334  }
1335 }
1336 
1337 static int store_icy(URLContext *h, int size)
1338 {
1339  HTTPContext *s = h->priv_data;
1340  /* until next metadata packet */
1341  int remaining = s->icy_metaint - s->icy_data_read;
1342 
1343  if (remaining < 0)
1344  return AVERROR_INVALIDDATA;
1345 
1346  if (!remaining) {
1347  /* The metadata packet is variable sized. It has a 1 byte header
1348  * which sets the length of the packet (divided by 16). If it's 0,
1349  * the metadata doesn't change. After the packet, icy_metaint bytes
1350  * of normal data follows. */
1351  uint8_t ch;
1352  int len = http_read_stream_all(h, &ch, 1);
1353  if (len < 0)
1354  return len;
1355  if (ch > 0) {
1356  char data[255 * 16 + 1];
1357  int ret;
1358  len = ch * 16;
1359  ret = http_read_stream_all(h, data, len);
1360  if (ret < 0)
1361  return ret;
1362  data[len + 1] = 0;
1363  if ((ret = av_opt_set(s, "icy_metadata_packet", data, 0)) < 0)
1364  return ret;
1365  update_metadata(s, data);
1366  }
1367  s->icy_data_read = 0;
1368  remaining = s->icy_metaint;
1369  }
1370 
1371  return FFMIN(size, remaining);
1372 }
1373 
1374 static int http_read(URLContext *h, uint8_t *buf, int size)
1375 {
1376  HTTPContext *s = h->priv_data;
1377 
1378  if (s->icy_metaint > 0) {
1379  size = store_icy(h, size);
1380  if (size < 0)
1381  return size;
1382  }
1383 
1384  size = http_read_stream(h, buf, size);
1385  if (size > 0)
1386  s->icy_data_read += size;
1387  return size;
1388 }
1389 
1390 /* used only when posting data */
1391 static int http_write(URLContext *h, const uint8_t *buf, int size)
1392 {
1393  char temp[11] = ""; /* 32-bit hex + CRLF + nul */
1394  int ret;
1395  char crlf[] = "\r\n";
1396  HTTPContext *s = h->priv_data;
1397 
1398  if (!s->chunked_post) {
1399  /* non-chunked data is sent without any special encoding */
1400  return ffurl_write(s->hd, buf, size);
1401  }
1402 
1403  /* silently ignore zero-size data since chunk encoding that would
1404  * signal EOF */
1405  if (size > 0) {
1406  /* upload data using chunked encoding */
1407  snprintf(temp, sizeof(temp), "%x\r\n", size);
1408 
1409  if ((ret = ffurl_write(s->hd, temp, strlen(temp))) < 0 ||
1410  (ret = ffurl_write(s->hd, buf, size)) < 0 ||
1411  (ret = ffurl_write(s->hd, crlf, sizeof(crlf) - 1)) < 0)
1412  return ret;
1413  }
1414  return size;
1415 }
1416 
1417 static int http_shutdown(URLContext *h, int flags)
1418 {
1419  int ret = 0;
1420  char footer[] = "0\r\n\r\n";
1421  HTTPContext *s = h->priv_data;
1422 
1423  /* signal end of chunked encoding if used */
1424  if (((flags & AVIO_FLAG_WRITE) && s->chunked_post) ||
1425  ((flags & AVIO_FLAG_READ) && s->chunked_post && s->listen)) {
1426  ret = ffurl_write(s->hd, footer, sizeof(footer) - 1);
1427  ret = ret > 0 ? 0 : ret;
1428  s->end_chunked_post = 1;
1429  }
1430 
1431  return ret;
1432 }
1433 
1434 static int http_close(URLContext *h)
1435 {
1436  int ret = 0;
1437  HTTPContext *s = h->priv_data;
1438 
1439 #if CONFIG_ZLIB
1440  inflateEnd(&s->inflate_stream);
1441  av_freep(&s->inflate_buffer);
1442 #endif /* CONFIG_ZLIB */
1443 
1444  if (!s->end_chunked_post)
1445  /* Close the write direction by sending the end of chunked encoding. */
1446  ret = http_shutdown(h, h->flags);
1447 
1448  if (s->hd)
1449  ffurl_closep(&s->hd);
1451  return ret;
1452 }
1453 
1454 static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect)
1455 {
1456  HTTPContext *s = h->priv_data;
1457  URLContext *old_hd = s->hd;
1458  int64_t old_off = s->off;
1459  uint8_t old_buf[BUFFER_SIZE];
1460  int old_buf_size, ret;
1461  AVDictionary *options = NULL;
1462 
1463  if (whence == AVSEEK_SIZE)
1464  return s->filesize;
1465  else if (!force_reconnect &&
1466  ((whence == SEEK_CUR && off == 0) ||
1467  (whence == SEEK_SET && off == s->off)))
1468  return s->off;
1469  else if ((s->filesize == -1 && whence == SEEK_END))
1470  return AVERROR(ENOSYS);
1471 
1472  if (whence == SEEK_CUR)
1473  off += s->off;
1474  else if (whence == SEEK_END)
1475  off += s->filesize;
1476  else if (whence != SEEK_SET)
1477  return AVERROR(EINVAL);
1478  if (off < 0)
1479  return AVERROR(EINVAL);
1480  s->off = off;
1481 
1482  if (s->off && h->is_streamed)
1483  return AVERROR(ENOSYS);
1484 
1485  /* we save the old context in case the seek fails */
1486  old_buf_size = s->buf_end - s->buf_ptr;
1487  memcpy(old_buf, s->buf_ptr, old_buf_size);
1488  s->hd = NULL;
1489 
1490  /* if it fails, continue on old connection */
1491  if ((ret = http_open_cnx(h, &options)) < 0) {
1492  av_dict_free(&options);
1493  memcpy(s->buffer, old_buf, old_buf_size);
1494  s->buf_ptr = s->buffer;
1495  s->buf_end = s->buffer + old_buf_size;
1496  s->hd = old_hd;
1497  s->off = old_off;
1498  return ret;
1499  }
1500  av_dict_free(&options);
1501  ffurl_close(old_hd);
1502  return off;
1503 }
1504 
1505 static int64_t http_seek(URLContext *h, int64_t off, int whence)
1506 {
1507  return http_seek_internal(h, off, whence, 0);
1508 }
1509 
1511 {
1512  HTTPContext *s = h->priv_data;
1513  return ffurl_get_file_handle(s->hd);
1514 }
1515 
1516 #define HTTP_CLASS(flavor) \
1517 static const AVClass flavor ## _context_class = { \
1518  .class_name = # flavor, \
1519  .item_name = av_default_item_name, \
1520  .option = options, \
1521  .version = LIBAVUTIL_VERSION_INT, \
1522 }
1523 
1524 #if CONFIG_HTTP_PROTOCOL
1525 HTTP_CLASS(http);
1526 
1527 const URLProtocol ff_http_protocol = {
1528  .name = "http",
1529  .url_open2 = http_open,
1530  .url_accept = http_accept,
1531  .url_handshake = http_handshake,
1532  .url_read = http_read,
1533  .url_write = http_write,
1534  .url_seek = http_seek,
1535  .url_close = http_close,
1536  .url_get_file_handle = http_get_file_handle,
1537  .url_shutdown = http_shutdown,
1538  .priv_data_size = sizeof(HTTPContext),
1539  .priv_data_class = &http_context_class,
1541  .default_whitelist = "http,https,tls,rtp,tcp,udp,crypto,httpproxy"
1542 };
1543 #endif /* CONFIG_HTTP_PROTOCOL */
1544 
1545 #if CONFIG_HTTPS_PROTOCOL
1546 HTTP_CLASS(https);
1547 
1549  .name = "https",
1550  .url_open2 = http_open,
1551  .url_read = http_read,
1552  .url_write = http_write,
1553  .url_seek = http_seek,
1554  .url_close = http_close,
1555  .url_get_file_handle = http_get_file_handle,
1556  .url_shutdown = http_shutdown,
1557  .priv_data_size = sizeof(HTTPContext),
1558  .priv_data_class = &https_context_class,
1560  .default_whitelist = "http,https,tls,rtp,tcp,udp,crypto,httpproxy"
1561 };
1562 #endif /* CONFIG_HTTPS_PROTOCOL */
1563 
1564 #if CONFIG_HTTPPROXY_PROTOCOL
1565 static int http_proxy_close(URLContext *h)
1566 {
1567  HTTPContext *s = h->priv_data;
1568  if (s->hd)
1569  ffurl_closep(&s->hd);
1570  return 0;
1571 }
1572 
1573 static int http_proxy_open(URLContext *h, const char *uri, int flags)
1574 {
1575  HTTPContext *s = h->priv_data;
1576  char hostname[1024], hoststr[1024];
1577  char auth[1024], pathbuf[1024], *path;
1578  char lower_url[100];
1579  int port, ret = 0, attempts = 0;
1580  HTTPAuthType cur_auth_type;
1581  char *authstr;
1582  int new_loc;
1583 
1584  if( s->seekable == 1 )
1585  h->is_streamed = 0;
1586  else
1587  h->is_streamed = 1;
1588 
1589  av_url_split(NULL, 0, auth, sizeof(auth), hostname, sizeof(hostname), &port,
1590  pathbuf, sizeof(pathbuf), uri);
1591  ff_url_join(hoststr, sizeof(hoststr), NULL, NULL, hostname, port, NULL);
1592  path = pathbuf;
1593  if (*path == '/')
1594  path++;
1595 
1596  ff_url_join(lower_url, sizeof(lower_url), "tcp", NULL, hostname, port,
1597  NULL);
1598 redo:
1599  ret = ffurl_open_whitelist(&s->hd, lower_url, AVIO_FLAG_READ_WRITE,
1600  &h->interrupt_callback, NULL,
1602  if (ret < 0)
1603  return ret;
1604 
1605  authstr = ff_http_auth_create_response(&s->proxy_auth_state, auth,
1606  path, "CONNECT");
1607  snprintf(s->buffer, sizeof(s->buffer),
1608  "CONNECT %s HTTP/1.1\r\n"
1609  "Host: %s\r\n"
1610  "Connection: close\r\n"
1611  "%s%s"
1612  "\r\n",
1613  path,
1614  hoststr,
1615  authstr ? "Proxy-" : "", authstr ? authstr : "");
1616  av_freep(&authstr);
1617 
1618  if ((ret = ffurl_write(s->hd, s->buffer, strlen(s->buffer))) < 0)
1619  goto fail;
1620 
1621  s->buf_ptr = s->buffer;
1622  s->buf_end = s->buffer;
1623  s->line_count = 0;
1624  s->filesize = -1;
1625  cur_auth_type = s->proxy_auth_state.auth_type;
1626 
1627  /* Note: This uses buffering, potentially reading more than the
1628  * HTTP header. If tunneling a protocol where the server starts
1629  * the conversation, we might buffer part of that here, too.
1630  * Reading that requires using the proper ffurl_read() function
1631  * on this URLContext, not using the fd directly (as the tls
1632  * protocol does). This shouldn't be an issue for tls though,
1633  * since the client starts the conversation there, so there
1634  * is no extra data that we might buffer up here.
1635  */
1636  ret = http_read_header(h, &new_loc);
1637  if (ret < 0)
1638  goto fail;
1639 
1640  attempts++;
1641  if (s->http_code == 407 &&
1642  (cur_auth_type == HTTP_AUTH_NONE || s->proxy_auth_state.stale) &&
1643  s->proxy_auth_state.auth_type != HTTP_AUTH_NONE && attempts < 2) {
1644  ffurl_closep(&s->hd);
1645  goto redo;
1646  }
1647 
1648  if (s->http_code < 400)
1649  return 0;
1650  ret = ff_http_averror(s->http_code, AVERROR(EIO));
1651 
1652 fail:
1653  http_proxy_close(h);
1654  return ret;
1655 }
1656 
1657 static int http_proxy_write(URLContext *h, const uint8_t *buf, int size)
1658 {
1659  HTTPContext *s = h->priv_data;
1660  return ffurl_write(s->hd, buf, size);
1661 }
1662 
1664  .name = "httpproxy",
1665  .url_open = http_proxy_open,
1666  .url_read = http_buf_read,
1667  .url_write = http_proxy_write,
1668  .url_close = http_proxy_close,
1669  .url_get_file_handle = http_get_file_handle,
1670  .priv_data_size = sizeof(HTTPContext),
1671  .flags = URL_PROTOCOL_FLAG_NETWORK,
1672 };
1673 #endif /* CONFIG_HTTPPROXY_PROTOCOL */
static int http_get_line(HTTPContext *s, char *line, int line_size)
Definition: http.c:559
void av_url_split(char *proto, int proto_size, char *authorization, int authorization_size, char *hostname, int hostname_size, int *port_ptr, char *path, int path_size, const char *url)
Split a URL string into components.
Definition: utils.c:4440
static void parse_content_range(URLContext *h, const char *p)
Definition: http.c:612
AVDictionary * metadata
Definition: http.c:103
#define NULL
Definition: coverity.c:32
static int http_connect(URLContext *h, const char *path, const char *local_path, const char *hoststr, const char *auth, const char *proxyauth, int *new_location)
Definition: http.c:1001
const char const char void * val
Definition: avisynth_c.h:771
void ff_make_absolute_url(char *buf, int size, const char *base, const char *rel)
Convert a relative url into an absolute url, given a base url.
Definition: url.c:80
const char * s
Definition: avisynth_c.h:768
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
int icy_data_read
Definition: http.c:98
int ffurl_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent)
Create an URLContext for accessing to the resource indicated by url, and open it. ...
Definition: avio.c:309
#define URL_PROTOCOL_FLAG_NETWORK
Definition: url.h:34
uint8_t * post_data
Definition: http.c:89
int reconnect_delay
Definition: http.c:115
AVOption.
Definition: opt.h:245
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
#define AV_OPT_FLAG_EXPORT
The option is intended for exporting values to the caller.
Definition: opt.h:286
HTTPAuthType
Authentication types, ordered from weakest to strongest.
Definition: httpauth.h:28
#define BUFFER_SIZE
Definition: http.c:47
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static int http_close(URLContext *h)
Definition: http.c:1434
else temp
Definition: vf_mcdeint.c:259
int ffurl_write(URLContext *h, const unsigned char *buf, int size)
Write size bytes from buf to the resource accessed by h.
Definition: avio.c:421
char * av_stristr(const char *s1, const char *s2)
Locate the first case-independent occurrence in the string haystack of the string needle...
Definition: avstring.c:56
int is_streamed
true if streamed (no seek possible), default = false
Definition: url.h:45
AVIOInterruptCB interrupt_callback
Definition: url.h:47
HTTPAuthState proxy_auth_state
Definition: http.c:69
Definition: http.c:55
#define AVIO_FLAG_READ
read-only
Definition: avio.h:606
char * icy_metadata_headers
Definition: http.c:101
static av_const int av_isspace(int c)
Locale-independent conversion of ASCII isspace.
Definition: avstring.h:222
const URLProtocol ff_http_protocol
#define AVIO_FLAG_WRITE
write-only
Definition: avio.h:607
int av_strncasecmp(const char *a, const char *b, size_t n)
Locale-independent case-insensitive compare.
Definition: avstring.c:223
#define AVERROR_HTTP_NOT_FOUND
Definition: error.h:79
int av_dict_copy(AVDictionary **dst, const AVDictionary *src, int flags)
Copy entries from one AVDictionary struct into another.
Definition: dict.c:217
int flags
Definition: url.h:43
static int http_listen(URLContext *h, const char *uri, int flags, AVDictionary **options)
Definition: http.c:450
char * content_type
Definition: http.c:77
int version
Definition: avisynth_c.h:766
int av_usleep(unsigned usec)
Sleep for a period of time.
Definition: time.c:76
static int http_getc(HTTPContext *s)
Definition: http.c:542
HTTP Authentication state structure.
Definition: httpauth.h:55
int auth_type
The currently chosen auth type.
Definition: httpauth.h:59
int is_connected_server
Definition: http.c:122
#define AV_DICT_DONT_STRDUP_KEY
Take ownership of a key that's been allocated with av_malloc() or another memory allocation function...
Definition: dict.h:73
#define HTTP_SINGLE
Definition: http.c:49
#define MAX_URL_SIZE
Definition: internal.h:30
static int parse_cookie(HTTPContext *s, const char *p, AVDictionary **cookies)
Definition: http.c:683
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int end_chunked_post
Definition: http.c:84
int av_stristart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str independent of case.
Definition: avstring.c:45
static int http_get_file_handle(URLContext *h)
Definition: http.c:1510
static int http_buf_read(URLContext *h, uint8_t *buf, int size)
Definition: http.c:1166
uint8_t
#define av_malloc(s)
int post_datalen
Definition: http.c:90
AVOptions.
int ff_http_averror(int status_code, int default_averror)
Definition: http.c:317
miscellaneous OS support macros and functions.
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition: log.h:202
static int http_read_header(URLContext *h, int *new_location)
Definition: http.c:969
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
#define HTTP_HEADERS_SIZE
Definition: http.h:27
int is_akamai
Definition: http.c:91
static int http_open_cnx(URLContext *h, AVDictionary **options)
Definition: http.c:243
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
Definition: dict.c:40
static void inflate(uint8_t *dst, const uint8_t *p1, int width, int threshold, const uint8_t *coordinates[], int coord)
Definition: vf_neighbor.c:129
uint32_t tag
Definition: movenc.c:1382
#define DEFAULT_USER_AGENT
Definition: http.c:128
#define AVERROR_EOF
End of file.
Definition: error.h:55
void ff_http_init_auth_state(URLContext *dest, const URLContext *src)
Initialize the authentication state based on another HTTP URLContext.
Definition: http.c:171
HTTP 1.0 Basic auth from RFC 1945 (also in RFC 2617)
Definition: httpauth.h:30
ptrdiff_t size
Definition: opengl_enc.c:101
static const uint8_t header[24]
Definition: sdr2.c:67
static int http_open_cnx_internal(URLContext *h, AVDictionary **options)
Definition: http.c:181
int line_count
Definition: http.c:62
#define av_log(a,...)
unsigned char * buf_end
Definition: http.c:61
static void update_metadata(HTTPContext *s, char *data)
Definition: http.c:1311
#define U(x)
Definition: vp56_arith.h:37
int is_multi_client
Definition: http.c:120
int chunked_post
Definition: http.c:82
static int64_t http_seek_internal(URLContext *h, int64_t off, int whence, int force_reconnect)
Definition: http.c:1454
int ffurl_alloc(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb)
Create a URLContext for accessing to the resource indicated by url, but do not initiate the connectio...
Definition: avio.c:292
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int reconnect_delay_max
Definition: http.c:116
#define E
Definition: http.c:127
const char * protocol_whitelist
Definition: url.h:49
#define AVERROR(e)
Definition: error.h:43
static int http_write(URLContext *h, const uint8_t *buf, int size)
Definition: http.c:1391
static const AVOption options[]
Definition: http.c:130
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values. ...
Definition: dict.c:203
static int http_handshake(URLContext *c)
Definition: http.c:414
Definition: graph2dot.c:48
simple assert() macros that are a bit more flexible than ISO C assert().
#define OFFSET(x)
Definition: http.c:125
static void body(uint32_t ABCD[4], uint32_t *src, int nblocks)
Definition: md5.c:101
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition: avstring.c:83
#define fail()
Definition: checkasm.h:83
AVDictionary * chained_options
Definition: http.c:109
#define AVERROR_HTTP_SERVER_ERROR
Definition: error.h:81
static int store_icy(URLContext *h, int size)
Definition: http.c:1337
char * headers
Definition: http.c:71
char * user_agent
Definition: http.c:73
#define AVERROR_HTTP_UNAUTHORIZED
Definition: error.h:77
char * icy_metadata_packet
Definition: http.c:102
char method[16]
Definition: ffserver.c:170
#define FFMIN(a, b)
Definition: common.h:96
const URLProtocol ff_httpproxy_protocol
int64_t off
Definition: http.c:66
int av_strcasecmp(const char *a, const char *b)
Locale-independent case-insensitive compare.
Definition: avstring.c:213
int64_t end_off
Definition: http.c:66
int send_expect_100
Definition: http.c:110
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition: error.h:119
int willclose
Definition: http.c:80
int is_mediagateway
Definition: http.c:92
int ffurl_handshake(URLContext *c)
Perform one step of the protocol handshake to accept a new client.
Definition: avio.c:234
int reconnect
Definition: http.c:112
int ff_http_match_no_proxy(const char *no_proxy, const char *hostname)
Definition: network.c:307
#define src
Definition: vp9dsp.c:530
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.
Definition: avio.c:626
int ffurl_accept(URLContext *s, URLContext **c)
Accept an URLContext c on an URLContext s.
Definition: avio.c:226
AVDictionary * cookie_dict
Definition: http.c:95
int stale
Auth ok, but needs to be resent with a new nonce.
Definition: httpauth.h:71
offset must point to a pointer immediately followed by an int for the length
Definition: opt.h:229
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
Definition: avio.c:444
int ff_url_join(char *str, int size, const char *proto, const char *authorization, const char *hostname, int port, const char *fmt,...)
Definition: url.c:36
int reconnect_streamed
Definition: http.c:114
static int http_read(URLContext *h, uint8_t *buf, int size)
Definition: http.c:1374
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
int av_reallocp(void *ptr, size_t size)
Allocate, reallocate, or free a block of memory through a pointer to a pointer.
Definition: mem.c:187
char * av_strdup(const char *s)
Duplicate a string.
Definition: mem.c:267
const char * protocol_blacklist
Definition: url.h:50
char * http_proxy
Definition: http.c:70
HandshakeState handshake_step
Definition: http.c:121
int seekable
Control seekability, 0 = disable, 1 = enable, -1 = probe.
Definition: http.c:81
void * buf
Definition: avisynth_c.h:690
Definition: url.h:38
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
Definition: avio.h:608
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
Describe the class of an AVClass context structure.
Definition: log.h:67
#define SPACE_CHARS
Definition: internal.h:287
void * priv_data
Definition: url.h:41
#define AVERROR_HTTP_OTHER_4XX
Definition: error.h:80
size_t av_strlcatf(char *dst, size_t size, const char *fmt,...)
Definition: avstring.c:101
#define snprintf
Definition: snprintf.h:34
int icy
Definition: http.c:96
char * ff_http_auth_create_response(HTTPAuthState *state, const char *auth, const char *path, const char *method)
Definition: httpauth.c:245
const char * name
Definition: url.h:54
URLContext * hd
Definition: http.c:60
static int has_header(const char *str, const char *header)
Definition: http.c:961
char * mime_type
Definition: http.c:72
#define SIZE_SPECIFIER
Definition: internal.h:252
#define AVERROR_HTTP_FORBIDDEN
Definition: error.h:78
static int flags
Definition: cpu.c:47
int ffurl_close(URLContext *h)
Definition: avio.c:467
static int process_line(URLContext *h, char *line, int line_count, int *new_location)
Definition: http.c:720
int ff_http_do_new_request(URLContext *h, const char *uri)
Send a new HTTP request, reusing the old connection.
Definition: http.c:299
char * av_strtok(char *s, const char *delim, char **saveptr)
Split the string into several tokens which can be accessed by successive calls to av_strtok()...
Definition: avstring.c:184
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
Definition: avstring.c:34
Main libavformat public API header.
char * cookies
holds newline ( ) delimited Set-Cookie header field values (without the "Set-Cookie: " field name) ...
Definition: http.c:93
#define MAX_REDIRECTS
Definition: http.c:48
static int parse_content_encoding(URLContext *h, const char *p)
Definition: http.c:627
int reconnect_at_eof
Definition: http.c:113
static double c[64]
int av_dict_set_int(AVDictionary **pm, const char *key, int64_t value, int flags)
Convenience wrapper for av_dict_set that converts the value to a string and stores it...
Definition: dict.c:147
HandshakeState
Definition: http.c:51
static int get_cookies(HTTPContext *s, char **cookies, const char *path, const char *domain)
Create a string containing cookie values for use as a HTTP cookie header field value for a particular...
Definition: http.c:864
int http_code
Definition: http.c:63
char * filename
specified URL
Definition: url.h:42
int listen
Definition: http.c:117
static int http_open(URLContext *h, const char *uri, int flags, AVDictionary **options)
Definition: http.c:481
#define AVSEEK_SIZE
ORing this as the "whence" parameter to a seek function causes it to return the filesize without seek...
Definition: avio.h:485
char * key
Definition: dict.h:86
uint8_t pi<< 24) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_U8,(uint64_t)((*(constuint8_t *) pi-0x80U))<< 56) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S16,(uint64_t)(*(constint16_t *) pi)<< 48) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_S32,(uint64_t)(*(constint32_t *) pi)<< 32) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S64,(*(constint64_t *) pi >>56)+0x80) CONV_FUNC(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0f/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S64,*(constint64_t *) pi *(1.0/(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_FLT, llrintf(*(constfloat *) pi *(INT64_C(1)<< 63))) CONV_FUNC(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31)))) CONV_FUNC(AV_SAMPLE_FMT_S64, int64_t, AV_SAMPLE_FMT_DBL, llrint(*(constdouble *) pi *(INT64_C(1)<< 63)))#defineFMT_PAIR_FUNC(out, in) staticconv_func_type *constfmt_pair_to_conv_functions[AV_SAMPLE_FMT_NB *AV_SAMPLE_FMT_NB]={FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_U8), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S16), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S32), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_FLT), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_DBL), FMT_PAIR_FUNC(AV_SAMPLE_FMT_U8, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S16, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_FLT, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_DBL, AV_SAMPLE_FMT_S64), FMT_PAIR_FUNC(AV_SAMPLE_FMT_S64, AV_SAMPLE_FMT_S64),};staticvoidcpy1(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, len);}staticvoidcpy2(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 2 *len);}staticvoidcpy4(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 4 *len);}staticvoidcpy8(uint8_t **dst, constuint8_t **src, intlen){memcpy(*dst,*src, 8 *len);}AudioConvert *swri_audio_convert_alloc(enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, constint *ch_map, intflags){AudioConvert *ctx;conv_func_type *f=fmt_pair_to_conv_functions[av_get_packed_sample_fmt(out_fmt)+AV_SAMPLE_FMT_NB *av_get_packed_sample_fmt(in_fmt)];if(!f) returnNULL;ctx=av_mallocz(sizeof(*ctx));if(!ctx) returnNULL;if(channels==1){in_fmt=av_get_planar_sample_fmt(in_fmt);out_fmt=av_get_planar_sample_fmt(out_fmt);}ctx->channels=channels;ctx->conv_f=f;ctx->ch_map=ch_map;if(in_fmt==AV_SAMPLE_FMT_U8||in_fmt==AV_SAMPLE_FMT_U8P) memset(ctx->silence, 0x80, sizeof(ctx->silence));if(out_fmt==in_fmt &&!ch_map){switch(av_get_bytes_per_sample(in_fmt)){case1:ctx->simd_f=cpy1;break;case2:ctx->simd_f=cpy2;break;case4:ctx->simd_f=cpy4;break;case8:ctx->simd_f=cpy8;break;}}if(HAVE_YASM &&1) swri_audio_convert_init_x86(ctx, out_fmt, in_fmt, channels);if(ARCH_ARM) swri_audio_convert_init_arm(ctx, out_fmt, in_fmt, channels);if(ARCH_AARCH64) swri_audio_convert_init_aarch64(ctx, out_fmt, in_fmt, channels);returnctx;}voidswri_audio_convert_free(AudioConvert **ctx){av_freep(ctx);}intswri_audio_convert(AudioConvert *ctx, AudioData *out, AudioData *in, intlen){intch;intoff=0;constintos=(out->planar?1:out->ch_count)*out->bps;unsignedmisaligned=0;av_assert0(ctx->channels==out->ch_count);if(ctx->in_simd_align_mask){intplanes=in->planar?in->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) in->ch[ch];misaligned|=m &ctx->in_simd_align_mask;}if(ctx->out_simd_align_mask){intplanes=out->planar?out->ch_count:1;unsignedm=0;for(ch=0;ch< planes;ch++) m|=(intptr_t) out->ch[ch];misaligned|=m &ctx->out_simd_align_mask;}if(ctx->simd_f &&!ctx->ch_map &&!misaligned){off=len &~15;av_assert1(off >=0);av_assert1(off<=len);av_assert2(ctx->channels==SWR_CH_MAX||!in->ch[ctx->channels]);if(off >0){if(out->planar==in->planar){intplanes=out->planar?out->ch_count:1;for(ch=0;ch< planes;ch++){ctx->simd_f(out-> ch ch
Definition: audioconvert.c:56
void ff_http_auth_handle_header(HTTPAuthState *state, const char *key, const char *value)
Definition: httpauth.c:90
int multiple_requests
Definition: http.c:88
HTTPAuthState auth_state
Definition: http.c:68
#define av_free(p)
static int cookie_string(AVDictionary *dict, char **cookies)
Definition: http.c:697
char * value
Definition: dict.h:87
const URLProtocol ff_https_protocol
int len
static int parse_location(HTTPContext *s, const char *p)
Definition: http.c:598
uint8_t * buffer
Definition: ffserver.c:173
int64_t filesize
Definition: http.c:66
char * resource
Definition: http.c:118
char * location
Definition: http.c:67
static uint8_t tmp[8]
Definition: des.c:38
static int http_shutdown(URLContext *h, int flags)
Definition: http.c:1417
int icy_metaint
Definition: http.c:100
static int http_write_reply(URLContext *h, int status_code)
Definition: http.c:334
#define AV_OPT_FLAG_READONLY
The option may not be set through the AVOptions API, only read.
Definition: opt.h:291
int end_header
Definition: http.c:86
unsigned char * buf_ptr
Definition: http.c:61
#define D
Definition: http.c:126
#define AVERROR_HTTP_BAD_REQUEST
Definition: error.h:76
char * method
Definition: http.c:111
static int parse_icy(HTTPContext *s, const char *tag, const char *p)
Definition: http.c:661
static int http_read_stream(URLContext *h, uint8_t *buf, int size)
Definition: http.c:1235
#define av_freep(p)
static int http_read_stream_all(URLContext *h, uint8_t *buf, int size)
Definition: http.c:1299
#define AV_DICT_IGNORE_SUFFIX
Return first entry in a dictionary whose first part corresponds to the search key, ignoring the suffix of the found key string.
Definition: dict.h:70
unbuffered private I/O API
static void handle_http_errors(URLContext *h, int error)
Definition: http.c:408
static int64_t http_seek(URLContext *h, int64_t off, int whence)
Definition: http.c:1505
int reply_code
Definition: http.c:119
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
Definition: opt.c:431
int ffurl_read(URLContext *h, unsigned char *buf, int size)
Read up to size bytes from the resource accessed by h, and store the read bytes in buf...
Definition: avio.c:407
char * av_strndup(const char *s, size_t len)
Duplicate a substring of a string.
Definition: mem.c:279
static int http_accept(URLContext *s, URLContext **c)
Definition: http.c:522
int64_t chunksize
Definition: http.c:65
GLuint buffer
Definition: opengl_enc.c:102
#define HTTP_CLASS(flavor)
Definition: http.c:1516
No authentication specified.
Definition: httpauth.h:29
static int check_http_code(URLContext *h, int http_code, const char *end)
Definition: http.c:583
const char * name
Definition: opengl_enc.c:103