2 * UDP prototype streaming system
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
5 * This file is part of FFmpeg.
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.
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.
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
27 #define _DEFAULT_SOURCE
28 #define _BSD_SOURCE /* Needed for using struct ip_mreq with recent glibc */
31 #include "avio_internal.h"
32 #include "libavutil/avassert.h"
33 #include "libavutil/parseutils.h"
34 #include "libavutil/fifo.h"
35 #include "libavutil/intreadwrite.h"
36 #include "libavutil/avstring.h"
37 #include "libavutil/opt.h"
38 #include "libavutil/log.h"
39 #include "libavutil/time.h"
42 #include "os_support.h"
46 #include "TargetConditionals.h"
52 /* On many Linux systems, udplite.h is missing but the kernel supports UDP-Lite.
53 * So, we provide a fallback here.
55 #define UDPLITE_SEND_CSCOV 10
56 #define UDPLITE_RECV_CSCOV 11
59 #ifndef IPPROTO_UDPLITE
60 #define IPPROTO_UDPLITE 136
63 #if HAVE_PTHREAD_CANCEL
67 #ifndef IPV6_ADD_MEMBERSHIP
68 #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP
69 #define IPV6_DROP_MEMBERSHIP IPV6_LEAVE_GROUP
72 #define UDP_TX_BUF_SIZE 32768
73 #define UDP_MAX_PKT_SIZE 65536
74 #define UDP_HEADER_SIZE 8
76 typedef struct UDPContext {
88 struct sockaddr_storage dest_addr;
92 /* Circular Buffer variables for use in UDP receive code */
93 int circular_buffer_size;
95 int circular_buffer_error;
96 int64_t bitrate; /* number of bits to send per second */
99 #if HAVE_PTHREAD_CANCEL
100 pthread_t circular_buffer_thread;
101 pthread_mutex_t mutex;
105 uint8_t tmp[UDP_MAX_PKT_SIZE+4];
109 struct sockaddr_storage local_addr_storage;
114 #define OFFSET(x) offsetof(UDPContext, x)
115 #define D AV_OPT_FLAG_DECODING_PARAM
116 #define E AV_OPT_FLAG_ENCODING_PARAM
117 static const AVOption options[] = {
118 { "buffer_size", "System data size (in bytes)", OFFSET(buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
119 { "bitrate", "Bits to send per second", OFFSET(bitrate), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, .flags = E },
120 { "burst_bits", "Max length of bursts in bits (when using bitrate)", OFFSET(burst_bits), AV_OPT_TYPE_INT64, { .i64 = 0 }, 0, INT64_MAX, .flags = E },
121 { "localport", "Local port", OFFSET(local_port), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, D|E },
122 { "local_port", "Local port", OFFSET(local_port), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
123 { "localaddr", "Local address", OFFSET(localaddr), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
124 { "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 },
125 { "pkt_size", "Maximum UDP packet size", OFFSET(pkt_size), AV_OPT_TYPE_INT, { .i64 = 1472 }, -1, INT_MAX, .flags = D|E },
126 { "reuse", "explicitly allow reusing UDP sockets", OFFSET(reuse_socket), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, D|E },
127 { "reuse_socket", "explicitly allow reusing UDP sockets", OFFSET(reuse_socket), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
128 { "broadcast", "explicitly allow or disallow broadcast destination", OFFSET(is_broadcast), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, E },
129 { "ttl", "Time to live (multicast only)", OFFSET(ttl), AV_OPT_TYPE_INT, { .i64 = 16 }, 0, INT_MAX, E },
130 { "connect", "set if connect() should be called on socket", OFFSET(is_connected), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = D|E },
131 { "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 },
132 { "overrun_nonfatal", "survive in case of UDP receiving circular buffer overrun", OFFSET(overrun_nonfatal), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, D },
133 { "timeout", "set raise error timeout (only in read mode)", OFFSET(timeout), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, INT_MAX, D },
134 { "sources", "Source list", OFFSET(sources), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
135 { "block", "Block list", OFFSET(block), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
139 static const AVClass udp_class = {
141 .item_name = av_default_item_name,
143 .version = LIBAVUTIL_VERSION_INT,
146 static const AVClass udplite_context_class = {
147 .class_name = "udplite",
148 .item_name = av_default_item_name,
150 .version = LIBAVUTIL_VERSION_INT,
153 static void log_net_error(void *ctx, int level, const char* prefix)
156 av_strerror(ff_neterrno(), errbuf, sizeof(errbuf));
157 av_log(ctx, level, "%s: %s\n", prefix, errbuf);
160 static int udp_set_multicast_ttl(int sockfd, int mcastTTL,
161 struct sockaddr *addr)
163 #ifdef IP_MULTICAST_TTL
164 if (addr->sa_family == AF_INET) {
165 if (setsockopt(sockfd, IPPROTO_IP, IP_MULTICAST_TTL, &mcastTTL, sizeof(mcastTTL)) < 0) {
166 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_MULTICAST_TTL)");
171 #if defined(IPPROTO_IPV6) && defined(IPV6_MULTICAST_HOPS)
172 if (addr->sa_family == AF_INET6) {
173 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &mcastTTL, sizeof(mcastTTL)) < 0) {
174 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_MULTICAST_HOPS)");
182 static int udp_join_multicast_group(int sockfd, struct sockaddr *addr,struct sockaddr *local_addr)
184 #ifdef IP_ADD_MEMBERSHIP
185 if (addr->sa_family == AF_INET) {
188 mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr;
190 mreq.imr_interface= ((struct sockaddr_in *)local_addr)->sin_addr;
192 mreq.imr_interface.s_addr= INADDR_ANY;
193 if (setsockopt(sockfd, IPPROTO_IP, IP_ADD_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) {
194 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_ADD_MEMBERSHIP)");
199 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
200 if (addr->sa_family == AF_INET6) {
201 struct ipv6_mreq mreq6;
203 memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr));
204 mreq6.ipv6mr_interface= 0;
205 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
206 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_ADD_MEMBERSHIP)");
214 static int udp_leave_multicast_group(int sockfd, struct sockaddr *addr,struct sockaddr *local_addr)
216 #ifdef IP_DROP_MEMBERSHIP
217 if (addr->sa_family == AF_INET) {
220 mreq.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr;
222 mreq.imr_interface= ((struct sockaddr_in *)local_addr)->sin_addr;
224 mreq.imr_interface.s_addr= INADDR_ANY;
225 if (setsockopt(sockfd, IPPROTO_IP, IP_DROP_MEMBERSHIP, (const void *)&mreq, sizeof(mreq)) < 0) {
226 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_DROP_MEMBERSHIP)");
231 #if HAVE_STRUCT_IPV6_MREQ && defined(IPPROTO_IPV6)
232 if (addr->sa_family == AF_INET6) {
233 struct ipv6_mreq mreq6;
235 memcpy(&mreq6.ipv6mr_multiaddr, &(((struct sockaddr_in6 *)addr)->sin6_addr), sizeof(struct in6_addr));
236 mreq6.ipv6mr_interface= 0;
237 if (setsockopt(sockfd, IPPROTO_IPV6, IPV6_DROP_MEMBERSHIP, &mreq6, sizeof(mreq6)) < 0) {
238 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IPV6_DROP_MEMBERSHIP)");
246 static struct addrinfo *udp_resolve_host(URLContext *h,
247 const char *hostname, int port,
248 int type, int family, int flags)
250 struct addrinfo hints = { 0 }, *res = 0;
253 const char *node = 0, *service = "0";
256 snprintf(sport, sizeof(sport), "%d", port);
259 if ((hostname) && (hostname[0] != '\0') && (hostname[0] != '?')) {
262 hints.ai_socktype = type;
263 hints.ai_family = family;
264 hints.ai_flags = flags;
265 if ((error = getaddrinfo(node, service, &hints, &res))) {
267 av_log(h, AV_LOG_ERROR, "getaddrinfo(%s, %s): %s\n",
268 node ? node : "unknown",
270 gai_strerror(error));
276 static int udp_set_multicast_sources(URLContext *h,
277 int sockfd, struct sockaddr *addr,
278 int addr_len, char **sources,
279 int nb_sources, int include)
281 #if HAVE_STRUCT_GROUP_SOURCE_REQ && defined(MCAST_BLOCK_SOURCE) && !defined(_WIN32) && (!defined(TARGET_OS_TV) || !TARGET_OS_TV)
282 /* These ones are available in the microsoft SDK, but don't seem to work
283 * as on linux, so just prefer the v4-only approach there for now. */
285 for (i = 0; i < nb_sources; i++) {
286 struct group_source_req mreqs;
287 int level = addr->sa_family == AF_INET ? IPPROTO_IP : IPPROTO_IPV6;
288 struct addrinfo *sourceaddr = udp_resolve_host(h, sources[i], 0,
289 SOCK_DGRAM, AF_UNSPEC,
292 return AVERROR(ENOENT);
294 mreqs.gsr_interface = 0;
295 memcpy(&mreqs.gsr_group, addr, addr_len);
296 memcpy(&mreqs.gsr_source, sourceaddr->ai_addr, sourceaddr->ai_addrlen);
297 freeaddrinfo(sourceaddr);
299 if (setsockopt(sockfd, level,
300 include ? MCAST_JOIN_SOURCE_GROUP : MCAST_BLOCK_SOURCE,
301 (const void *)&mreqs, sizeof(mreqs)) < 0) {
303 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(MCAST_JOIN_SOURCE_GROUP)");
305 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(MCAST_BLOCK_SOURCE)");
306 return ff_neterrno();
309 #elif HAVE_STRUCT_IP_MREQ_SOURCE && defined(IP_BLOCK_SOURCE)
311 if (addr->sa_family != AF_INET) {
312 av_log(NULL, AV_LOG_ERROR,
313 "Setting multicast sources only supported for IPv4\n");
314 return AVERROR(EINVAL);
316 for (i = 0; i < nb_sources; i++) {
317 struct ip_mreq_source mreqs;
318 struct addrinfo *sourceaddr = udp_resolve_host(h, sources[i], 0,
319 SOCK_DGRAM, AF_UNSPEC,
322 return AVERROR(ENOENT);
323 if (sourceaddr->ai_addr->sa_family != AF_INET) {
324 freeaddrinfo(sourceaddr);
325 av_log(NULL, AV_LOG_ERROR, "%s is of incorrect protocol family\n",
327 return AVERROR(EINVAL);
330 mreqs.imr_multiaddr.s_addr = ((struct sockaddr_in *)addr)->sin_addr.s_addr;
331 mreqs.imr_interface.s_addr = INADDR_ANY;
332 mreqs.imr_sourceaddr.s_addr = ((struct sockaddr_in *)sourceaddr->ai_addr)->sin_addr.s_addr;
333 freeaddrinfo(sourceaddr);
335 if (setsockopt(sockfd, IPPROTO_IP,
336 include ? IP_ADD_SOURCE_MEMBERSHIP : IP_BLOCK_SOURCE,
337 (const void *)&mreqs, sizeof(mreqs)) < 0) {
339 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_ADD_SOURCE_MEMBERSHIP)");
341 log_net_error(NULL, AV_LOG_ERROR, "setsockopt(IP_BLOCK_SOURCE)");
342 return ff_neterrno();
346 return AVERROR(ENOSYS);
350 static int udp_set_url(URLContext *h,
351 struct sockaddr_storage *addr,
352 const char *hostname, int port)
354 struct addrinfo *res0;
357 res0 = udp_resolve_host(h, hostname, port, SOCK_DGRAM, AF_UNSPEC, 0);
358 if (!res0) return AVERROR(EIO);
359 memcpy(addr, res0->ai_addr, res0->ai_addrlen);
360 addr_len = res0->ai_addrlen;
366 static int udp_socket_create(URLContext *h, struct sockaddr_storage *addr,
367 socklen_t *addr_len, const char *localaddr)
369 UDPContext *s = h->priv_data;
371 struct addrinfo *res0, *res;
372 int family = AF_UNSPEC;
374 if (((struct sockaddr *) &s->dest_addr)->sa_family)
375 family = ((struct sockaddr *) &s->dest_addr)->sa_family;
376 res0 = udp_resolve_host(h, (localaddr && localaddr[0]) ? localaddr : NULL,
378 SOCK_DGRAM, family, AI_PASSIVE);
381 for (res = res0; res; res=res->ai_next) {
382 if (s->udplite_coverage)
383 udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, IPPROTO_UDPLITE);
385 udp_fd = ff_socket(res->ai_family, SOCK_DGRAM, 0);
386 if (udp_fd != -1) break;
387 log_net_error(NULL, AV_LOG_ERROR, "socket");
393 memcpy(addr, res->ai_addr, res->ai_addrlen);
394 *addr_len = res->ai_addrlen;
408 static int udp_port(struct sockaddr_storage *addr, int addr_len)
410 char sbuf[sizeof(int)*3+1];
413 if ((error = getnameinfo((struct sockaddr *)addr, addr_len, NULL, 0, sbuf, sizeof(sbuf), NI_NUMERICSERV)) != 0) {
414 av_log(NULL, AV_LOG_ERROR, "getnameinfo: %s\n", gai_strerror(error));
418 return strtol(sbuf, NULL, 10);
423 * If no filename is given to av_open_input_file because you want to
424 * get the local port first, then you must call this function to set
425 * the remote server address.
427 * url syntax: udp://host:port[?option=val...]
428 * option: 'ttl=n' : set the ttl value (for multicast only)
429 * 'localport=n' : set the local port
430 * 'pkt_size=n' : set max packet size
431 * 'reuse=1' : enable reusing the socket
432 * 'overrun_nonfatal=1': survive in case of circular buffer overrun
434 * @param h media file context
435 * @param uri of the remote server
436 * @return zero if no error.
438 int ff_udp_set_remote_url(URLContext *h, const char *uri)
440 UDPContext *s = h->priv_data;
441 char hostname[256], buf[10];
445 av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
447 /* set the destination address */
448 s->dest_addr_len = udp_set_url(h, &s->dest_addr, hostname, port);
449 if (s->dest_addr_len < 0) {
452 s->is_multicast = ff_is_multicast_address((struct sockaddr*) &s->dest_addr);
453 p = strchr(uri, '?');
455 if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
456 int was_connected = s->is_connected;
457 s->is_connected = strtol(buf, NULL, 10);
458 if (s->is_connected && !was_connected) {
459 if (connect(s->udp_fd, (struct sockaddr *) &s->dest_addr,
462 log_net_error(h, AV_LOG_ERROR, "connect");
473 * Return the local port used by the UDP connection
474 * @param h media file context
475 * @return the local port number
477 int ff_udp_get_local_port(URLContext *h)
479 UDPContext *s = h->priv_data;
480 return s->local_port;
484 * Return the udp file handle for select() usage to wait for several RTP
485 * streams at the same time.
486 * @param h media file context
488 static int udp_get_file_handle(URLContext *h)
490 UDPContext *s = h->priv_data;
494 #if HAVE_PTHREAD_CANCEL
495 static void *circular_buffer_task_rx( void *_URLContext)
497 URLContext *h = _URLContext;
498 UDPContext *s = h->priv_data;
501 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
502 pthread_mutex_lock(&s->mutex);
503 if (ff_socket_nonblock(s->udp_fd, 0) < 0) {
504 av_log(h, AV_LOG_ERROR, "Failed to set blocking mode");
505 s->circular_buffer_error = AVERROR(EIO);
511 pthread_mutex_unlock(&s->mutex);
512 /* Blocking operations are always cancellation points;
513 see "General Information" / "Thread Cancelation Overview"
515 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_cancelstate);
516 len = recv(s->udp_fd, s->tmp+4, sizeof(s->tmp)-4, 0);
517 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
518 pthread_mutex_lock(&s->mutex);
520 if (ff_neterrno() != AVERROR(EAGAIN) && ff_neterrno() != AVERROR(EINTR)) {
521 s->circular_buffer_error = ff_neterrno();
526 AV_WL32(s->tmp, len);
528 if(av_fifo_space(s->fifo) < len + 4) {
530 if (s->overrun_nonfatal) {
531 av_log(h, AV_LOG_WARNING, "Circular buffer overrun. "
532 "Surviving due to overrun_nonfatal option\n");
535 av_log(h, AV_LOG_ERROR, "Circular buffer overrun. "
536 "To avoid, increase fifo_size URL option. "
537 "To survive in such case, use overrun_nonfatal option\n");
538 s->circular_buffer_error = AVERROR(EIO);
542 av_fifo_generic_write(s->fifo, s->tmp, len+4, NULL);
543 pthread_cond_signal(&s->cond);
547 pthread_cond_signal(&s->cond);
548 pthread_mutex_unlock(&s->mutex);
552 static void *circular_buffer_task_tx( void *_URLContext)
554 URLContext *h = _URLContext;
555 UDPContext *s = h->priv_data;
557 int64_t target_timestamp = av_gettime_relative();
558 int64_t start_timestamp = av_gettime_relative();
559 int64_t sent_bits = 0;
560 int64_t burst_interval = s->bitrate ? (s->burst_bits * 1000000 / s->bitrate) : 0;
561 int64_t max_delay = s->bitrate ? ((int64_t)h->max_packet_size * 8 * 1000000 / s->bitrate + 1) : 0;
563 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
564 pthread_mutex_lock(&s->mutex);
566 if (ff_socket_nonblock(s->udp_fd, 0) < 0) {
567 av_log(h, AV_LOG_ERROR, "Failed to set blocking mode");
568 s->circular_buffer_error = AVERROR(EIO);
578 len=av_fifo_size(s->fifo);
583 if (pthread_cond_wait(&s->cond, &s->mutex) < 0) {
586 len=av_fifo_size(s->fifo);
589 av_fifo_generic_read(s->fifo, tmp, 4, NULL);
592 av_assert0(len >= 0);
593 av_assert0(len <= sizeof(s->tmp));
595 av_fifo_generic_read(s->fifo, s->tmp, len, NULL);
597 pthread_mutex_unlock(&s->mutex);
598 pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &old_cancelstate);
601 timestamp = av_gettime_relative();
602 if (timestamp < target_timestamp) {
603 int64_t delay = target_timestamp - timestamp;
604 if (delay > max_delay) {
606 start_timestamp = timestamp + delay;
611 if (timestamp - burst_interval > target_timestamp) {
612 start_timestamp = timestamp - burst_interval;
616 sent_bits += len * 8;
617 target_timestamp = start_timestamp + sent_bits * 1000000 / s->bitrate;
624 if (!s->is_connected) {
625 ret = sendto (s->udp_fd, p, len, 0,
626 (struct sockaddr *) &s->dest_addr,
629 ret = send(s->udp_fd, p, len, 0);
635 if (ret != AVERROR(EAGAIN) && ret != AVERROR(EINTR)) {
636 pthread_mutex_lock(&s->mutex);
637 s->circular_buffer_error = ret;
638 pthread_mutex_unlock(&s->mutex);
644 pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &old_cancelstate);
645 pthread_mutex_lock(&s->mutex);
649 pthread_mutex_unlock(&s->mutex);
656 static int parse_source_list(char *buf, char **sources, int *num_sources,
663 char *next = strchr(source_start, ',');
666 sources[*num_sources] = av_strdup(source_start);
667 if (!sources[*num_sources])
668 return AVERROR(ENOMEM);
669 source_start = next + 1;
671 if (*num_sources >= max_sources || !next)
677 /* put it in UDP context */
678 /* return non zero if error */
679 static int udp_open(URLContext *h, const char *uri, int flags)
681 char hostname[1024], localaddr[1024] = "";
682 int port, udp_fd = -1, tmp, bind_ret = -1, dscp = -1;
683 UDPContext *s = h->priv_data;
687 struct sockaddr_storage my_addr;
689 int i, num_include_sources = 0, num_exclude_sources = 0;
690 char *include_sources[32], *exclude_sources[32];
694 is_output = !(flags & AVIO_FLAG_READ);
695 if (s->buffer_size < 0)
696 s->buffer_size = is_output ? UDP_TX_BUF_SIZE : UDP_MAX_PKT_SIZE;
699 if (parse_source_list(s->sources, include_sources,
700 &num_include_sources,
701 FF_ARRAY_ELEMS(include_sources)))
706 if (parse_source_list(s->block, exclude_sources, &num_exclude_sources,
707 FF_ARRAY_ELEMS(exclude_sources)))
712 h->max_packet_size = s->pkt_size;
714 p = strchr(uri, '?');
716 if (av_find_info_tag(buf, sizeof(buf), "reuse", p)) {
718 s->reuse_socket = strtol(buf, &endptr, 10);
719 /* assume if no digits were found it is a request to enable it */
723 if (av_find_info_tag(buf, sizeof(buf), "overrun_nonfatal", p)) {
725 s->overrun_nonfatal = strtol(buf, &endptr, 10);
726 /* assume if no digits were found it is a request to enable it */
728 s->overrun_nonfatal = 1;
729 if (!HAVE_PTHREAD_CANCEL)
730 av_log(h, AV_LOG_WARNING,
731 "'overrun_nonfatal' option was set but it is not supported "
732 "on this build (pthread support is required)\n");
734 if (av_find_info_tag(buf, sizeof(buf), "ttl", p)) {
735 s->ttl = strtol(buf, NULL, 10);
737 if (av_find_info_tag(buf, sizeof(buf), "udplite_coverage", p)) {
738 s->udplite_coverage = strtol(buf, NULL, 10);
740 if (av_find_info_tag(buf, sizeof(buf), "localport", p)) {
741 s->local_port = strtol(buf, NULL, 10);
743 if (av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
744 s->pkt_size = strtol(buf, NULL, 10);
746 if (av_find_info_tag(buf, sizeof(buf), "buffer_size", p)) {
747 s->buffer_size = strtol(buf, NULL, 10);
749 if (av_find_info_tag(buf, sizeof(buf), "connect", p)) {
750 s->is_connected = strtol(buf, NULL, 10);
752 if (av_find_info_tag(buf, sizeof(buf), "dscp", p)) {
753 dscp = strtol(buf, NULL, 10);
755 if (av_find_info_tag(buf, sizeof(buf), "fifo_size", p)) {
756 s->circular_buffer_size = strtol(buf, NULL, 10);
757 if (!HAVE_PTHREAD_CANCEL)
758 av_log(h, AV_LOG_WARNING,
759 "'circular_buffer_size' option was set but it is not supported "
760 "on this build (pthread support is required)\n");
762 if (av_find_info_tag(buf, sizeof(buf), "bitrate", p)) {
763 s->bitrate = strtoll(buf, NULL, 10);
764 if (!HAVE_PTHREAD_CANCEL)
765 av_log(h, AV_LOG_WARNING,
766 "'bitrate' option was set but it is not supported "
767 "on this build (pthread support is required)\n");
769 if (av_find_info_tag(buf, sizeof(buf), "burst_bits", p)) {
770 s->burst_bits = strtoll(buf, NULL, 10);
772 if (av_find_info_tag(buf, sizeof(buf), "localaddr", p)) {
773 av_strlcpy(localaddr, buf, sizeof(localaddr));
775 if (av_find_info_tag(buf, sizeof(buf), "sources", p)) {
776 if (parse_source_list(buf, include_sources, &num_include_sources,
777 FF_ARRAY_ELEMS(include_sources)))
780 if (av_find_info_tag(buf, sizeof(buf), "block", p)) {
781 if (parse_source_list(buf, exclude_sources, &num_exclude_sources,
782 FF_ARRAY_ELEMS(exclude_sources)))
785 if (!is_output && av_find_info_tag(buf, sizeof(buf), "timeout", p))
786 s->timeout = strtol(buf, NULL, 10);
787 if (is_output && av_find_info_tag(buf, sizeof(buf), "broadcast", p))
788 s->is_broadcast = strtol(buf, NULL, 10);
790 /* handling needed to support options picking from both AVOption and URL */
791 s->circular_buffer_size *= 188;
792 if (flags & AVIO_FLAG_WRITE) {
793 h->max_packet_size = s->pkt_size;
795 h->max_packet_size = UDP_MAX_PKT_SIZE;
797 h->rw_timeout = s->timeout;
799 /* fill the dest addr */
800 av_url_split(NULL, 0, NULL, 0, hostname, sizeof(hostname), &port, NULL, 0, uri);
802 /* XXX: fix av_url_split */
803 if (hostname[0] == '\0' || hostname[0] == '?') {
804 /* only accepts null hostname if input */
805 if (!(flags & AVIO_FLAG_READ))
808 if (ff_udp_set_remote_url(h, uri) < 0)
812 if ((s->is_multicast || s->local_port <= 0) && (h->flags & AVIO_FLAG_READ))
813 s->local_port = port;
816 udp_fd = udp_socket_create(h, &my_addr, &len, localaddr);
818 udp_fd = udp_socket_create(h, &my_addr, &len, s->localaddr);
822 s->local_addr_storage=my_addr; //store for future multicast join
824 /* Follow the requested reuse option, unless it's multicast in which
825 * case enable reuse unless explicitly disabled.
827 if (s->reuse_socket > 0 || (s->is_multicast && s->reuse_socket < 0)) {
829 if (setsockopt (udp_fd, SOL_SOCKET, SO_REUSEADDR, &(s->reuse_socket), sizeof(s->reuse_socket)) != 0)
833 if (s->is_broadcast) {
835 if (setsockopt (udp_fd, SOL_SOCKET, SO_BROADCAST, &(s->is_broadcast), sizeof(s->is_broadcast)) != 0)
840 /* Set the checksum coverage for UDP-Lite (RFC 3828) for sending and receiving.
841 * The receiver coverage has to be less than or equal to the sender coverage.
842 * Otherwise, the receiver will drop all packets.
844 if (s->udplite_coverage) {
845 if (setsockopt (udp_fd, IPPROTO_UDPLITE, UDPLITE_SEND_CSCOV, &(s->udplite_coverage), sizeof(s->udplite_coverage)) != 0)
846 av_log(h, AV_LOG_WARNING, "socket option UDPLITE_SEND_CSCOV not available");
848 if (setsockopt (udp_fd, IPPROTO_UDPLITE, UDPLITE_RECV_CSCOV, &(s->udplite_coverage), sizeof(s->udplite_coverage)) != 0)
849 av_log(h, AV_LOG_WARNING, "socket option UDPLITE_RECV_CSCOV not available");
854 if (setsockopt (udp_fd, IPPROTO_IP, IP_TOS, &dscp, sizeof(dscp)) != 0)
858 /* If multicast, try binding the multicast address first, to avoid
859 * receiving UDP packets from other sources aimed at the same UDP
860 * port. This fails on windows. This makes sending to the same address
861 * using sendto() fail, so only do it if we're opened in read-only mode. */
862 if (s->is_multicast && !(h->flags & AVIO_FLAG_WRITE)) {
863 bind_ret = bind(udp_fd,(struct sockaddr *)&s->dest_addr, len);
865 /* bind to the local address if not multicast or if the multicast
867 /* the bind is needed to give a port to the socket now */
868 if (bind_ret < 0 && bind(udp_fd,(struct sockaddr *)&my_addr, len) < 0) {
869 log_net_error(h, AV_LOG_ERROR, "bind failed");
873 len = sizeof(my_addr);
874 getsockname(udp_fd, (struct sockaddr *)&my_addr, &len);
875 s->local_port = udp_port(&my_addr, len);
877 if (s->is_multicast) {
878 if (h->flags & AVIO_FLAG_WRITE) {
880 if (udp_set_multicast_ttl(udp_fd, s->ttl, (struct sockaddr *)&s->dest_addr) < 0)
883 if (h->flags & AVIO_FLAG_READ) {
885 if (num_include_sources && num_exclude_sources) {
886 av_log(h, AV_LOG_ERROR, "Simultaneously including and excluding multicast sources is not supported\n");
889 if (num_include_sources) {
890 if (udp_set_multicast_sources(h, udp_fd,
891 (struct sockaddr *)&s->dest_addr,
894 num_include_sources, 1) < 0)
897 if (udp_join_multicast_group(udp_fd, (struct sockaddr *)&s->dest_addr,(struct sockaddr *)&s->local_addr_storage) < 0)
900 if (num_exclude_sources) {
901 if (udp_set_multicast_sources(h, udp_fd,
902 (struct sockaddr *)&s->dest_addr,
905 num_exclude_sources, 0) < 0)
912 /* limit the tx buf size to limit latency */
913 tmp = s->buffer_size;
914 if (setsockopt(udp_fd, SOL_SOCKET, SO_SNDBUF, &tmp, sizeof(tmp)) < 0) {
915 log_net_error(h, AV_LOG_ERROR, "setsockopt(SO_SNDBUF)");
919 /* set udp recv buffer size to the requested value (default 64K) */
920 tmp = s->buffer_size;
921 if (setsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, sizeof(tmp)) < 0) {
922 log_net_error(h, AV_LOG_WARNING, "setsockopt(SO_RECVBUF)");
925 if (getsockopt(udp_fd, SOL_SOCKET, SO_RCVBUF, &tmp, &len) < 0) {
926 log_net_error(h, AV_LOG_WARNING, "getsockopt(SO_RCVBUF)");
928 av_log(h, AV_LOG_DEBUG, "end receive buffer size reported is %d\n", tmp);
929 if(tmp < s->buffer_size)
930 av_log(h, AV_LOG_WARNING, "attempted to set receive buffer to size %d but it only ended up set as %d", s->buffer_size, tmp);
933 /* make the socket non-blocking */
934 ff_socket_nonblock(udp_fd, 1);
936 if (s->is_connected) {
937 if (connect(udp_fd, (struct sockaddr *) &s->dest_addr, s->dest_addr_len)) {
938 log_net_error(h, AV_LOG_ERROR, "connect");
943 for (i = 0; i < num_include_sources; i++)
944 av_freep(&include_sources[i]);
945 for (i = 0; i < num_exclude_sources; i++)
946 av_freep(&exclude_sources[i]);
950 #if HAVE_PTHREAD_CANCEL
952 Create thread in case of:
953 1. Input and circular_buffer_size is set
954 2. Output and bitrate and circular_buffer_size is set
957 if (is_output && s->bitrate && !s->circular_buffer_size) {
958 /* Warn user in case of 'circular_buffer_size' is not set */
959 av_log(h, AV_LOG_WARNING,"'bitrate' option was set but 'circular_buffer_size' is not, but required\n");
962 if ((!is_output && s->circular_buffer_size) || (is_output && s->bitrate && s->circular_buffer_size)) {
965 /* start the task going */
966 s->fifo = av_fifo_alloc(s->circular_buffer_size);
967 ret = pthread_mutex_init(&s->mutex, NULL);
969 av_log(h, AV_LOG_ERROR, "pthread_mutex_init failed : %s\n", strerror(ret));
972 ret = pthread_cond_init(&s->cond, NULL);
974 av_log(h, AV_LOG_ERROR, "pthread_cond_init failed : %s\n", strerror(ret));
977 ret = pthread_create(&s->circular_buffer_thread, NULL, is_output?circular_buffer_task_tx:circular_buffer_task_rx, h);
979 av_log(h, AV_LOG_ERROR, "pthread_create failed : %s\n", strerror(ret));
982 s->thread_started = 1;
987 #if HAVE_PTHREAD_CANCEL
989 pthread_cond_destroy(&s->cond);
991 pthread_mutex_destroy(&s->mutex);
996 av_fifo_freep(&s->fifo);
997 for (i = 0; i < num_include_sources; i++)
998 av_freep(&include_sources[i]);
999 for (i = 0; i < num_exclude_sources; i++)
1000 av_freep(&exclude_sources[i]);
1001 return AVERROR(EIO);
1004 static int udplite_open(URLContext *h, const char *uri, int flags)
1006 UDPContext *s = h->priv_data;
1008 // set default checksum coverage
1009 s->udplite_coverage = UDP_HEADER_SIZE;
1011 return udp_open(h, uri, flags);
1014 static int udp_read(URLContext *h, uint8_t *buf, int size)
1016 UDPContext *s = h->priv_data;
1018 #if HAVE_PTHREAD_CANCEL
1019 int avail, nonblock = h->flags & AVIO_FLAG_NONBLOCK;
1022 pthread_mutex_lock(&s->mutex);
1024 avail = av_fifo_size(s->fifo);
1025 if (avail) { // >=size) {
1028 av_fifo_generic_read(s->fifo, tmp, 4, NULL);
1029 avail= AV_RL32(tmp);
1031 av_log(h, AV_LOG_WARNING, "Part of datagram lost due to insufficient buffer size\n");
1035 av_fifo_generic_read(s->fifo, buf, avail, NULL);
1036 av_fifo_drain(s->fifo, AV_RL32(tmp) - avail);
1037 pthread_mutex_unlock(&s->mutex);
1039 } else if(s->circular_buffer_error){
1040 int err = s->circular_buffer_error;
1041 pthread_mutex_unlock(&s->mutex);
1043 } else if(nonblock) {
1044 pthread_mutex_unlock(&s->mutex);
1045 return AVERROR(EAGAIN);
1048 /* FIXME: using the monotonic clock would be better,
1049 but it does not exist on all supported platforms. */
1050 int64_t t = av_gettime() + 100000;
1051 struct timespec tv = { .tv_sec = t / 1000000,
1052 .tv_nsec = (t % 1000000) * 1000 };
1053 if (pthread_cond_timedwait(&s->cond, &s->mutex, &tv) < 0) {
1054 pthread_mutex_unlock(&s->mutex);
1055 return AVERROR(errno == ETIMEDOUT ? EAGAIN : errno);
1063 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
1064 ret = ff_network_wait_fd(s->udp_fd, 0);
1068 ret = recv(s->udp_fd, buf, size, 0);
1070 return ret < 0 ? ff_neterrno() : ret;
1073 static int udp_write(URLContext *h, const uint8_t *buf, int size)
1075 UDPContext *s = h->priv_data;
1078 #if HAVE_PTHREAD_CANCEL
1082 pthread_mutex_lock(&s->mutex);
1085 Return error if last tx failed.
1086 Here we can't know on which packet error was, but it needs to know that error exists.
1088 if (s->circular_buffer_error<0) {
1089 int err=s->circular_buffer_error;
1090 pthread_mutex_unlock(&s->mutex);
1094 if(av_fifo_space(s->fifo) < size + 4) {
1095 /* What about a partial packet tx ? */
1096 pthread_mutex_unlock(&s->mutex);
1097 return AVERROR(ENOMEM);
1100 av_fifo_generic_write(s->fifo, tmp, 4, NULL); /* size of packet */
1101 av_fifo_generic_write(s->fifo, (uint8_t *)buf, size, NULL); /* the data */
1102 pthread_cond_signal(&s->cond);
1103 pthread_mutex_unlock(&s->mutex);
1107 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
1108 ret = ff_network_wait_fd(s->udp_fd, 1);
1113 if (!s->is_connected) {
1114 ret = sendto (s->udp_fd, buf, size, 0,
1115 (struct sockaddr *) &s->dest_addr,
1118 ret = send(s->udp_fd, buf, size, 0);
1120 return ret < 0 ? ff_neterrno() : ret;
1123 static int udp_close(URLContext *h)
1125 UDPContext *s = h->priv_data;
1127 #if HAVE_PTHREAD_CANCEL
1128 // Request close once writing is finished
1129 if (s->thread_started && !(h->flags & AVIO_FLAG_READ)) {
1130 pthread_mutex_lock(&s->mutex);
1132 pthread_cond_signal(&s->cond);
1133 pthread_mutex_unlock(&s->mutex);
1137 if (s->is_multicast && (h->flags & AVIO_FLAG_READ))
1138 udp_leave_multicast_group(s->udp_fd, (struct sockaddr *)&s->dest_addr,(struct sockaddr *)&s->local_addr_storage);
1139 #if HAVE_PTHREAD_CANCEL
1140 if (s->thread_started) {
1142 // Cancel only read, as write has been signaled as success to the user
1143 if (h->flags & AVIO_FLAG_READ)
1144 pthread_cancel(s->circular_buffer_thread);
1145 ret = pthread_join(s->circular_buffer_thread, NULL);
1147 av_log(h, AV_LOG_ERROR, "pthread_join(): %s\n", strerror(ret));
1148 pthread_mutex_destroy(&s->mutex);
1149 pthread_cond_destroy(&s->cond);
1152 closesocket(s->udp_fd);
1153 av_fifo_freep(&s->fifo);
1157 const URLProtocol ff_udp_protocol = {
1159 .url_open = udp_open,
1160 .url_read = udp_read,
1161 .url_write = udp_write,
1162 .url_close = udp_close,
1163 .url_get_file_handle = udp_get_file_handle,
1164 .priv_data_size = sizeof(UDPContext),
1165 .priv_data_class = &udp_class,
1166 .flags = URL_PROTOCOL_FLAG_NETWORK,
1169 const URLProtocol ff_udplite_protocol = {
1171 .url_open = udplite_open,
1172 .url_read = udp_read,
1173 .url_write = udp_write,
1174 .url_close = udp_close,
1175 .url_get_file_handle = udp_get_file_handle,
1176 .priv_data_size = sizeof(UDPContext),
1177 .priv_data_class = &udplite_context_class,
1178 .flags = URL_PROTOCOL_FLAG_NETWORK,