22#include "config_components.h"
40#define IO_BUFFER_SIZE 32768
56 if (!prev &&
h->priv_data &&
h->prot->priv_data_class)
61#define OFFSET(x) offsetof(URLContext,x)
62#define E AV_OPT_FLAG_ENCODING_PARAM
63#define D AV_OPT_FLAG_DECODING_PARAM
65 {
"protocol_whitelist",
"List of protocols that are allowed to be used",
OFFSET(protocol_whitelist),
AV_OPT_TYPE_STRING, { .str =
NULL }, 0, 0,
D },
66 {
"protocol_blacklist",
"List of protocols that are not allowed to be used",
OFFSET(protocol_blacklist),
AV_OPT_TYPE_STRING, { .str =
NULL }, 0, 0,
D },
68 {
"prefer_libcurl",
"use the libcurl protocol for http(s) URLs when available",
OFFSET(prefer_libcurl),
AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1,
D },
73 .class_name =
"URLContext",
85 return prev ?
NULL :
s->opaque;
91 *iter = (
void*)(uintptr_t)
c;
95#define AVIOOFFSET(x) offsetof(AVIOContext,x)
96#define E AV_OPT_FLAG_ENCODING_PARAM
97#define D AV_OPT_FLAG_DECODING_PARAM
104 .class_name =
"AVIOContext",
124 const char *filename,
int flags,
136 "Impossible to open the '%s' protocol for reading\n", up->
name);
141 "Impossible to open the '%s' protocol for writing\n", up->
name);
173 if (strcmp(up->
name,
"subfile"))
176 while(ret >= 0 && (
key= strchr(p, sep)) && p<
key && (
val = strchr(
key+1, sep))){
189 memmove(start,
key+1, strlen(
key));
278 if (
s->prot->url_accept)
279 return s->prot->url_accept(
s,
c);
297 if (
c->prot->url_handshake) {
298 ret =
c->prot->url_handshake(
c);
312#define URL_SCHEME_CHARS \
313 "abcdefghijklmnopqrstuvwxyz" \
314 "ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
320 char proto_str[128], proto_nested[128], *ptr;
324 if (filename[proto_len] !=
':' &&
325 (strncmp(filename,
"subfile,", 8) || !strchr(filename + proto_len + 1,
':')) ||
327 strcpy(proto_str,
"file");
330 FFMIN(proto_len + 1,
sizeof(proto_str)));
332 av_strlcpy(proto_nested, proto_str,
sizeof(proto_nested));
333 if ((ptr = strchr(proto_nested,
'+')))
339 for (
i = 0; protocols[
i];
i++) {
341 if (!strcmp(proto_str, up->
name)) {
346 !strcmp(proto_nested, up->
name)) {
355 "openssl, gnutls or securetransport enabled.\n");
373#if CONFIG_LIBCURL_PROTOCOL
396 return dummy.prefer_libcurl;
402 const char *whitelist,
const char* blacklist,
409#if CONFIG_LIBCURL_PROTOCOL
412 if (prefer_libcurl(filename,
options, parent))
429 if (
options && (*puc)->prot->priv_data_class &&
438 !strcmp(whitelist, e->
value));
441 !strcmp(blacklist, e->
value));
463 const char *whitelist,
const char* blacklist,
467 whitelist, blacklist, parent,
NULL);
474 int buffer_size, max_packet_size;
476 max_packet_size =
h->max_packet_size;
477 if (max_packet_size) {
478 buffer_size = max_packet_size;
483 if (buffer_size > INT_MAX/2)
498 if (
h->protocol_whitelist) {
499 s->protocol_whitelist =
av_strdup(
h->protocol_whitelist);
500 if (!
s->protocol_whitelist) {
505 if (
h->protocol_blacklist) {
506 s->protocol_blacklist =
av_strdup(
h->protocol_blacklist);
507 if (!
s->protocol_blacklist) {
515 s->max_packet_size = max_packet_size;
516 s->min_packet_size =
h->min_packet_size;
518 s->read_pause =
h->prot->url_read_pause;
519 s->read_seek =
h->prot->url_read_seek;
521 if (
h->prot->url_read_seek)
531 const char *whitelist,
const char *blacklist,
540 blacklist,
NULL, avfc);
553 const char *whitelist,
const char *blacklist)
556 whitelist, blacklist,
NULL);
573 int size,
int size_min,
577 int fast_retries = 5;
581 while (
len < size_min) {
608 fast_retries =
FFMAX(fast_retries, 2);
639 if (
h->max_packet_size &&
size >
h->max_packet_size)
650 if (!
h->prot->url_seek)
663 if (
h->is_connected &&
h->prot->url_close)
664 ret =
h->prot->url_close(
h);
669 if (
h->prot->priv_data_size) {
670 if (
h->prot->priv_data_class)
700 "Statistics: %"PRId64
" bytes written, %d seeks, %d writeouts\n",
701 ctx->bytes_written,
ctx->seek_count,
ctx->writeout_count);
704 ctx->bytes_read,
ctx->seek_count);
729 return p ? p->name :
NULL;
739 if (
h->prot->url_check) {
740 ret =
h->prot->url_check(
h,
flags);
780 if (
h->prot->url_delete)
781 ret =
h->prot->url_delete(
h);
809 if (
h->prot->url_open_dir &&
h->prot->url_read_dir &&
h->prot->url_close_dir) {
810 if (
options &&
h->prot->priv_data_class &&
813 ret =
h->prot->url_open_dir(
h);
820 ctx->url_context =
h;
836 if (!
s || !
s->url_context)
839 if ((ret =
h->prot->url_read_dir(
h, next)) < 0)
849 if (!(*
s) || !(*s)->url_context)
851 h = (*s)->url_context;
852 h->prot->url_close_dir(
h);
884 if (!
h || !
h->prot || !
h->prot->url_get_file_handle)
886 return h->prot->url_get_file_handle(
h);
893 if (!
h->prot->url_get_multi_file_handle) {
894 if (!
h->prot->url_get_file_handle)
900 *handles[0] =
h->prot->url_get_file_handle(
h);
903 return h->prot->url_get_multi_file_handle(
h, handles, numhandles);
910 if (!
h || !
h->prot || !
h->prot->url_get_short_seek)
912 return h->prot->url_get_short_seek(
h);
917 if (!
h || !
h->prot || !
h->prot->url_shutdown)
919 return h->prot->url_shutdown(
h,
flags);
924 if (
cb &&
cb->callback)
925 return cb->callback(
cb->opaque);
929int ff_rename(
const char *url_src,
const char *url_dst,
void *logctx)
static double val(void *priv, double ch)
static AVFormatContext * ctx
simple assert() macros that are a bit more flexible than ISO C assert().
#define av_assert0(cond)
assert() equivalent, that is always enabled.
int ffurl_shutdown(URLContext *h, int flags)
Signal the URLContext that we are done reading or writing the stream.
int avio_handshake(AVIOContext *c)
Perform one step of the protocol handshake to accept a new client.
static void * urlcontext_child_next(void *obj, void *prev)
int ffio_fdopen(AVIOContext **sp, URLContext *h)
Create and initialize a AVIOContext for accessing the resource referenced by the URLContext h.
static const char * urlcontext_to_name(void *ptr)
int ffurl_handshake(URLContext *c)
Perform one step of the protocol handshake to accept a new client.
static void * avio_child_next(void *obj, void *prev)
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...
static const AVClass url_context_class
URLContext * ffio_geturlcontext(AVIOContext *s)
Return the URLContext associated with the AVIOContext.
static const AVOption avio_options[]
int ffio_open_whitelist(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist)
static const AVClass * child_class_iterate(void **iter)
int ff_check_interrupt(AVIOInterruptCB *cb)
Check if the user has requested to interrupt a blocking function associated with cb.
int avio_close_dir(AVIODirContext **s)
Close directory.
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.
static const AVOption urlcontext_options[]
int64_t ffurl_seek2(void *urlcontext, int64_t pos, int whence)
int ffurl_write2(void *urlcontext, const uint8_t *buf, int size)
int ffurl_read2(void *urlcontext, uint8_t *buf, int size)
int avio_open_dir(AVIODirContext **s, const char *url, AVDictionary **options)
Open directory for reading.
int64_t ffurl_size(URLContext *h)
Return the filesize of the resource accessed by h, AVERROR(ENOSYS) if the operation is not supported ...
int ffurl_accept(URLContext *s, URLContext **c)
Accept an URLContext c on an URLContext s.
int ffurl_closep(URLContext **hh)
Close the resource accessed by the URLContext h, and free the memory used by it.
int ffurl_close(URLContext *h)
int avio_accept(AVIOContext *s, AVIOContext **c)
Accept and allocate a client context on a server context.
static int url_open_whitelist(URLContext **puc, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, URLContext *parent, AVFormatContext *avfc)
static const struct URLProtocol * url_find_protocol(const char *filename)
int ffurl_get_short_seek(void *urlcontext)
Return the current short seek threshold value for this URL.
void avio_free_directory_entry(AVIODirEntry **entry)
Free entry allocated by avio_read_dir().
static int retry_transfer_wrapper(URLContext *h, uint8_t *buf, const uint8_t *cbuf, int size, int size_min, int read)
int avio_check(const char *url, int flags)
Return AVIO_FLAG_* access flags corresponding to the access permissions of the resource in url,...
int ffio_open_whitelist2(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options, const char *whitelist, const char *blacklist, AVFormatContext *avfc)
Like ffio_open_whitelist(), but additionally records avfc on the underlying URLContext before it is c...
int ffurl_connect(URLContext *uc, AVDictionary **options)
Connect an URLContext that has been allocated by ffurl_alloc.
int avio_open(AVIOContext **s, const char *filename, int flags)
Create and initialize a AVIOContext for accessing the resource indicated by url.
int ffurl_get_file_handle(URLContext *h)
Return the file descriptor associated with this URL.
const AVClass ff_avio_class
int ffurl_get_multi_file_handle(URLContext *h, int **handles, int *numhandles)
Return the file descriptors associated with this URL.
int avio_close(AVIOContext *s)
Close the resource accessed by the AVIOContext s and free it.
int ffurl_move(const char *url_src, const char *url_dst)
Move or rename a resource.
int avio_read_dir(AVIODirContext *s, AVIODirEntry **next)
Get next directory entry.
int avio_closep(AVIOContext **s)
Close the resource accessed by the AVIOContext *s, free it and set the pointer pointing to it to NULL...
int ffurl_read_complete(URLContext *h, unsigned char *buf, int size)
Read as many bytes as possible (up to size), calling the read function multiple times if necessary.
int avio_open2(AVIOContext **s, const char *filename, int flags, const AVIOInterruptCB *int_cb, AVDictionary **options)
Create and initialize a AVIOContext for accessing the resource indicated by url.
int ffurl_delete(const char *url)
Delete a resource.
static int url_alloc_for_protocol(URLContext **puc, const URLProtocol *up, const char *filename, int flags, const AVIOInterruptCB *int_cb)
const char * avio_find_protocol_name(const char *url)
Return the name of the protocol that will handle the passed URL.
int ff_rename(const char *url_src, const char *url_dst, void *logctx)
Wrap ffurl_move() and log if error happens.
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
#define AVIO_FLAG_READ
read-only
#define AVSEEK_SIZE
Passing this as the "whence" parameter to a seek function causes it to return the filesize without se...
#define AVIO_FLAG_WRITE
write-only
AVIOContext * avio_alloc_context(unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, const uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Allocate and initialize an AVIOContext for buffered I/O.
#define AVIO_FLAG_DIRECT
Use direct mode.
#define AVIO_FLAG_READ_WRITE
read-write pseudo flag
void avio_context_free(AVIOContext **s)
Free the supplied IO context and everything associated with it.
void avio_flush(AVIOContext *s)
Force flushing of buffered data.
#define AVIO_SEEKABLE_TIME
Seeking by timestamp with avio_seek_time() is possible.
#define AVIO_FLAG_NONBLOCK
Use non-blocking mode.
#define AVSEEK_FORCE
OR'ing this flag into the "whence" parameter to a seek function causes it to seek by any means (like ...
static av_always_inline FFIOContext * ffiocontext(AVIOContext *ctx)
static uint32_t BS_FUNC read(BSCTX *bc, unsigned int n)
Return n bits from the buffer, n has to be in the 0-32 range.
#define flags(name, subs,...)
#define i(width, name, range_min, range_max)
const AVIOInterruptCB int_cb
#define AV_OPT_FLAG_DECODING_PARAM
A generic parameter which can be set by the user for demuxing or decoding.
#define AV_OPT_FLAG_ENCODING_PARAM
A generic parameter which can be set by the user for muxing or encoding.
@ AV_OPT_TYPE_INT64
Underlying C type is int64_t.
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
void av_dict_free(AVDictionary **pm)
Free all the memory allocated for an AVDictionary struct and all keys and values.
AVDictionaryEntry * av_dict_get(const AVDictionary *m, const char *key, const AVDictionaryEntry *prev, int flags)
Get a dictionary entry with matching key.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
#define AVERROR_PROTOCOL_NOT_FOUND
Protocol not found.
#define AVERROR_EOF
End of file.
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
#define AVERROR_OPTION_NOT_FOUND
Option not found.
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define AV_LOG_VERBOSE
Detailed information.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
const char * av_default_item_name(void *ptr)
Return the context name.
int av_strstart(const char *str, const char *pfx, const char **ptr)
Return non-zero if pfx is a prefix of str.
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.
int av_match_list(const char *name, const char *list, char separator)
Check if a name is in a list.
#define LIBAVUTIL_VERSION_INT
void av_opt_free(void *obj)
Free all allocated objects in obj.
void av_opt_set_defaults(void *s)
Set the values of all AVOption fields to their default values.
int av_opt_set(void *obj, const char *name, const char *val, int search_flags)
int av_opt_copy(void *dst, const void *src)
Copy options from src object into dest object.
int av_opt_set_dict(void *obj, AVDictionary **options)
Set all the options from a given dictionary on an object.
const URLProtocol ff_libcurl_protocol
Memory handling functions.
int ff_network_init(void)
Initialize the network subsystem.
void ff_network_close(void)
miscellaneous OS support macros and functions.
static int is_dos_path(const char *path)
const URLProtocol ** ffurl_get_protocols(const char *whitelist, const char *blacklist)
Construct a list of protocols matching a given whitelist and/or blacklist.
const AVClass * ff_urlcontext_child_class_iterate(void **iter)
Describe the class of an AVClass context structure.
struct URLContext * url_context
Describes single entry of the directory.
Callback for checking whether to abort blocking functions.
const char * protocol_whitelist
int prefer_libcurl
route http(s) opens through the libcurl protocol
AVIOInterruptCB interrupt_callback
const struct URLProtocol * prot
const AVClass * av_class
information for av_log().
int is_streamed
true if streamed (no seek possible), default = false
const char * protocol_blacklist
int max_packet_size
if non zero, the stream is packetized with this max packet size
char * filename
specified URL
int(* url_open2)(URLContext *h, const char *url, int flags, AVDictionary **options)
This callback is to be used by protocols which open further nested protocols.
int(* url_read)(URLContext *h, unsigned char *buf, int size)
Read data from the protocol.
int(* url_open)(URLContext *h, const char *url, int flags)
const AVClass * priv_data_class
const char * default_whitelist
int(* url_write)(URLContext *h, const unsigned char *buf, int size)
int(* url_move)(URLContext *h_src, URLContext *h_dst)
static void error(const char *err)
int av_usleep(unsigned usec)
Sleep for a period of time.
int64_t av_gettime_relative(void)
Get the current time in microseconds since some unspecified starting point.
unbuffered private I/O API
#define URL_PROTOCOL_FLAG_NESTED_SCHEME
static int64_t ffurl_seek(URLContext *h, int64_t pos, int whence)
Change the position that will be used by the next read/write operation on the resource accessed by h.
#define URL_PROTOCOL_FLAG_NETWORK
static double cb(void *priv, double x, double y)
static const AVClass * child_class_iterate(void **iter)