FFmpeg
Loading...
Searching...
No Matches
libsrt.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19/**
20 * @file
21 * Haivision Open SRT (Secure Reliable Transport) protocol
22 */
23
24#include <srt/srt.h>
25
26#include "libavutil/mem.h"
27#include "libavutil/opt.h"
29#include "libavutil/time.h"
30
31#include "avformat.h"
32#include "internal.h"
33#include "network.h"
34#include "os_support.h"
35#include "url.h"
36#include "urldecode.h"
37
38/* This is for MPEG-TS and it's a default SRTO_PAYLOADSIZE for SRTT_LIVE (8 TS packets) */
39#ifndef SRT_LIVE_DEFAULT_PAYLOAD_SIZE
40#define SRT_LIVE_DEFAULT_PAYLOAD_SIZE 1316
41#endif
42
43/* This is the maximum payload size for Live mode, should you have a different payload type than MPEG-TS */
44#ifndef SRT_LIVE_MAX_PAYLOAD_SIZE
45#define SRT_LIVE_MAX_PAYLOAD_SIZE 1456
46#endif
47
53
54typedef struct SRTContext {
55 const AVClass *class;
56 int fd;
57 int eid;
62
66#if SRT_VERSION_VALUE >= 0x010302
67 int enforced_encryption;
68 int kmrefreshrate;
69 int kmpreannounce;
70 int64_t snddropdelay;
71#endif
72 int mss;
73 int ffs;
74 int ipttl;
75 int iptos;
85 /* enum SRTMode, use int for AVOption */
86 int mode;
87 int sndbuf;
88 int rcvbuf;
91 char *streamid;
92 char *smoother;
94 SRT_TRANSTYPE transtype;
95 int linger;
96 int tsbpd;
97#if SRT_VERSION_VALUE >= 0x010400
98 int ipv6only;
99#endif
100} SRTContext;
101
102#define D AV_OPT_FLAG_DECODING_PARAM
103#define E AV_OPT_FLAG_ENCODING_PARAM
104#define OFFSET(x) offsetof(SRTContext, x)
105static const AVOption libsrt_options[] = {
106 { "timeout", "Timeout of socket I/O operations (in microseconds)", OFFSET(rw_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
107 { "listen_timeout", "Connection awaiting timeout (in microseconds)" , OFFSET(listen_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
108 { "send_buffer_size", "Socket send buffer size (in bytes)", OFFSET(send_buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
109 { "recv_buffer_size", "Socket receive buffer size (in bytes)", OFFSET(recv_buffer_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
110 { "pkt_size", "Maximum SRT packet size", OFFSET(payload_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, SRT_LIVE_MAX_PAYLOAD_SIZE, .flags = D|E, .unit = "payload_size" },
111 { "payload_size", "Maximum SRT packet size", OFFSET(payload_size), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, SRT_LIVE_MAX_PAYLOAD_SIZE, .flags = D|E, .unit = "payload_size" },
112 { "ts_size", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_LIVE_DEFAULT_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, .unit = "payload_size" },
113 { "max_size", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_LIVE_MAX_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, .unit = "payload_size" },
114 { "maxbw", "Maximum bandwidth (bytes per second) that the connection can use", OFFSET(maxbw), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
115 { "pbkeylen", "Crypto key len in bytes {16,24,32} Default: 16 (128-bit)", OFFSET(pbkeylen), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 32, .flags = D|E },
116 { "passphrase", "Crypto PBKDF2 Passphrase size[0,10..64] 0:disable crypto", OFFSET(passphrase), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
117#if SRT_VERSION_VALUE >= 0x010302
118 { "enforced_encryption", "Enforces that both connection parties have the same passphrase set", OFFSET(enforced_encryption), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
119 { "kmrefreshrate", "The number of packets to be transmitted after which the encryption key is switched to a new key", OFFSET(kmrefreshrate), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
120 { "kmpreannounce", "The interval between when a new encryption key is sent and when switchover occurs", OFFSET(kmpreannounce), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
121 { "snddropdelay", "The sender's extra delay(in microseconds) before dropping packets", OFFSET(snddropdelay), AV_OPT_TYPE_INT64, { .i64 = -2 }, -2, INT64_MAX, .flags = D|E },
122#endif
123 { "mss", "The Maximum Segment Size", OFFSET(mss), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 1500, .flags = D|E },
124 { "ffs", "Flight flag size (window size) (in bytes)", OFFSET(ffs), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
125 { "ipttl", "IP Time To Live", OFFSET(ipttl), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, .flags = D|E },
126 { "iptos", "IP Type of Service", OFFSET(iptos), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 255, .flags = D|E },
127 { "inputbw", "Estimated input stream rate", OFFSET(inputbw), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
128 { "oheadbw", "MaxBW ceiling based on % over input stream rate", OFFSET(oheadbw), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, 100, .flags = D|E },
129 { "latency", "receiver delay (in microseconds) to absorb bursts of missed packet retransmissions", OFFSET(latency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
130 { "tsbpddelay", "deprecated, same effect as latency option", OFFSET(latency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
131 { "rcvlatency", "receive latency (in microseconds)", OFFSET(rcvlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
132 { "peerlatency", "peer latency (in microseconds)", OFFSET(peerlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
133 { "tlpktdrop", "Enable too-late pkt drop", OFFSET(tlpktdrop), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
134 { "nakreport", "Enable receiver to send periodic NAK reports", OFFSET(nakreport), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
135 { "connect_timeout", "Connect timeout(in milliseconds). Caller default: 3000, rendezvous (x 10)", OFFSET(connect_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
136 { "mode", "Connection mode (caller, listener, rendezvous)", OFFSET(mode), AV_OPT_TYPE_INT, { .i64 = SRT_MODE_CALLER }, SRT_MODE_CALLER, SRT_MODE_RENDEZVOUS, .flags = D|E, .unit = "mode" },
137 { "caller", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_CALLER }, INT_MIN, INT_MAX, .flags = D|E, .unit = "mode" },
138 { "listener", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_LISTENER }, INT_MIN, INT_MAX, .flags = D|E, .unit = "mode" },
139 { "rendezvous", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRT_MODE_RENDEZVOUS }, INT_MIN, INT_MAX, .flags = D|E, .unit = "mode" },
140 { "sndbuf", "Send buffer size (in bytes)", OFFSET(sndbuf), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
141 { "rcvbuf", "Receive buffer size (in bytes)", OFFSET(rcvbuf), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
142 { "lossmaxttl", "Maximum possible packet reorder tolerance", OFFSET(lossmaxttl), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
143 { "minversion", "The minimum SRT version that is required from the peer", OFFSET(minversion), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
144 { "streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
145 { "srt_streamid", "A string of up to 512 characters that an Initiator can pass to a Responder", OFFSET(streamid), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
146 { "smoother", "The type of Smoother used for the transmission for that socket", OFFSET(smoother), AV_OPT_TYPE_STRING, { .str = NULL }, .flags = D|E },
147 { "messageapi", "Enable message API", OFFSET(messageapi), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
148 { "transtype", "The transmission type for the socket", OFFSET(transtype), AV_OPT_TYPE_INT, { .i64 = SRTT_INVALID }, SRTT_LIVE, SRTT_INVALID, .flags = D|E, .unit = "transtype" },
149 { "live", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRTT_LIVE }, INT_MIN, INT_MAX, .flags = D|E, .unit = "transtype" },
150 { "file", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = SRTT_FILE }, INT_MIN, INT_MAX, .flags = D|E, .unit = "transtype" },
151 { "linger", "Number of seconds that the socket waits for unsent data when closing", OFFSET(linger), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
152 { "tsbpd", "Timestamp-based packet delivery", OFFSET(tsbpd), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
153#if SRT_VERSION_VALUE >= 0x010400
154 { "ipv6only", "Accept IPv4 or not while using the IPv6 wildcard address", OFFSET(ipv6only), AV_OPT_TYPE_BOOL, { .i64 = -1 }, -1, 1, .flags = D|E },
155#endif
156 { NULL }
157};
158
160{
161 int os_errno;
162 int err = srt_getlasterror(&os_errno);
163 if (err == SRT_EASYNCRCV || err == SRT_EASYNCSND)
164 return AVERROR(EAGAIN);
165 av_log(h, AV_LOG_ERROR, "%s\n", srt_getlasterror_str());
166 return os_errno ? AVERROR(os_errno) : AVERROR_UNKNOWN;
167}
168
169static int libsrt_getsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, void * optval, int * optlen)
170{
171 if (srt_getsockopt(fd, 0, optname, optval, optlen) < 0) {
172 av_log(h, AV_LOG_ERROR, "failed to get option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
173 return AVERROR(EIO);
174 }
175 return 0;
176}
177
178static int libsrt_socket_nonblock(int socket, int enable)
179{
180 int ret, blocking = enable ? 0 : 1;
181 /* Setting SRTO_{SND,RCV}SYN options to 1 enable blocking mode, setting them to 0 enable non-blocking mode. */
182 ret = srt_setsockopt(socket, 0, SRTO_SNDSYN, &blocking, sizeof(blocking));
183 if (ret < 0)
184 return ret;
185 return srt_setsockopt(socket, 0, SRTO_RCVSYN, &blocking, sizeof(blocking));
186}
187
188static int libsrt_epoll_create(URLContext *h, int fd, int write)
189{
190 int modes = SRT_EPOLL_ERR | (write ? SRT_EPOLL_OUT : SRT_EPOLL_IN);
191 int eid = srt_epoll_create();
192 if (eid < 0)
193 return libsrt_neterrno(h);
194 if (srt_epoll_add_usock(eid, fd, &modes) < 0) {
195 srt_epoll_release(eid);
196 return libsrt_neterrno(h);
197 }
198 return eid;
199}
200
201static int libsrt_network_wait_fd(URLContext *h, int eid, int write)
202{
203 int ret, len = 1, errlen = 1;
204 SRTSOCKET ready[1];
205 SRTSOCKET error[1];
206
207 if (write) {
208 ret = srt_epoll_wait(eid, error, &errlen, ready, &len, POLLING_TIME, 0, 0, 0, 0);
209 } else {
210 ret = srt_epoll_wait(eid, ready, &len, error, &errlen, POLLING_TIME, 0, 0, 0, 0);
211 }
212 if (ret < 0) {
213 if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
214 ret = AVERROR(EAGAIN);
215 else
216 ret = libsrt_neterrno(h);
217 } else {
218 ret = errlen ? AVERROR(EIO) : 0;
219 }
220 return ret;
221}
222
223/* TODO de-duplicate code from ff_network_wait_fd_timeout() */
224
225static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int write, int64_t timeout, AVIOInterruptCB *int_cb)
226{
227 int ret;
228 int64_t wait_start = 0;
229
230 while (1) {
232 return AVERROR_EXIT;
233 ret = libsrt_network_wait_fd(h, eid, write);
234 if (ret != AVERROR(EAGAIN))
235 return ret;
236 if (timeout > 0) {
237 if (!wait_start)
238 wait_start = av_gettime_relative();
239 else if (av_gettime_relative() - wait_start > timeout)
240 return AVERROR(ETIMEDOUT);
241 }
242 }
243}
244
245static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int64_t timeout)
246{
247 int ret;
248 int reuse = 1;
249 /* Max streamid length plus an extra space for the terminating null character */
250 char streamid[513];
251 int streamid_len = sizeof(streamid);
252 if (srt_setsockopt(fd, SOL_SOCKET, SRTO_REUSEADDR, &reuse, sizeof(reuse))) {
253 av_log(h, AV_LOG_WARNING, "setsockopt(SRTO_REUSEADDR) failed\n");
254 }
255 if (srt_bind(fd, addr, addrlen))
256 return libsrt_neterrno(h);
257
258 if (srt_listen(fd, 1))
259 return libsrt_neterrno(h);
260
261 ret = libsrt_network_wait_fd_timeout(h, eid, 0, timeout, &h->interrupt_callback);
262 if (ret < 0)
263 return ret;
264
265 ret = srt_accept(fd, NULL, NULL);
266 if (ret < 0)
267 return libsrt_neterrno(h);
268 if (libsrt_socket_nonblock(ret, 1) < 0)
269 av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
270 if (!libsrt_getsockopt(h, ret, SRTO_STREAMID, "SRTO_STREAMID", streamid, &streamid_len))
271 /* Note: returned streamid_len doesn't count the terminating null character */
272 av_log(h, AV_LOG_VERBOSE, "accept streamid [%s], length %d\n", streamid, streamid_len);
273
274 return ret;
275}
276
277static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int64_t timeout, URLContext *h, int will_try_next)
278{
279 int ret;
280
281 if (srt_connect(fd, addr, addrlen) < 0)
282 return libsrt_neterrno(h);
283
284 ret = libsrt_network_wait_fd_timeout(h, eid, 1, timeout, &h->interrupt_callback);
285 if (ret < 0) {
286 if (will_try_next) {
288 "Connection to %s failed (%s), trying next address\n",
289 h->filename, av_err2str(ret));
290 } else {
291 av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
292 h->filename, av_err2str(ret));
293 }
294 }
295 return ret;
296}
297
298static int libsrt_setsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, const void * optval, int optlen)
299{
300 if (srt_setsockopt(fd, 0, optname, optval, optlen) < 0) {
301 av_log(h, AV_LOG_ERROR, "failed to set option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
302 return AVERROR(EIO);
303 }
304 return 0;
305}
306
307/* - The "POST" options can be altered any time on a connected socket.
308 They MAY have also some meaning when set prior to connecting; such
309 option is SRTO_RCVSYN, which makes connect/accept call asynchronous.
310 Because of that this option is treated special way in this app. */
312{
313 SRTContext *s = h->priv_data;
314
315 if ((s->inputbw >= 0 && libsrt_setsockopt(h, fd, SRTO_INPUTBW, "SRTO_INPUTBW", &s->inputbw, sizeof(s->inputbw)) < 0) ||
316 (s->oheadbw >= 0 && libsrt_setsockopt(h, fd, SRTO_OHEADBW, "SRTO_OHEADBW", &s->oheadbw, sizeof(s->oheadbw)) < 0)) {
317 return AVERROR(EIO);
318 }
319 return 0;
320}
321
322/* - The "PRE" options must be set prior to connecting and can't be altered
323 on a connected socket, however if set on a listening socket, they are
324 derived by accept-ed socket. */
326{
327 SRTContext *s = h->priv_data;
328 int yes = 1;
329 int latency = s->latency / 1000;
330 int rcvlatency = s->rcvlatency / 1000;
331 int peerlatency = s->peerlatency / 1000;
332#if SRT_VERSION_VALUE >= 0x010302
333 int snddropdelay = s->snddropdelay > 0 ? s->snddropdelay / 1000 : s->snddropdelay;
334#endif
335 int connect_timeout = s->connect_timeout;
336
337 if ((s->mode == SRT_MODE_RENDEZVOUS && libsrt_setsockopt(h, fd, SRTO_RENDEZVOUS, "SRTO_RENDEZVOUS", &yes, sizeof(yes)) < 0) ||
338 (s->transtype != SRTT_INVALID && libsrt_setsockopt(h, fd, SRTO_TRANSTYPE, "SRTO_TRANSTYPE", &s->transtype, sizeof(s->transtype)) < 0) ||
339 (s->maxbw >= 0 && libsrt_setsockopt(h, fd, SRTO_MAXBW, "SRTO_MAXBW", &s->maxbw, sizeof(s->maxbw)) < 0) ||
340 (s->pbkeylen >= 0 && libsrt_setsockopt(h, fd, SRTO_PBKEYLEN, "SRTO_PBKEYLEN", &s->pbkeylen, sizeof(s->pbkeylen)) < 0) ||
341 (s->passphrase && libsrt_setsockopt(h, fd, SRTO_PASSPHRASE, "SRTO_PASSPHRASE", s->passphrase, strlen(s->passphrase)) < 0) ||
342#if SRT_VERSION_VALUE >= 0x010302
343#if SRT_VERSION_VALUE >= 0x010401
344 (s->enforced_encryption >= 0 && libsrt_setsockopt(h, fd, SRTO_ENFORCEDENCRYPTION, "SRTO_ENFORCEDENCRYPTION", &s->enforced_encryption, sizeof(s->enforced_encryption)) < 0) ||
345#else
346 /* SRTO_STRICTENC == SRTO_ENFORCEDENCRYPTION (53), but for compatibility, we used SRTO_STRICTENC */
347 (s->enforced_encryption >= 0 && libsrt_setsockopt(h, fd, SRTO_STRICTENC, "SRTO_STRICTENC", &s->enforced_encryption, sizeof(s->enforced_encryption)) < 0) ||
348#endif
349 (s->kmrefreshrate >= 0 && libsrt_setsockopt(h, fd, SRTO_KMREFRESHRATE, "SRTO_KMREFRESHRATE", &s->kmrefreshrate, sizeof(s->kmrefreshrate)) < 0) ||
350 (s->kmpreannounce >= 0 && libsrt_setsockopt(h, fd, SRTO_KMPREANNOUNCE, "SRTO_KMPREANNOUNCE", &s->kmpreannounce, sizeof(s->kmpreannounce)) < 0) ||
351 (s->snddropdelay >=-1 && libsrt_setsockopt(h, fd, SRTO_SNDDROPDELAY, "SRTO_SNDDROPDELAY", &snddropdelay, sizeof(snddropdelay)) < 0) ||
352#endif
353 (s->mss >= 0 && libsrt_setsockopt(h, fd, SRTO_MSS, "SRTO_MSS", &s->mss, sizeof(s->mss)) < 0) ||
354 (s->ffs >= 0 && libsrt_setsockopt(h, fd, SRTO_FC, "SRTO_FC", &s->ffs, sizeof(s->ffs)) < 0) ||
355 (s->ipttl >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTTL, "SRTO_IPTTL", &s->ipttl, sizeof(s->ipttl)) < 0) ||
356 (s->iptos >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTOS, "SRTO_IPTOS", &s->iptos, sizeof(s->iptos)) < 0) ||
357 (s->latency >= 0 && libsrt_setsockopt(h, fd, SRTO_LATENCY, "SRTO_LATENCY", &latency, sizeof(latency)) < 0) ||
358 (s->rcvlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVLATENCY, "SRTO_RCVLATENCY", &rcvlatency, sizeof(rcvlatency)) < 0) ||
359 (s->peerlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_PEERLATENCY, "SRTO_PEERLATENCY", &peerlatency, sizeof(peerlatency)) < 0) ||
360 (s->tlpktdrop >= 0 && libsrt_setsockopt(h, fd, SRTO_TLPKTDROP, "SRTO_TLPKTDROP", &s->tlpktdrop, sizeof(s->tlpktdrop)) < 0) ||
361 (s->nakreport >= 0 && libsrt_setsockopt(h, fd, SRTO_NAKREPORT, "SRTO_NAKREPORT", &s->nakreport, sizeof(s->nakreport)) < 0) ||
362 (connect_timeout >= 0 && libsrt_setsockopt(h, fd, SRTO_CONNTIMEO, "SRTO_CONNTIMEO", &connect_timeout, sizeof(connect_timeout)) <0 ) ||
363 (s->sndbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_SNDBUF, "SRTO_SNDBUF", &s->sndbuf, sizeof(s->sndbuf)) < 0) ||
364 (s->rcvbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVBUF, "SRTO_RCVBUF", &s->rcvbuf, sizeof(s->rcvbuf)) < 0) ||
365 (s->lossmaxttl >= 0 && libsrt_setsockopt(h, fd, SRTO_LOSSMAXTTL, "SRTO_LOSSMAXTTL", &s->lossmaxttl, sizeof(s->lossmaxttl)) < 0) ||
366 (s->minversion >= 0 && libsrt_setsockopt(h, fd, SRTO_MINVERSION, "SRTO_MINVERSION", &s->minversion, sizeof(s->minversion)) < 0) ||
367 (s->streamid && libsrt_setsockopt(h, fd, SRTO_STREAMID, "SRTO_STREAMID", s->streamid, strlen(s->streamid)) < 0) ||
368#if SRT_VERSION_VALUE >= 0x010401
369 (s->smoother && libsrt_setsockopt(h, fd, SRTO_CONGESTION, "SRTO_CONGESTION", s->smoother, strlen(s->smoother)) < 0) ||
370#else
371 (s->smoother && libsrt_setsockopt(h, fd, SRTO_SMOOTHER, "SRTO_SMOOTHER", s->smoother, strlen(s->smoother)) < 0) ||
372#endif
373 (s->messageapi >= 0 && libsrt_setsockopt(h, fd, SRTO_MESSAGEAPI, "SRTO_MESSAGEAPI", &s->messageapi, sizeof(s->messageapi)) < 0) ||
374 (s->payload_size >= 0 && libsrt_setsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &s->payload_size, sizeof(s->payload_size)) < 0) ||
375 ((h->flags & AVIO_FLAG_WRITE) && libsrt_setsockopt(h, fd, SRTO_SENDER, "SRTO_SENDER", &yes, sizeof(yes)) < 0) ||
376 (s->tsbpd >= 0 && libsrt_setsockopt(h, fd, SRTO_TSBPDMODE, "SRTO_TSBPDMODE", &s->tsbpd, sizeof(s->tsbpd)) < 0)) {
377 return AVERROR(EIO);
378 }
379
380 if (s->linger >= 0) {
381 struct linger lin;
382 lin.l_linger = s->linger;
383 lin.l_onoff = lin.l_linger > 0 ? 1 : 0;
384 if (libsrt_setsockopt(h, fd, SRTO_LINGER, "SRTO_LINGER", &lin, sizeof(lin)) < 0)
385 return AVERROR(EIO);
386 }
387 return 0;
388}
389
390
391static int libsrt_setup(URLContext *h, const char *uri, int flags)
392{
393 struct addrinfo hints = { 0 }, *ai, *cur_ai;
394 int port, fd;
395 SRTContext *s = h->priv_data;
396 int ret;
397 char hostname[1024],proto[1024],path[1024];
398 char portstr[10];
399 int64_t open_timeout = 0;
400 int eid;
401
402 av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
403 &port, path, sizeof(path), uri);
404 if (strcmp(proto, "srt"))
405 return AVERROR(EINVAL);
406 if (port <= 0 || port >= 65536) {
407 av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
408 return AVERROR(EINVAL);
409 }
410 if (s->rw_timeout >= 0) {
411 open_timeout = h->rw_timeout = s->rw_timeout;
412 }
413 hints.ai_family = AF_UNSPEC;
414 hints.ai_socktype = SOCK_DGRAM;
415 snprintf(portstr, sizeof(portstr), "%d", port);
416 if (s->mode == SRT_MODE_LISTENER)
417 hints.ai_flags |= AI_PASSIVE;
418 ret = getaddrinfo(hostname[0] ? hostname : NULL, portstr, &hints, &ai);
419 if (ret) {
421 "Failed to resolve hostname %s: %s\n",
422 hostname, gai_strerror(ret));
423 return AVERROR(EIO);
424 }
425
426 cur_ai = ai;
427
428 restart:
429
430#if SRT_VERSION_VALUE >= 0x010401
431 fd = srt_create_socket();
432#else
433 fd = srt_socket(cur_ai->ai_family, cur_ai->ai_socktype, 0);
434#endif
435 if (fd < 0) {
436 ret = libsrt_neterrno(h);
437 goto fail;
438 }
439
440 if ((ret = libsrt_set_options_pre(h, fd)) < 0) {
441 goto fail;
442 }
443
444 /* Set the socket's send or receive buffer sizes, if specified.
445 If unspecified or setting fails, system default is used. */
446 if (s->recv_buffer_size > 0) {
447 srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_RCVBUF, &s->recv_buffer_size, sizeof (s->recv_buffer_size));
448 }
449 if (s->send_buffer_size > 0) {
450 srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_SNDBUF, &s->send_buffer_size, sizeof (s->send_buffer_size));
451 }
452 if (libsrt_socket_nonblock(fd, 1) < 0)
453 av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
454
455 if (s->mode == SRT_MODE_LISTENER) {
456#if SRT_VERSION_VALUE >= 0x010400
457 if (s->ipv6only != -1) {
458 if (srt_setsockopt(fd, SOL_SOCKET, SRTO_IPV6ONLY, &s->ipv6only, sizeof(s->ipv6only))) {
459 av_log(h, AV_LOG_WARNING, "setsockopt(SRTO_IPV6ONLY) failed\n");
460 }
461 }
462#if SRT_VERSION_VALUE >= 0x010502
463 else if (cur_ai->ai_family == AF_INET6) {
464 struct sockaddr_in6 *ipv6 = (struct sockaddr_in6 *)cur_ai->ai_addr;
465 if (IN6_IS_ADDR_UNSPECIFIED(&(ipv6->sin6_addr))) {
466 av_log(h, AV_LOG_ERROR, "You must specify \"ipv6only\" option if you use a IPv6 wildcard address\n");
467 ret = AVERROR(EINVAL);
468 goto fail1;
469 }
470 }
471#endif
472#endif
473 int read_eid = ret = libsrt_epoll_create(h, fd, 0);
474 if (ret < 0)
475 goto fail1;
476 // multi-client
477 ret = libsrt_listen(read_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, s->listen_timeout);
478 srt_epoll_release(read_eid);
479 if (ret < 0)
480 goto fail1;
481 srt_close(fd);
482 fd = ret;
483 } else {
484 int write_eid = ret = libsrt_epoll_create(h, fd, 1);
485 if (ret < 0)
486 goto fail1;
487 if (s->mode == SRT_MODE_RENDEZVOUS) {
488 if (srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen)) {
489 ret = libsrt_neterrno(h);
490 srt_epoll_release(write_eid);
491 goto fail1;
492 }
493 }
494
495 ret = libsrt_listen_connect(write_eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
496 open_timeout, h, !!cur_ai->ai_next);
497 srt_epoll_release(write_eid);
498 if (ret < 0) {
499 if (ret == AVERROR_EXIT)
500 goto fail1;
501 else
502 goto fail;
503 }
504 }
505 if ((ret = libsrt_set_options_post(h, fd)) < 0) {
506 goto fail;
507 }
508
509 if (flags & AVIO_FLAG_WRITE) {
510 int packet_size = 0;
511 int optlen = sizeof(packet_size);
512 ret = libsrt_getsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &packet_size, &optlen);
513 if (ret < 0)
514 goto fail1;
515 if (packet_size > 0)
516 h->max_packet_size = packet_size;
517 }
518
519 ret = eid = libsrt_epoll_create(h, fd, flags & AVIO_FLAG_WRITE);
520 if (eid < 0)
521 goto fail1;
522
523 h->is_streamed = 1;
524 s->fd = fd;
525 s->eid = eid;
526
527 freeaddrinfo(ai);
528 return 0;
529
530 fail:
531 if (cur_ai->ai_next) {
532 /* Retry with the next sockaddr */
533 cur_ai = cur_ai->ai_next;
534 if (fd >= 0)
535 srt_close(fd);
536 ret = 0;
537 goto restart;
538 }
539 fail1:
540 if (fd >= 0)
541 srt_close(fd);
542 freeaddrinfo(ai);
543 return ret;
544}
545
546static int libsrt_open(URLContext *h, const char *uri, int flags)
547{
548 SRTContext *s = h->priv_data;
549 const char * p;
550 int ret = 0;
551
552 if (srt_startup() < 0) {
553 return AVERROR_UNKNOWN;
554 }
555
556 /* SRT options (srt/srt.h) */
557 p = strchr(uri, '?');
558 if (p) {
560 if (ret < 0)
561 goto err;
562 }
563 ret = libsrt_setup(h, uri, flags);
564 if (ret < 0)
565 goto err;
566 return 0;
567
568err:
569 srt_cleanup();
570 return ret;
571}
572
573static int libsrt_read(URLContext *h, uint8_t *buf, int size)
574{
575 SRTContext *s = h->priv_data;
576 int ret;
577
578 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
579 ret = libsrt_network_wait_fd_timeout(h, s->eid, 0, h->rw_timeout, &h->interrupt_callback);
580 if (ret)
581 return ret;
582 }
583
584 ret = srt_recvmsg(s->fd, buf, size);
585 if (ret < 0) {
586 ret = libsrt_neterrno(h);
587 }
588
589 return ret;
590}
591
592static int libsrt_write(URLContext *h, const uint8_t *buf, int size)
593{
594 SRTContext *s = h->priv_data;
595 int ret;
596
597 if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
598 ret = libsrt_network_wait_fd_timeout(h, s->eid, 1, h->rw_timeout, &h->interrupt_callback);
599 if (ret)
600 return ret;
601 }
602
603 ret = srt_sendmsg(s->fd, buf, size, -1, 1);
604 if (ret < 0) {
605 ret = libsrt_neterrno(h);
606 }
607
608 return ret;
609}
610
612{
613 SRTContext *s = h->priv_data;
614
615 srt_epoll_release(s->eid);
616 srt_close(s->fd);
617
618 srt_cleanup();
619
620 return 0;
621}
622
623static const AVClass libsrt_class = {
624 .class_name = "libsrt",
625 .item_name = av_default_item_name,
626 .option = libsrt_options,
627 .version = LIBAVUTIL_VERSION_INT,
628};
629
631 .name = "srt",
632 .url_open = libsrt_open,
633 .url_read = libsrt_read,
634 .url_write = libsrt_write,
635 .url_close = libsrt_close,
636 .priv_data_size = sizeof(SRTContext),
638 .priv_data_class = &libsrt_class,
639};
#define E
Definition avdct.c:34
#define D
Definition avdct.c:35
Main libavformat public API header.
int ff_check_interrupt(AVIOInterruptCB *cb)
Check if the user has requested to interrupt a blocking function associated with cb.
Definition avio.c:922
#define AVIO_FLAG_WRITE
write-only
Definition avio.h:618
#define AVIO_FLAG_NONBLOCK
Use non-blocking mode.
Definition avio.h:636
#define flags(name, subs,...)
Definition cbs_h264.c:74
#define s(width, name)
Definition cbs_vp9.c:198
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
const AVIOInterruptCB int_cb
Definition ffmpeg.c:322
#define fail
Definition test.h:479
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT64
Underlying C type is int64_t.
Definition opt.h:262
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_BOOL
Underlying C type is int.
Definition opt.h:326
@ 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...
Definition opt.h:275
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:361
#define AVERROR_EXIT
Immediate exit was requested; the called function should not be restarted.
Definition error.h:58
#define AVERROR_UNKNOWN
Unknown error, typically from an external library.
Definition error.h:73
#define av_err2str(errnum)
Convenience macro, the return value should be used only directly in function arguments but never stan...
Definition error.h:122
#define AVERROR(e)
Definition error.h:45
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition log.h:231
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition log.h:216
#define AV_LOG_VERBOSE
Detailed information.
Definition log.h:226
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
const char * av_default_item_name(void *ptr)
Return the context name.
Definition log.c:241
#define LIBAVUTIL_VERSION_INT
Definition version.h:85
int ff_parse_opts_from_query_string(void *obj, const char *str, int allow_unknown)
Set a list of query string options on an object.
Definition utils.c:643
static int libsrt_open(URLContext *h, const char *uri, int flags)
Definition libsrt.c:546
#define SRT_LIVE_MAX_PAYLOAD_SIZE
Definition libsrt.c:45
static int libsrt_set_options_post(URLContext *h, int fd)
Definition libsrt.c:311
const URLProtocol ff_libsrt_protocol
Definition libsrt.c:630
static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int write, int64_t timeout, AVIOInterruptCB *int_cb)
Definition libsrt.c:225
static int libsrt_epoll_create(URLContext *h, int fd, int write)
Definition libsrt.c:188
static int libsrt_getsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char *optnamestr, void *optval, int *optlen)
Definition libsrt.c:169
static const AVOption libsrt_options[]
Definition libsrt.c:105
SRTMode
Definition libsrt.c:48
@ SRT_MODE_LISTENER
Definition libsrt.c:50
@ SRT_MODE_CALLER
Definition libsrt.c:49
@ SRT_MODE_RENDEZVOUS
Definition libsrt.c:51
static int libsrt_socket_nonblock(int socket, int enable)
Definition libsrt.c:178
static int libsrt_read(URLContext *h, uint8_t *buf, int size)
Definition libsrt.c:573
static int libsrt_neterrno(URLContext *h)
Definition libsrt.c:159
static int libsrt_write(URLContext *h, const uint8_t *buf, int size)
Definition libsrt.c:592
static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int64_t timeout)
Definition libsrt.c:245
#define SRT_LIVE_DEFAULT_PAYLOAD_SIZE
Definition libsrt.c:40
static int libsrt_setsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char *optnamestr, const void *optval, int optlen)
Definition libsrt.c:298
static int libsrt_close(URLContext *h)
Definition libsrt.c:611
static int libsrt_network_wait_fd(URLContext *h, int eid, int write)
Definition libsrt.c:201
static int libsrt_set_options_pre(URLContext *h, int fd)
Definition libsrt.c:325
#define OFFSET(x)
Definition libsrt.c:104
static int libsrt_setup(URLContext *h, const char *uri, int flags)
Definition libsrt.c:391
static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int64_t timeout, URLContext *h, int will_try_next)
Definition libsrt.c:277
static const AVClass libsrt_class
Definition libsrt.c:623
Memory handling functions.
#define POLLING_TIME
Definition network.h:249
#define gai_strerror
Definition network.h:225
#define getaddrinfo
Definition network.h:217
#define freeaddrinfo
Definition network.h:218
#define AI_PASSIVE
Definition network.h:179
AVOptions.
miscellaneous OS support macros and functions.
misc parsing utilities
static const SiprModeParam modes[MODE_COUNT]
Definition sipr.c:70
#define snprintf
Definition snprintf.h:34
Describe the class of an AVClass context structure.
Definition log.h:76
Callback for checking whether to abort blocking functions.
Definition avio.h:59
AVOption.
Definition opt.h:428
char * passphrase
Definition libsrt.c:65
int ipttl
Definition libsrt.c:74
int mss
Definition libsrt.c:72
int rcvbuf
Definition libsrt.c:88
int ffs
Definition libsrt.c:73
SRT_TRANSTYPE transtype
Definition libsrt.c:94
int64_t maxbw
Definition libsrt.c:63
char * smoother
Definition libsrt.c:92
int minversion
Definition libsrt.c:90
int nakreport
Definition libsrt.c:80
int64_t latency
Definition libsrt.c:78
int64_t rw_timeout
Definition libsrt.c:58
int sndbuf
Definition libsrt.c:87
int tlpktdrop
Definition libsrt.c:79
int iptos
Definition libsrt.c:75
int64_t rcvlatency
Definition libsrt.c:83
int payload_size
Definition libsrt.c:82
int mode
Definition libsrt.c:86
int recv_buffer_size
Definition libsrt.c:60
int eid
Definition libsrt.c:57
char * streamid
Definition libsrt.c:91
int tsbpd
Definition libsrt.c:96
int64_t peerlatency
Definition libsrt.c:84
int oheadbw
Definition libsrt.c:77
int linger
Definition libsrt.c:95
int pbkeylen
Definition libsrt.c:64
int fd
Definition libsrt.c:56
int64_t inputbw
Definition libsrt.c:76
int send_buffer_size
Definition libsrt.c:61
int messageapi
Definition libsrt.c:93
int64_t connect_timeout
Definition libsrt.c:81
int lossmaxttl
Definition libsrt.c:89
int64_t listen_timeout
Definition libsrt.c:59
int ai_socktype
Definition network.h:140
int ai_flags
Definition network.h:138
int ai_family
Definition network.h:139
Definition swscale.c:71
#define av_log(a,...)
static void error(const char *err)
int64_t av_gettime_relative(void)
Get the current time in microseconds since some unspecified starting point.
Definition time.c:57
int size
unbuffered private I/O API
#define URL_PROTOCOL_FLAG_NETWORK
Definition url.h:33
int len