]> git.sesse.net Git - ffmpeg/blob - libavformat/libsrt.c
avformat/hlsenc: allow a custom SDT and PAT period
[ffmpeg] / libavformat / libsrt.c
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/avassert.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/parseutils.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
37 /* This is for MPEG-TS and it's a default SRTO_PAYLOADSIZE for SRTT_LIVE (8 TS packets) */
38 #ifndef SRT_LIVE_DEFAULT_PAYLOAD_SIZE
39 #define SRT_LIVE_DEFAULT_PAYLOAD_SIZE 1316
40 #endif
41
42 /* This is the maximum payload size for Live mode, should you have a different payload type than MPEG-TS */
43 #ifndef SRT_LIVE_MAX_PAYLOAD_SIZE
44 #define SRT_LIVE_MAX_PAYLOAD_SIZE 1456
45 #endif
46
47 enum SRTMode {
48     SRT_MODE_CALLER = 0,
49     SRT_MODE_LISTENER = 1,
50     SRT_MODE_RENDEZVOUS = 2
51 };
52
53 typedef struct SRTContext {
54     const AVClass *class;
55     int fd;
56     int eid;
57     int64_t rw_timeout;
58     int64_t listen_timeout;
59     int recv_buffer_size;
60     int send_buffer_size;
61
62     int64_t maxbw;
63     int pbkeylen;
64     char *passphrase;
65 #if SRT_VERSION_VALUE >= 0x010302
66     int enforced_encryption;
67     int kmrefreshrate;
68     int kmpreannounce;
69 #endif
70     int mss;
71     int ffs;
72     int ipttl;
73     int iptos;
74     int64_t inputbw;
75     int oheadbw;
76     int64_t latency;
77     int tlpktdrop;
78     int nakreport;
79     int64_t connect_timeout;
80     int payload_size;
81     int64_t rcvlatency;
82     int64_t peerlatency;
83     enum SRTMode mode;
84     int sndbuf;
85     int rcvbuf;
86     int lossmaxttl;
87     int minversion;
88     char *streamid;
89     char *smoother;
90     int messageapi;
91     SRT_TRANSTYPE transtype;
92     int linger;
93 } SRTContext;
94
95 #define D AV_OPT_FLAG_DECODING_PARAM
96 #define E AV_OPT_FLAG_ENCODING_PARAM
97 #define OFFSET(x) offsetof(SRTContext, x)
98 static const AVOption libsrt_options[] = {
99     { "rw_timeout",     "Timeout of socket I/O operations",                                     OFFSET(rw_timeout),       AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
100     { "listen_timeout", "Connection awaiting timeout",                                          OFFSET(listen_timeout),   AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
101     { "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 },
102     { "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 },
103     { "pkt_size",       "Maximum SRT packet size",                                              OFFSET(payload_size),     AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, SRT_LIVE_MAX_PAYLOAD_SIZE, .flags = D|E, "payload_size" },
104     { "payload_size",   "Maximum SRT packet size",                                              OFFSET(payload_size),     AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, SRT_LIVE_MAX_PAYLOAD_SIZE, .flags = D|E, "payload_size" },
105     { "ts_size",        NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_LIVE_DEFAULT_PAYLOAD_SIZE }, INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
106     { "max_size",       NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_LIVE_MAX_PAYLOAD_SIZE },     INT_MIN, INT_MAX, .flags = D|E, "payload_size" },
107     { "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 },
108     { "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 },
109     { "passphrase",     "Crypto PBKDF2 Passphrase size[0,10..64] 0:disable crypto",             OFFSET(passphrase),       AV_OPT_TYPE_STRING,   { .str = NULL },              .flags = D|E },
110 #if SRT_VERSION_VALUE >= 0x010302
111     { "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 },
112     { "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 },
113     { "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 },
114 #endif
115     { "mss",            "The Maximum Segment Size",                                             OFFSET(mss),              AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, 1500,      .flags = D|E },
116     { "ffs",            "Flight flag size (window size) (in bytes)",                            OFFSET(ffs),              AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, INT_MAX,   .flags = D|E },
117     { "ipttl",          "IP Time To Live",                                                      OFFSET(ipttl),            AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, 255,       .flags = D|E },
118     { "iptos",          "IP Type of Service",                                                   OFFSET(iptos),            AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, 255,       .flags = D|E },
119     { "inputbw",        "Estimated input stream rate",                                          OFFSET(inputbw),          AV_OPT_TYPE_INT64,    { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
120     { "oheadbw",        "MaxBW ceiling based on % over input stream rate",                      OFFSET(oheadbw),          AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, 100,       .flags = D|E },
121     { "latency",        "receiver delay to absorb bursts of missed packet retransmissions",     OFFSET(latency),          AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
122     { "tsbpddelay",     "deprecated, same effect as latency option",                            OFFSET(latency),          AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
123     { "rcvlatency",     "receive latency",                                                      OFFSET(rcvlatency),       AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
124     { "peerlatency",    "peer latency",                                                         OFFSET(peerlatency),      AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
125     { "tlpktdrop",      "Enable receiver pkt drop",                                             OFFSET(tlpktdrop),        AV_OPT_TYPE_BOOL,     { .i64 = -1 }, -1, 1,         .flags = D|E },
126     { "nakreport",      "Enable receiver to send periodic NAK reports",                         OFFSET(nakreport),        AV_OPT_TYPE_BOOL,     { .i64 = -1 }, -1, 1,         .flags = D|E },
127     { "connect_timeout", "Connect timeout. Caller default: 3000, rendezvous (x 10)",            OFFSET(connect_timeout),  AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
128     { "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, "mode" },
129     { "caller",         NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_CALLER },     INT_MIN, INT_MAX, .flags = D|E, "mode" },
130     { "listener",       NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_LISTENER },   INT_MIN, INT_MAX, .flags = D|E, "mode" },
131     { "rendezvous",     NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRT_MODE_RENDEZVOUS }, INT_MIN, INT_MAX, .flags = D|E, "mode" },
132     { "sndbuf",         "Send buffer size (in bytes)",                                          OFFSET(sndbuf),           AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, INT_MAX,   .flags = D|E },
133     { "rcvbuf",         "Receive buffer size (in bytes)",                                       OFFSET(rcvbuf),           AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, INT_MAX,   .flags = D|E },
134     { "lossmaxttl",     "Maximum possible packet reorder tolerance",                            OFFSET(lossmaxttl),       AV_OPT_TYPE_INT,      { .i64 = -1 }, -1, INT_MAX,   .flags = D|E },
135     { "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 },
136     { "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 },
137     { "smoother",       "The type of Smoother used for the transmission for that socket",       OFFSET(smoother),         AV_OPT_TYPE_STRING,   { .str = NULL },              .flags = D|E },
138     { "messageapi",     "Enable message API",                                                   OFFSET(messageapi),       AV_OPT_TYPE_BOOL,     { .i64 = -1 }, -1, 1,         .flags = D|E },
139     { "transtype",      "The transmission type for the socket",                                 OFFSET(transtype),        AV_OPT_TYPE_INT,      { .i64 = SRTT_INVALID }, SRTT_LIVE, SRTT_INVALID, .flags = D|E, "transtype" },
140     { "live",           NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRTT_LIVE }, INT_MIN, INT_MAX, .flags = D|E, "transtype" },
141     { "file",           NULL, 0, AV_OPT_TYPE_CONST,  { .i64 = SRTT_FILE }, INT_MIN, INT_MAX, .flags = D|E, "transtype" },
142     { "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 },
143     { NULL }
144 };
145
146 static int libsrt_neterrno(URLContext *h)
147 {
148     int err = srt_getlasterror(NULL);
149     av_log(h, AV_LOG_ERROR, "%s\n", srt_getlasterror_str());
150     if (err == SRT_EASYNCRCV)
151         return AVERROR(EAGAIN);
152     return AVERROR_UNKNOWN;
153 }
154
155 static int libsrt_socket_nonblock(int socket, int enable)
156 {
157     int ret, blocking = enable ? 0 : 1;
158     /* Setting SRTO_{SND,RCV}SYN options to 1 enable blocking mode, setting them to 0 enable non-blocking mode. */
159     ret = srt_setsockopt(socket, 0, SRTO_SNDSYN, &blocking, sizeof(blocking));
160     if (ret < 0)
161         return ret;
162     return srt_setsockopt(socket, 0, SRTO_RCVSYN, &blocking, sizeof(blocking));
163 }
164
165 static int libsrt_network_wait_fd(URLContext *h, int eid, int fd, int write)
166 {
167     int ret, len = 1;
168     int modes = write ? SRT_EPOLL_OUT : SRT_EPOLL_IN;
169     SRTSOCKET ready[1];
170
171     if (srt_epoll_add_usock(eid, fd, &modes) < 0)
172         return libsrt_neterrno(h);
173     if (write) {
174         ret = srt_epoll_wait(eid, 0, 0, ready, &len, POLLING_TIME, 0, 0, 0, 0);
175     } else {
176         ret = srt_epoll_wait(eid, ready, &len, 0, 0, POLLING_TIME, 0, 0, 0, 0);
177     }
178     if (ret < 0) {
179         if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
180             ret = AVERROR(EAGAIN);
181         else
182             ret = libsrt_neterrno(h);
183     } else {
184         ret = 0;
185     }
186     if (srt_epoll_remove_usock(eid, fd) < 0)
187         return libsrt_neterrno(h);
188     return ret;
189 }
190
191 /* TODO de-duplicate code from ff_network_wait_fd_timeout() */
192
193 static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
194 {
195     int ret;
196     int64_t wait_start = 0;
197
198     while (1) {
199         if (ff_check_interrupt(int_cb))
200             return AVERROR_EXIT;
201         ret = libsrt_network_wait_fd(h, eid, fd, write);
202         if (ret != AVERROR(EAGAIN))
203             return ret;
204         if (timeout > 0) {
205             if (!wait_start)
206                 wait_start = av_gettime_relative();
207             else if (av_gettime_relative() - wait_start > timeout)
208                 return AVERROR(ETIMEDOUT);
209         }
210     }
211 }
212
213 static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int timeout)
214 {
215     int ret;
216     int reuse = 1;
217     if (srt_setsockopt(fd, SOL_SOCKET, SRTO_REUSEADDR, &reuse, sizeof(reuse))) {
218         av_log(h, AV_LOG_WARNING, "setsockopt(SRTO_REUSEADDR) failed\n");
219     }
220     ret = srt_bind(fd, addr, addrlen);
221     if (ret)
222         return libsrt_neterrno(h);
223
224     ret = srt_listen(fd, 1);
225     if (ret)
226         return libsrt_neterrno(h);
227
228     while ((ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback))) {
229         switch (ret) {
230         case AVERROR(ETIMEDOUT):
231             continue;
232         default:
233             return ret;
234         }
235     }
236
237     ret = srt_accept(fd, NULL, NULL);
238     if (ret < 0)
239         return libsrt_neterrno(h);
240     if (libsrt_socket_nonblock(ret, 1) < 0)
241         av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
242
243     return ret;
244 }
245
246 static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int timeout, URLContext *h, int will_try_next)
247 {
248     int ret;
249
250     if (libsrt_socket_nonblock(fd, 1) < 0)
251         av_log(h, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
252
253     while ((ret = srt_connect(fd, addr, addrlen))) {
254         ret = libsrt_neterrno(h);
255         switch (ret) {
256         case AVERROR(EINTR):
257             if (ff_check_interrupt(&h->interrupt_callback))
258                 return AVERROR_EXIT;
259             continue;
260         case AVERROR(EINPROGRESS):
261         case AVERROR(EAGAIN):
262             ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback);
263             if (ret < 0)
264                 return ret;
265             ret = srt_getlasterror(NULL);
266             srt_clearlasterror();
267             if (ret != 0) {
268                 char buf[128];
269                 ret = AVERROR(ret);
270                 av_strerror(ret, buf, sizeof(buf));
271                 if (will_try_next)
272                     av_log(h, AV_LOG_WARNING,
273                            "Connection to %s failed (%s), trying next address\n",
274                            h->filename, buf);
275                 else
276                     av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
277                            h->filename, buf);
278             }
279         default:
280             return ret;
281         }
282     }
283     return ret;
284 }
285
286 static int libsrt_setsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, const void * optval, int optlen)
287 {
288     if (srt_setsockopt(fd, 0, optname, optval, optlen) < 0) {
289         av_log(h, AV_LOG_ERROR, "failed to set option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
290         return AVERROR(EIO);
291     }
292     return 0;
293 }
294
295 static int libsrt_getsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, void * optval, int * optlen)
296 {
297     if (srt_getsockopt(fd, 0, optname, optval, optlen) < 0) {
298         av_log(h, AV_LOG_ERROR, "failed to get option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
299         return AVERROR(EIO);
300     }
301     return 0;
302 }
303
304 /* - The "POST" options can be altered any time on a connected socket.
305      They MAY have also some meaning when set prior to connecting; such
306      option is SRTO_RCVSYN, which makes connect/accept call asynchronous.
307      Because of that this option is treated special way in this app. */
308 static int libsrt_set_options_post(URLContext *h, int fd)
309 {
310     SRTContext *s = h->priv_data;
311
312     if ((s->inputbw >= 0 && libsrt_setsockopt(h, fd, SRTO_INPUTBW, "SRTO_INPUTBW", &s->inputbw, sizeof(s->inputbw)) < 0) ||
313         (s->oheadbw >= 0 && libsrt_setsockopt(h, fd, SRTO_OHEADBW, "SRTO_OHEADBW", &s->oheadbw, sizeof(s->oheadbw)) < 0)) {
314         return AVERROR(EIO);
315     }
316     return 0;
317 }
318
319 /* - The "PRE" options must be set prior to connecting and can't be altered
320      on a connected socket, however if set on a listening socket, they are
321      derived by accept-ed socket. */
322 static int libsrt_set_options_pre(URLContext *h, int fd)
323 {
324     SRTContext *s = h->priv_data;
325     int yes = 1;
326     int latency = s->latency / 1000;
327     int rcvlatency = s->rcvlatency / 1000;
328     int peerlatency = s->peerlatency / 1000;
329     int connect_timeout = s->connect_timeout;
330
331     if ((s->mode == SRT_MODE_RENDEZVOUS && libsrt_setsockopt(h, fd, SRTO_RENDEZVOUS, "SRTO_RENDEZVOUS", &yes, sizeof(yes)) < 0) ||
332         (s->transtype != SRTT_INVALID && libsrt_setsockopt(h, fd, SRTO_TRANSTYPE, "SRTO_TRANSTYPE", &s->transtype, sizeof(s->transtype)) < 0) ||
333         (s->maxbw >= 0 && libsrt_setsockopt(h, fd, SRTO_MAXBW, "SRTO_MAXBW", &s->maxbw, sizeof(s->maxbw)) < 0) ||
334         (s->pbkeylen >= 0 && libsrt_setsockopt(h, fd, SRTO_PBKEYLEN, "SRTO_PBKEYLEN", &s->pbkeylen, sizeof(s->pbkeylen)) < 0) ||
335         (s->passphrase && libsrt_setsockopt(h, fd, SRTO_PASSPHRASE, "SRTO_PASSPHRASE", s->passphrase, strlen(s->passphrase)) < 0) ||
336 #if SRT_VERSION_VALUE >= 0x010302
337         /* SRTO_STRICTENC == SRTO_ENFORCEDENCRYPTION (53), but for compatibility, we used SRTO_STRICTENC */
338         (s->enforced_encryption >= 0 && libsrt_setsockopt(h, fd, SRTO_STRICTENC, "SRTO_STRICTENC", &s->enforced_encryption, sizeof(s->enforced_encryption)) < 0) ||
339         (s->kmrefreshrate >= 0 && libsrt_setsockopt(h, fd, SRTO_KMREFRESHRATE, "SRTO_KMREFRESHRATE", &s->kmrefreshrate, sizeof(s->kmrefreshrate)) < 0) ||
340         (s->kmpreannounce >= 0 && libsrt_setsockopt(h, fd, SRTO_KMPREANNOUNCE, "SRTO_KMPREANNOUNCE", &s->kmpreannounce, sizeof(s->kmpreannounce)) < 0) ||
341 #endif
342         (s->mss >= 0 && libsrt_setsockopt(h, fd, SRTO_MSS, "SRTO_MSS", &s->mss, sizeof(s->mss)) < 0) ||
343         (s->ffs >= 0 && libsrt_setsockopt(h, fd, SRTO_FC, "SRTO_FC", &s->ffs, sizeof(s->ffs)) < 0) ||
344         (s->ipttl >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTTL, "SRTO_IPTTL", &s->ipttl, sizeof(s->ipttl)) < 0) ||
345         (s->iptos >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTOS, "SRTO_IPTOS", &s->iptos, sizeof(s->iptos)) < 0) ||
346         (s->latency >= 0 && libsrt_setsockopt(h, fd, SRTO_LATENCY, "SRTO_LATENCY", &latency, sizeof(latency)) < 0) ||
347         (s->rcvlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVLATENCY, "SRTO_RCVLATENCY", &rcvlatency, sizeof(rcvlatency)) < 0) ||
348         (s->peerlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_PEERLATENCY, "SRTO_PEERLATENCY", &peerlatency, sizeof(peerlatency)) < 0) ||
349         (s->tlpktdrop >= 0 && libsrt_setsockopt(h, fd, SRTO_TLPKTDROP, "SRTO_TLPKDROP", &s->tlpktdrop, sizeof(s->tlpktdrop)) < 0) ||
350         (s->nakreport >= 0 && libsrt_setsockopt(h, fd, SRTO_NAKREPORT, "SRTO_NAKREPORT", &s->nakreport, sizeof(s->nakreport)) < 0) ||
351         (connect_timeout >= 0 && libsrt_setsockopt(h, fd, SRTO_CONNTIMEO, "SRTO_CONNTIMEO", &connect_timeout, sizeof(connect_timeout)) <0 ) ||
352         (s->sndbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_SNDBUF, "SRTO_SNDBUF", &s->sndbuf, sizeof(s->sndbuf)) < 0) ||
353         (s->rcvbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVBUF, "SRTO_RCVBUF", &s->rcvbuf, sizeof(s->rcvbuf)) < 0) ||
354         (s->lossmaxttl >= 0 && libsrt_setsockopt(h, fd, SRTO_LOSSMAXTTL, "SRTO_LOSSMAXTTL", &s->lossmaxttl, sizeof(s->lossmaxttl)) < 0) ||
355         (s->minversion >= 0 && libsrt_setsockopt(h, fd, SRTO_MINVERSION, "SRTO_MINVERSION", &s->minversion, sizeof(s->minversion)) < 0) ||
356         (s->streamid && libsrt_setsockopt(h, fd, SRTO_STREAMID, "SRTO_STREAMID", s->streamid, strlen(s->streamid)) < 0) ||
357         (s->smoother && libsrt_setsockopt(h, fd, SRTO_SMOOTHER, "SRTO_SMOOTHER", s->smoother, strlen(s->smoother)) < 0) ||
358         (s->messageapi >= 0 && libsrt_setsockopt(h, fd, SRTO_MESSAGEAPI, "SRTO_MESSAGEAPI", &s->messageapi, sizeof(s->messageapi)) < 0) ||
359         (s->payload_size >= 0 && libsrt_setsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &s->payload_size, sizeof(s->payload_size)) < 0) ||
360         ((h->flags & AVIO_FLAG_WRITE) && libsrt_setsockopt(h, fd, SRTO_SENDER, "SRTO_SENDER", &yes, sizeof(yes)) < 0)) {
361         return AVERROR(EIO);
362     }
363
364     if (s->linger >= 0) {
365         struct linger lin;
366         lin.l_linger = s->linger;
367         lin.l_onoff  = lin.l_linger > 0 ? 1 : 0;
368         if (libsrt_setsockopt(h, fd, SRTO_LINGER, "SRTO_LINGER", &lin, sizeof(lin)) < 0)
369             return AVERROR(EIO);
370     }
371     return 0;
372 }
373
374
375 static int libsrt_setup(URLContext *h, const char *uri, int flags)
376 {
377     struct addrinfo hints = { 0 }, *ai, *cur_ai;
378     int port, fd = -1;
379     SRTContext *s = h->priv_data;
380     const char *p;
381     char buf[256];
382     int ret;
383     char hostname[1024],proto[1024],path[1024];
384     char portstr[10];
385     int open_timeout = 5000000;
386     int eid;
387
388     eid = srt_epoll_create();
389     if (eid < 0)
390         return libsrt_neterrno(h);
391     s->eid = eid;
392
393     av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
394         &port, path, sizeof(path), uri);
395     if (strcmp(proto, "srt"))
396         return AVERROR(EINVAL);
397     if (port <= 0 || port >= 65536) {
398         av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
399         return AVERROR(EINVAL);
400     }
401     p = strchr(uri, '?');
402     if (p) {
403         if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
404             s->rw_timeout = strtol(buf, NULL, 10);
405         }
406         if (av_find_info_tag(buf, sizeof(buf), "listen_timeout", p)) {
407             s->listen_timeout = strtol(buf, NULL, 10);
408         }
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) {
420         av_log(h, AV_LOG_ERROR,
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     fd = srt_socket(cur_ai->ai_family, cur_ai->ai_socktype, 0);
431     if (fd < 0) {
432         ret = libsrt_neterrno(h);
433         goto fail;
434     }
435
436     if ((ret = libsrt_set_options_pre(h, fd)) < 0) {
437         goto fail;
438     }
439
440     /* Set the socket's send or receive buffer sizes, if specified.
441        If unspecified or setting fails, system default is used. */
442     if (s->recv_buffer_size > 0) {
443         srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_RCVBUF, &s->recv_buffer_size, sizeof (s->recv_buffer_size));
444     }
445     if (s->send_buffer_size > 0) {
446         srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_SNDBUF, &s->send_buffer_size, sizeof (s->send_buffer_size));
447     }
448     if (s->mode == SRT_MODE_LISTENER) {
449         // multi-client
450         if ((ret = libsrt_listen(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, open_timeout / 1000)) < 0)
451             goto fail1;
452         fd = ret;
453     } else {
454         if (s->mode == SRT_MODE_RENDEZVOUS) {
455             ret = srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
456             if (ret)
457                 goto fail1;
458         }
459
460         if ((ret = libsrt_listen_connect(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
461                                           open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
462             if (ret == AVERROR_EXIT)
463                 goto fail1;
464             else
465                 goto fail;
466         }
467     }
468     if ((ret = libsrt_set_options_post(h, fd)) < 0) {
469         goto fail;
470     }
471
472     if (flags & AVIO_FLAG_WRITE) {
473         int packet_size = 0;
474         int optlen = sizeof(packet_size);
475         ret = libsrt_getsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &packet_size, &optlen);
476         if (ret < 0)
477             goto fail1;
478         if (packet_size > 0)
479             h->max_packet_size = packet_size;
480     }
481
482     h->is_streamed = 1;
483     s->fd = fd;
484
485     freeaddrinfo(ai);
486     return 0;
487
488  fail:
489     if (cur_ai->ai_next) {
490         /* Retry with the next sockaddr */
491         cur_ai = cur_ai->ai_next;
492         if (fd >= 0)
493             srt_close(fd);
494         ret = 0;
495         goto restart;
496     }
497  fail1:
498     if (fd >= 0)
499         srt_close(fd);
500     freeaddrinfo(ai);
501     return ret;
502 }
503
504 static int libsrt_open(URLContext *h, const char *uri, int flags)
505 {
506     SRTContext *s = h->priv_data;
507     const char * p;
508     char buf[256];
509     int ret = 0;
510
511     if (srt_startup() < 0) {
512         return AVERROR_UNKNOWN;
513     }
514
515     /* SRT options (srt/srt.h) */
516     p = strchr(uri, '?');
517     if (p) {
518         if (av_find_info_tag(buf, sizeof(buf), "maxbw", p)) {
519             s->maxbw = strtoll(buf, NULL, 0);
520         }
521         if (av_find_info_tag(buf, sizeof(buf), "pbkeylen", p)) {
522             s->pbkeylen = strtol(buf, NULL, 10);
523         }
524         if (av_find_info_tag(buf, sizeof(buf), "passphrase", p)) {
525             av_freep(&s->passphrase);
526             s->passphrase = av_strndup(buf, strlen(buf));
527         }
528 #if SRT_VERSION_VALUE >= 0x010302
529         if (av_find_info_tag(buf, sizeof(buf), "enforced_encryption", p)) {
530             s->enforced_encryption = strtol(buf, NULL, 10);
531         }
532         if (av_find_info_tag(buf, sizeof(buf), "kmrefreshrate", p)) {
533             s->kmrefreshrate = strtol(buf, NULL, 10);
534         }
535         if (av_find_info_tag(buf, sizeof(buf), "kmpreannounce", p)) {
536             s->kmpreannounce = strtol(buf, NULL, 10);
537         }
538 #endif
539         if (av_find_info_tag(buf, sizeof(buf), "mss", p)) {
540             s->mss = strtol(buf, NULL, 10);
541         }
542         if (av_find_info_tag(buf, sizeof(buf), "ffs", p)) {
543             s->ffs = strtol(buf, NULL, 10);
544         }
545         if (av_find_info_tag(buf, sizeof(buf), "ipttl", p)) {
546             s->ipttl = strtol(buf, NULL, 10);
547         }
548         if (av_find_info_tag(buf, sizeof(buf), "iptos", p)) {
549             s->iptos = strtol(buf, NULL, 10);
550         }
551         if (av_find_info_tag(buf, sizeof(buf), "inputbw", p)) {
552             s->inputbw = strtoll(buf, NULL, 10);
553         }
554         if (av_find_info_tag(buf, sizeof(buf), "oheadbw", p)) {
555             s->oheadbw = strtoll(buf, NULL, 10);
556         }
557         if (av_find_info_tag(buf, sizeof(buf), "latency", p)) {
558             s->latency = strtol(buf, NULL, 10);
559         }
560         if (av_find_info_tag(buf, sizeof(buf), "tsbpddelay", p)) {
561             s->latency = strtol(buf, NULL, 10);
562         }
563         if (av_find_info_tag(buf, sizeof(buf), "rcvlatency", p)) {
564             s->rcvlatency = strtol(buf, NULL, 10);
565         }
566         if (av_find_info_tag(buf, sizeof(buf), "peerlatency", p)) {
567             s->peerlatency = strtol(buf, NULL, 10);
568         }
569         if (av_find_info_tag(buf, sizeof(buf), "tlpktdrop", p)) {
570             s->tlpktdrop = strtol(buf, NULL, 10);
571         }
572         if (av_find_info_tag(buf, sizeof(buf), "nakreport", p)) {
573             s->nakreport = strtol(buf, NULL, 10);
574         }
575         if (av_find_info_tag(buf, sizeof(buf), "connect_timeout", p)) {
576             s->connect_timeout = strtol(buf, NULL, 10);
577         }
578         if (av_find_info_tag(buf, sizeof(buf), "payload_size", p) ||
579             av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
580             s->payload_size = strtol(buf, NULL, 10);
581         }
582         if (av_find_info_tag(buf, sizeof(buf), "mode", p)) {
583             if (!strcmp(buf, "caller")) {
584                 s->mode = SRT_MODE_CALLER;
585             } else if (!strcmp(buf, "listener")) {
586                 s->mode = SRT_MODE_LISTENER;
587             } else if (!strcmp(buf, "rendezvous")) {
588                 s->mode = SRT_MODE_RENDEZVOUS;
589             } else {
590                 return AVERROR(EIO);
591             }
592         }
593         if (av_find_info_tag(buf, sizeof(buf), "sndbuf", p)) {
594             s->sndbuf = strtol(buf, NULL, 10);
595         }
596         if (av_find_info_tag(buf, sizeof(buf), "rcvbuf", p)) {
597             s->rcvbuf = strtol(buf, NULL, 10);
598         }
599         if (av_find_info_tag(buf, sizeof(buf), "lossmaxttl", p)) {
600             s->lossmaxttl = strtol(buf, NULL, 10);
601         }
602         if (av_find_info_tag(buf, sizeof(buf), "minversion", p)) {
603             s->minversion = strtol(buf, NULL, 0);
604         }
605         if (av_find_info_tag(buf, sizeof(buf), "streamid", p)) {
606             av_freep(&s->streamid);
607             s->streamid = av_strdup(buf);
608             if (!s->streamid) {
609                 ret = AVERROR(ENOMEM);
610                 goto err;
611             }
612         }
613         if (av_find_info_tag(buf, sizeof(buf), "smoother", p)) {
614             av_freep(&s->smoother);
615             s->smoother = av_strdup(buf);
616             if(!s->smoother) {
617                 ret = AVERROR(ENOMEM);
618                 goto err;
619             }
620         }
621         if (av_find_info_tag(buf, sizeof(buf), "messageapi", p)) {
622             s->messageapi = strtol(buf, NULL, 10);
623         }
624         if (av_find_info_tag(buf, sizeof(buf), "transtype", p)) {
625             if (!strcmp(buf, "live")) {
626                 s->transtype = SRTT_LIVE;
627             } else if (!strcmp(buf, "file")) {
628                 s->transtype = SRTT_FILE;
629             } else {
630                 ret = AVERROR(EINVAL);
631                 goto err;
632             }
633         }
634         if (av_find_info_tag(buf, sizeof(buf), "linger", p)) {
635             s->linger = strtol(buf, NULL, 10);
636         }
637     }
638     return libsrt_setup(h, uri, flags);
639 err:
640     av_freep(&s->smoother);
641     av_freep(&s->streamid);
642     return ret;
643 }
644
645 static int libsrt_read(URLContext *h, uint8_t *buf, int size)
646 {
647     SRTContext *s = h->priv_data;
648     int ret;
649
650     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
651         ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 0, h->rw_timeout, &h->interrupt_callback);
652         if (ret)
653             return ret;
654     }
655
656     ret = srt_recvmsg(s->fd, buf, size);
657     if (ret < 0) {
658         ret = libsrt_neterrno(h);
659     }
660
661     return ret;
662 }
663
664 static int libsrt_write(URLContext *h, const uint8_t *buf, int size)
665 {
666     SRTContext *s = h->priv_data;
667     int ret;
668
669     if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
670         ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 1, h->rw_timeout, &h->interrupt_callback);
671         if (ret)
672             return ret;
673     }
674
675     ret = srt_sendmsg(s->fd, buf, size, -1, 0);
676     if (ret < 0) {
677         ret = libsrt_neterrno(h);
678     }
679
680     return ret;
681 }
682
683 static int libsrt_close(URLContext *h)
684 {
685     SRTContext *s = h->priv_data;
686
687     srt_close(s->fd);
688
689     srt_epoll_release(s->eid);
690
691     srt_cleanup();
692
693     return 0;
694 }
695
696 static int libsrt_get_file_handle(URLContext *h)
697 {
698     SRTContext *s = h->priv_data;
699     return s->fd;
700 }
701
702 static const AVClass libsrt_class = {
703     .class_name = "libsrt",
704     .item_name  = av_default_item_name,
705     .option     = libsrt_options,
706     .version    = LIBAVUTIL_VERSION_INT,
707 };
708
709 const URLProtocol ff_libsrt_protocol = {
710     .name                = "srt",
711     .url_open            = libsrt_open,
712     .url_read            = libsrt_read,
713     .url_write           = libsrt_write,
714     .url_close           = libsrt_close,
715     .url_get_file_handle = libsrt_get_file_handle,
716     .priv_data_size      = sizeof(SRTContext),
717     .flags               = URL_PROTOCOL_FLAG_NETWORK,
718     .priv_data_class     = &libsrt_class,
719 };