49 #define UDPLITE_SEND_CSCOV 10
50 #define UDPLITE_RECV_CSCOV 11
53 #ifndef IPPROTO_UDPLITE
54 #define IPPROTO_UDPLITE 136
57 #if HAVE_PTHREAD_CANCEL
61 #ifndef HAVE_PTHREAD_CANCEL
62 #define HAVE_PTHREAD_CANCEL 0
65 #ifndef IPV6_ADD_MEMBERSHIP
66 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
67 #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
70 #define UDP_TX_BUF_SIZE 32768
71 #define UDP_MAX_PKT_SIZE 65536
72 #define UDP_HEADER_SIZE 8
94 #if HAVE_PTHREAD_CANCEL
109 #define OFFSET(x) offsetof(UDPContext, x)
110 #define D AV_OPT_FLAG_DECODING_PARAM
111 #define E AV_OPT_FLAG_ENCODING_PARAM
113 {
"buffer_size",
"System data size (in bytes)",
OFFSET(buffer_size),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags =
D|
E },
117 {
"udplite_coverage",
"choose UDPLite head size which should be validated by checksum",
OFFSET(udplite_coverage),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, INT_MAX,
D|
E },
118 {
"pkt_size",
"Maximum UDP packet size",
OFFSET(pkt_size),
AV_OPT_TYPE_INT, { .i64 = 1472 }, -1, INT_MAX, .flags =
D|
E },
119 {
"reuse",
"explicitly allow reusing UDP sockets",
OFFSET(reuse_socket),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1,
D|
E },
120 {
"reuse_socket",
"explicitly allow reusing UDP sockets",
OFFSET(reuse_socket),
AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1, .flags =
D|
E },
121 {
"broadcast",
"explicitly allow or disallow broadcast destination",
OFFSET(is_broadcast),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1,
E },
123 {
"connect",
"set if connect() should be called on socket",
OFFSET(is_connected),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 1, .flags =
D|
E },
124 {
"fifo_size",
"set the UDP receiving circular buffer size, expressed as a number of packets with size of 188 bytes",
OFFSET(circular_buffer_size),
AV_OPT_TYPE_INT, {.i64 = 7*4096}, 0, INT_MAX,
D },
125 {
"overrun_nonfatal",
"survive in case of UDP receiving circular buffer overrun",
OFFSET(overrun_nonfatal),
AV_OPT_TYPE_INT, {.i64 = 0}, 0, 1,
D },
126 {
"timeout",
"set raise error timeout (only in read mode)",
OFFSET(timeout),
AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX,
D },
150 av_log(ctx, level,
"%s: %s\n", prefix, errbuf);
154 struct sockaddr *addr)
156 #ifdef IP_MULTICAST_TTL
157 if (addr->sa_family == AF_INET) {
158 if (setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &mcastTTL,
sizeof(mcastTTL)) < 0) {
164 #if defined(IPPROTO_IPV6) && defined(IPV6_MULTICAST_HOPS)
165 if (addr->sa_family == AF_INET6) {
166 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &mcastTTL,
sizeof(mcastTTL)) < 0) {
177 #ifdef IP_ADD_MEMBERSHIP
178 if (addr->sa_family == AF_INET) {
181 mreq.imr_multiaddr.s_addr = ((
struct sockaddr_in *)addr)->sin_addr.s_addr;
183 mreq.imr_interface= ((
struct sockaddr_in *)local_addr)->sin_addr;
185 mreq.imr_interface.s_addr= INADDR_ANY;
186 if (setsockopt(sockfd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (
const void *)&mreq,
sizeof(mreq)) < 0) {
192 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
193 if (addr->sa_family == AF_INET6) {
194 struct ipv6_mreq mreq6;
196 memcpy(&mreq6.ipv6mr_multiaddr, &(((
struct sockaddr_in6 *)addr)->sin6_addr),
sizeof(
struct in6_addr));
197 mreq6.ipv6mr_interface= 0;
209 #ifdef IP_DROP_MEMBERSHIP
210 if (addr->sa_family == AF_INET) {
213 mreq.imr_multiaddr.s_addr = ((
struct sockaddr_in *)addr)->sin_addr.s_addr;
215 mreq.imr_interface= ((
struct sockaddr_in *)local_addr)->sin_addr;
217 mreq.imr_interface.s_addr= INADDR_ANY;
218 if (setsockopt(sockfd, IPPROTO_IP, IP_DROP_MEMBERSHIP, (
const void *)&mreq,
sizeof(mreq)) < 0) {
224 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
225 if (addr->sa_family == AF_INET6) {
226 struct ipv6_mreq mreq6;
228 memcpy(&mreq6.ipv6mr_multiaddr, &(((
struct sockaddr_in6 *)addr)->sin6_addr),
sizeof(
struct in6_addr));
229 mreq6.ipv6mr_interface= 0;
242 struct addrinfo hints = { 0 }, *res = 0;
245 const char *node = 0, *service =
"0";
248 snprintf(sport,
sizeof(sport),
"%d", port);
251 if ((hostname) && (hostname[0] !=
'\0') && (hostname[0] !=
'?')) {
257 if ((error =
getaddrinfo(node, service, &hints, &res))) {
266 int addr_len,
char **sources,
267 int nb_sources,
int include)
269 #if HAVE_STRUCT_GROUP_SOURCE_REQ && defined(MCAST_BLOCK_SOURCE) && !defined(_WIN32)
273 for (i = 0; i < nb_sources; i++) {
274 struct group_source_req mreqs;
275 int level = addr->sa_family == AF_INET ? IPPROTO_IP : IPPROTO_IPV6;
277 SOCK_DGRAM, AF_UNSPEC,
282 mreqs.gsr_interface = 0;
283 memcpy(&mreqs.gsr_group, addr, addr_len);
287 if (setsockopt(sockfd, level,
288 include ? MCAST_JOIN_SOURCE_GROUP : MCAST_BLOCK_SOURCE,
289 (
const void *)&mreqs,
sizeof(mreqs)) < 0) {
297 #elif HAVE_STRUCT_IP_MREQ_SOURCE && defined(IP_BLOCK_SOURCE)
299 if (addr->sa_family != AF_INET) {
301 "Setting multicast sources only supported for IPv4\n");
304 for (i = 0; i < nb_sources; i++) {
305 struct ip_mreq_source mreqs;
307 SOCK_DGRAM, AF_UNSPEC,
311 if (sourceaddr->
ai_addr->sa_family != AF_INET) {
318 mreqs.imr_multiaddr.s_addr = ((
struct sockaddr_in *)addr)->sin_addr.s_addr;
319 mreqs.imr_interface.s_addr = INADDR_ANY;
320 mreqs.imr_sourceaddr.s_addr = ((
struct sockaddr_in *)sourceaddr->
ai_addr)->sin_addr.s_addr;
323 if (setsockopt(sockfd, IPPROTO_IP,
324 include ? IP_ADD_SOURCE_MEMBERSHIP : IP_BLOCK_SOURCE,
325 (
const void *)&mreqs,
sizeof(mreqs)) < 0) {
339 const char *hostname,
int port)
345 if (!res0)
return AVERROR(EIO);
354 socklen_t *addr_len,
const char *localaddr)
358 int family = AF_UNSPEC;
360 if (((
struct sockaddr *) &s->
dest_addr)->sa_family)
361 family = ((
struct sockaddr *) &s->
dest_addr)->sa_family;
366 for (res = res0; res; res=res->
ai_next) {
371 if (udp_fd != -1)
break;
395 char sbuf[
sizeof(int)*3+1];
403 return strtol(sbuf,
NULL, 10);
426 char hostname[256],
buf[10];
438 p = strchr(uri,
'?');
479 #if HAVE_PTHREAD_CANCEL
480 static void *circular_buffer_task(
void *_URLContext)
486 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
500 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_cancelstate);
502 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
517 "Surviving due to overrun_nonfatal option\n");
521 "To avoid, increase fifo_size URL option. "
522 "To survive in such case, use overrun_nonfatal option\n");
545 char *next = strchr(source_start,
',');
548 sources[*num_sources] =
av_strdup(source_start);
549 if (!sources[*num_sources])
551 source_start = next + 1;
553 if (*num_sources >= max_sources || !next)
563 char hostname[1024], localaddr[1024] =
"";
564 int port, udp_fd = -1, tmp, bind_ret = -1, dscp = -1;
571 int i, num_include_sources = 0, num_exclude_sources = 0;
572 char *include_sources[32], *exclude_sources[32];
582 &num_include_sources,
596 p = strchr(uri,
'?');
613 "'overrun_nonfatal' option was set but it is not supported "
614 "on this build (pthread support is required)\n");
617 s->
ttl = strtol(buf,
NULL, 10);
635 dscp = strtol(buf,
NULL, 10);
641 "'circular_buffer_size' option was set but it is not supported "
642 "on this build (pthread support is required)\n");
645 av_strlcpy(localaddr, buf,
sizeof(localaddr));
675 if (hostname[0] ==
'\0' || hostname[0] ==
'?') {
726 if (setsockopt (udp_fd, IPPROTO_IP, IP_TOS, &dscp,
sizeof(dscp)) != 0)
735 bind_ret = bind(udp_fd,(
struct sockaddr *)&s->
dest_addr, len);
740 if (bind_ret < 0 && bind(udp_fd,(
struct sockaddr *)&my_addr, len) < 0) {
745 len =
sizeof(my_addr);
746 getsockname(udp_fd, (
struct sockaddr *)&my_addr, &len);
750 if (h->
flags & AVIO_FLAG_WRITE) {
757 if (num_include_sources && num_exclude_sources) {
758 av_log(h,
AV_LOG_ERROR,
"Simultaneously including and excluding multicast sources is not supported\n");
761 if (num_include_sources) {
768 if (num_exclude_sources) {
778 if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp,
sizeof(tmp)) < 0) {
785 if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp,
sizeof(tmp)) < 0) {
789 if (getsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, &len) < 0) {
793 if(tmp < s->buffer_size)
807 for (i = 0; i < num_include_sources; i++)
809 for (i = 0; i < num_exclude_sources; i++)
814 #if HAVE_PTHREAD_CANCEL
835 s->thread_started = 1;
840 #if HAVE_PTHREAD_CANCEL
850 for (i = 0; i < num_include_sources; i++)
852 for (i = 0; i < num_exclude_sources; i++)
871 #if HAVE_PTHREAD_CANCEL
896 }
else if(nonblock) {
904 struct timespec tv = { .tv_sec = t / 1000000,
905 .tv_nsec = (t % 1000000) * 1000 };
906 if (pthread_cond_timedwait(&s->cond, &s->mutex, &tv) < 0) {
908 return AVERROR(errno == ETIMEDOUT ? EAGAIN : errno);
921 ret = recv(s->
udp_fd, buf, size, 0);
938 ret = sendto (s->
udp_fd, buf, size, 0,
942 ret = send(s->
udp_fd, buf, size, 0);
954 #if HAVE_PTHREAD_CANCEL
955 if (s->thread_started) {
957 pthread_cancel(s->circular_buffer_thread);
977 .priv_data_class = &udp_class,
989 .priv_data_class = &udplite_context_class,
static int udp_open(URLContext *h, const char *uri, int flags)
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.
static const AVClass udplite_context_class
static void log_net_error(void *ctx, int level, const char *prefix)
static av_always_inline int pthread_mutex_destroy(pthread_mutex_t *mutex)
#define URL_PROTOCOL_FLAG_NETWORK
#define HAVE_PTHREAD_CANCEL
#define AV_LOG_WARNING
Something somehow does not look correct.
#define LIBAVUTIL_VERSION_INT
static int udp_set_multicast_sources(int sockfd, struct sockaddr *addr, int addr_len, char **sources, int nb_sources, int include)
int is_streamed
true if streamed (no seek possible), default = false
static int parse_source_list(char *buf, char **sources, int *num_sources, int max_sources)
#define AVIO_FLAG_READ
read-only
int64_t rw_timeout
maximum time to wait for (network) read/write operation completion, in mcs
#define AVIO_FLAG_WRITE
write-only
#define UDPLITE_SEND_CSCOV
#define FF_ARRAY_ELEMS(a)
static av_always_inline int pthread_cond_destroy(pthread_cond_t *cond)
int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int(*func)(void *, void *, int))
Feed data from a user-supplied callback to an AVFifoBuffer.
int ff_socket(int af, int type, int proto)
static struct addrinfo * udp_resolve_host(const char *hostname, int port, int type, int family, int flags)
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define UDPLITE_RECV_CSCOV
miscellaneous OS support macros and functions.
int ff_udp_get_local_port(URLContext *h)
Return the local port used by the UDP connection.
static av_cold int end(AVCodecContext *avctx)
int av_fifo_space(const AVFifoBuffer *f)
Return the amount of space in bytes in the AVFifoBuffer, that is the amount of data you can write int...
static int udp_leave_multicast_group(int sockfd, struct sockaddr *addr, struct sockaddr *local_addr)
static int udp_port(struct sockaddr_storage *addr, int addr_len)
int av_find_info_tag(char *arg, int arg_size, const char *tag1, const char *info)
Attempt to find a specific tag in a URL.
static av_always_inline int pthread_cond_signal(pthread_cond_t *cond)
static int udp_close(URLContext *h)
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
int ff_udp_set_remote_url(URLContext *h, const char *uri)
If no filename is given to av_open_input_file because you want to get the local port first...
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
int av_fifo_generic_read(AVFifoBuffer *f, void *dest, int buf_size, void(*func)(void *, void *, int))
Feed data from an AVFifoBuffer to a user-supplied callback.
int ff_is_multicast_address(struct sockaddr *addr)
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.
static const AVOption options[]
static int udp_socket_create(UDPContext *s, struct sockaddr_storage *addr, socklen_t *addr_len, const char *localaddr)
uint8_t tmp[UDP_MAX_PKT_SIZE+4]
URLProtocol ff_udplite_protocol
static av_always_inline int pthread_join(pthread_t thread, void **value_ptr)
static av_always_inline int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr)
static int udp_get_file_handle(URLContext *h)
Return the udp file handle for select() usage to wait for several RTP streams at the same time...
struct sockaddr_storage local_addr_storage
static pthread_mutex_t * mutex
int ff_socket_nonblock(int socket, int enable)
int64_t av_gettime(void)
Get the current time in microseconds.
static av_always_inline int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void *), void *arg)
#define IPV6_ADD_MEMBERSHIP
int av_fifo_size(const AVFifoBuffer *f)
Return the amount of data in bytes in the AVFifoBuffer, that is the amount of data you can read from ...
char * av_strdup(const char *s)
Duplicate the string s.
#define AVIO_FLAG_NONBLOCK
Use non-blocking mode.
#define IPV6_DROP_MEMBERSHIP
a very simple circular buffer FIFO implementation
static int udp_set_url(struct sockaddr_storage *addr, const char *hostname, int port)
Describe the class of an AVClass context structure.
int av_strerror(int errnum, char *errbuf, size_t errbuf_size)
Put a description of the AVERROR code errnum in errbuf.
URLProtocol ff_udp_protocol
struct sockaddr_storage dest_addr
static int udp_read(URLContext *h, uint8_t *buf, int size)
struct addrinfo * ai_next
static av_always_inline int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr)
static int udp_set_multicast_ttl(int sockfd, int mcastTTL, struct sockaddr *addr)
AVFifoBuffer * av_fifo_alloc(unsigned int size)
Initialize an AVFifoBuffer.
static int udplite_open(URLContext *h, const char *uri, int flags)
static int udp_join_multicast_group(int sockfd, struct sockaddr *addr, struct sockaddr *local_addr)
int circular_buffer_error
static av_always_inline int pthread_mutex_unlock(pthread_mutex_t *mutex)
int max_packet_size
if non zero, the stream is packetized with this max packet size
static const AVClass udp_class
int ff_network_wait_fd(int fd, int write)
unbuffered private I/O API
void av_fifo_freep(AVFifoBuffer **f)
Free an AVFifoBuffer and reset pointer to NULL.
static av_always_inline int pthread_mutex_lock(pthread_mutex_t *mutex)
void av_fifo_drain(AVFifoBuffer *f, int size)
Discard data from the FIFO.
struct sockaddr * ai_addr
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
static int udp_write(URLContext *h, const uint8_t *buf, int size)