You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

730 lines
31KB

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