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.

716 lines
30KB

  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. { "rw_timeout", "Timeout of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  90. { "listen_timeout", "Connection awaiting timeout", 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 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", OFFSET(rcvlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  114. { "peerlatency", "peer latency", OFFSET(peerlatency), AV_OPT_TYPE_INT64, { .i64 = -1 }, -1, INT64_MAX, .flags = D|E },
  115. { "tlpktdrop", "Enable receiver 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. 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 err = srt_getlasterror(NULL);
  138. av_log(h, AV_LOG_ERROR, "%s\n", srt_getlasterror_str());
  139. if (err == SRT_EASYNCRCV)
  140. return AVERROR(EAGAIN);
  141. return AVERROR_UNKNOWN;
  142. }
  143. static int libsrt_socket_nonblock(int socket, int enable)
  144. {
  145. int ret = srt_setsockopt(socket, 0, SRTO_SNDSYN, &enable, sizeof(enable));
  146. if (ret < 0)
  147. return ret;
  148. return srt_setsockopt(socket, 0, SRTO_RCVSYN, &enable, sizeof(enable));
  149. }
  150. static int libsrt_network_wait_fd(URLContext *h, int eid, int fd, int write)
  151. {
  152. int ret, len = 1;
  153. int modes = write ? SRT_EPOLL_OUT : SRT_EPOLL_IN;
  154. SRTSOCKET ready[1];
  155. if (srt_epoll_add_usock(eid, fd, &modes) < 0)
  156. return libsrt_neterrno(h);
  157. if (write) {
  158. ret = srt_epoll_wait(eid, 0, 0, ready, &len, POLLING_TIME, 0, 0, 0, 0);
  159. } else {
  160. ret = srt_epoll_wait(eid, ready, &len, 0, 0, POLLING_TIME, 0, 0, 0, 0);
  161. }
  162. if (ret < 0) {
  163. if (srt_getlasterror(NULL) == SRT_ETIMEOUT)
  164. ret = AVERROR(EAGAIN);
  165. else
  166. ret = libsrt_neterrno(h);
  167. } else {
  168. ret = 0;
  169. }
  170. if (srt_epoll_remove_usock(eid, fd) < 0)
  171. return libsrt_neterrno(h);
  172. return ret;
  173. }
  174. /* TODO de-duplicate code from ff_network_wait_fd_timeout() */
  175. static int libsrt_network_wait_fd_timeout(URLContext *h, int eid, int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
  176. {
  177. int ret;
  178. int64_t wait_start = 0;
  179. while (1) {
  180. if (ff_check_interrupt(int_cb))
  181. return AVERROR_EXIT;
  182. ret = libsrt_network_wait_fd(h, eid, fd, write);
  183. if (ret != AVERROR(EAGAIN))
  184. return ret;
  185. if (timeout > 0) {
  186. if (!wait_start)
  187. wait_start = av_gettime_relative();
  188. else if (av_gettime_relative() - wait_start > timeout)
  189. return AVERROR(ETIMEDOUT);
  190. }
  191. }
  192. }
  193. static int libsrt_listen(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, URLContext *h, int timeout)
  194. {
  195. int ret;
  196. int reuse = 1;
  197. if (srt_setsockopt(fd, SOL_SOCKET, SRTO_REUSEADDR, &reuse, sizeof(reuse))) {
  198. av_log(h, AV_LOG_WARNING, "setsockopt(SRTO_REUSEADDR) failed\n");
  199. }
  200. ret = srt_bind(fd, addr, addrlen);
  201. if (ret)
  202. return libsrt_neterrno(h);
  203. ret = srt_listen(fd, 1);
  204. if (ret)
  205. return libsrt_neterrno(h);
  206. while ((ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback))) {
  207. switch (ret) {
  208. case AVERROR(ETIMEDOUT):
  209. continue;
  210. default:
  211. return ret;
  212. }
  213. }
  214. ret = srt_accept(fd, NULL, NULL);
  215. if (ret < 0)
  216. return libsrt_neterrno(h);
  217. if (libsrt_socket_nonblock(ret, 1) < 0)
  218. av_log(h, AV_LOG_DEBUG, "libsrt_socket_nonblock failed\n");
  219. return ret;
  220. }
  221. static int libsrt_listen_connect(int eid, int fd, const struct sockaddr *addr, socklen_t addrlen, int timeout, URLContext *h, int will_try_next)
  222. {
  223. int ret;
  224. if (libsrt_socket_nonblock(fd, 1) < 0)
  225. av_log(h, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
  226. while ((ret = srt_connect(fd, addr, addrlen))) {
  227. ret = libsrt_neterrno(h);
  228. switch (ret) {
  229. case AVERROR(EINTR):
  230. if (ff_check_interrupt(&h->interrupt_callback))
  231. return AVERROR_EXIT;
  232. continue;
  233. case AVERROR(EINPROGRESS):
  234. case AVERROR(EAGAIN):
  235. ret = libsrt_network_wait_fd_timeout(h, eid, fd, 1, timeout, &h->interrupt_callback);
  236. if (ret < 0)
  237. return ret;
  238. ret = srt_getlasterror(NULL);
  239. srt_clearlasterror();
  240. if (ret != 0) {
  241. char buf[128];
  242. ret = AVERROR(ret);
  243. av_strerror(ret, buf, sizeof(buf));
  244. if (will_try_next)
  245. av_log(h, AV_LOG_WARNING,
  246. "Connection to %s failed (%s), trying next address\n",
  247. h->filename, buf);
  248. else
  249. av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
  250. h->filename, buf);
  251. }
  252. default:
  253. return ret;
  254. }
  255. }
  256. return ret;
  257. }
  258. static int libsrt_setsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, const void * optval, int optlen)
  259. {
  260. if (srt_setsockopt(fd, 0, optname, optval, optlen) < 0) {
  261. av_log(h, AV_LOG_ERROR, "failed to set option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
  262. return AVERROR(EIO);
  263. }
  264. return 0;
  265. }
  266. static int libsrt_getsockopt(URLContext *h, int fd, SRT_SOCKOPT optname, const char * optnamestr, void * optval, int * optlen)
  267. {
  268. if (srt_getsockopt(fd, 0, optname, optval, optlen) < 0) {
  269. av_log(h, AV_LOG_ERROR, "failed to get option %s on socket: %s\n", optnamestr, srt_getlasterror_str());
  270. return AVERROR(EIO);
  271. }
  272. return 0;
  273. }
  274. /* - The "POST" options can be altered any time on a connected socket.
  275. They MAY have also some meaning when set prior to connecting; such
  276. option is SRTO_RCVSYN, which makes connect/accept call asynchronous.
  277. Because of that this option is treated special way in this app. */
  278. static int libsrt_set_options_post(URLContext *h, int fd)
  279. {
  280. SRTContext *s = h->priv_data;
  281. if ((s->inputbw >= 0 && libsrt_setsockopt(h, fd, SRTO_INPUTBW, "SRTO_INPUTBW", &s->inputbw, sizeof(s->inputbw)) < 0) ||
  282. (s->oheadbw >= 0 && libsrt_setsockopt(h, fd, SRTO_OHEADBW, "SRTO_OHEADBW", &s->oheadbw, sizeof(s->oheadbw)) < 0)) {
  283. return AVERROR(EIO);
  284. }
  285. return 0;
  286. }
  287. /* - The "PRE" options must be set prior to connecting and can't be altered
  288. on a connected socket, however if set on a listening socket, they are
  289. derived by accept-ed socket. */
  290. static int libsrt_set_options_pre(URLContext *h, int fd)
  291. {
  292. SRTContext *s = h->priv_data;
  293. int yes = 1;
  294. int latency = s->latency / 1000;
  295. int rcvlatency = s->rcvlatency / 1000;
  296. int peerlatency = s->peerlatency / 1000;
  297. int connect_timeout = s->connect_timeout;
  298. if ((s->mode == SRT_MODE_RENDEZVOUS && libsrt_setsockopt(h, fd, SRTO_RENDEZVOUS, "SRTO_RENDEZVOUS", &yes, sizeof(yes)) < 0) ||
  299. (s->transtype != SRTT_INVALID && libsrt_setsockopt(h, fd, SRTO_TRANSTYPE, "SRTO_TRANSTYPE", &s->transtype, sizeof(s->transtype)) < 0) ||
  300. (s->maxbw >= 0 && libsrt_setsockopt(h, fd, SRTO_MAXBW, "SRTO_MAXBW", &s->maxbw, sizeof(s->maxbw)) < 0) ||
  301. (s->pbkeylen >= 0 && libsrt_setsockopt(h, fd, SRTO_PBKEYLEN, "SRTO_PBKEYLEN", &s->pbkeylen, sizeof(s->pbkeylen)) < 0) ||
  302. (s->passphrase && libsrt_setsockopt(h, fd, SRTO_PASSPHRASE, "SRTO_PASSPHRASE", s->passphrase, strlen(s->passphrase)) < 0) ||
  303. #if SRT_VERSION_VALUE >= 0x010302
  304. /* SRTO_STRICTENC == SRTO_ENFORCEDENCRYPTION (53), but for compatibility, we used SRTO_STRICTENC */
  305. (s->enforced_encryption >= 0 && libsrt_setsockopt(h, fd, SRTO_STRICTENC, "SRTO_STRICTENC", &s->enforced_encryption, sizeof(s->enforced_encryption)) < 0) ||
  306. (s->kmrefreshrate >= 0 && libsrt_setsockopt(h, fd, SRTO_KMREFRESHRATE, "SRTO_KMREFRESHRATE", &s->kmrefreshrate, sizeof(s->kmrefreshrate)) < 0) ||
  307. (s->kmpreannounce >= 0 && libsrt_setsockopt(h, fd, SRTO_KMPREANNOUNCE, "SRTO_KMPREANNOUNCE", &s->kmpreannounce, sizeof(s->kmpreannounce)) < 0) ||
  308. #endif
  309. (s->mss >= 0 && libsrt_setsockopt(h, fd, SRTO_MSS, "SRTO_MMS", &s->mss, sizeof(s->mss)) < 0) ||
  310. (s->ffs >= 0 && libsrt_setsockopt(h, fd, SRTO_FC, "SRTO_FC", &s->ffs, sizeof(s->ffs)) < 0) ||
  311. (s->ipttl >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTTL, "SRTO_UPTTL", &s->ipttl, sizeof(s->ipttl)) < 0) ||
  312. (s->iptos >= 0 && libsrt_setsockopt(h, fd, SRTO_IPTOS, "SRTO_IPTOS", &s->iptos, sizeof(s->iptos)) < 0) ||
  313. (s->latency >= 0 && libsrt_setsockopt(h, fd, SRTO_LATENCY, "SRTO_LATENCY", &latency, sizeof(latency)) < 0) ||
  314. (s->rcvlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVLATENCY, "SRTO_RCVLATENCY", &rcvlatency, sizeof(rcvlatency)) < 0) ||
  315. (s->peerlatency >= 0 && libsrt_setsockopt(h, fd, SRTO_PEERLATENCY, "SRTO_PEERLATENCY", &peerlatency, sizeof(peerlatency)) < 0) ||
  316. (s->tlpktdrop >= 0 && libsrt_setsockopt(h, fd, SRTO_TLPKTDROP, "SRTO_TLPKDROP", &s->tlpktdrop, sizeof(s->tlpktdrop)) < 0) ||
  317. (s->nakreport >= 0 && libsrt_setsockopt(h, fd, SRTO_NAKREPORT, "SRTO_NAKREPORT", &s->nakreport, sizeof(s->nakreport)) < 0) ||
  318. (connect_timeout >= 0 && libsrt_setsockopt(h, fd, SRTO_CONNTIMEO, "SRTO_CONNTIMEO", &connect_timeout, sizeof(connect_timeout)) <0 ) ||
  319. (s->sndbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_SNDBUF, "SRTO_SNDBUF", &s->sndbuf, sizeof(s->sndbuf)) < 0) ||
  320. (s->rcvbuf >= 0 && libsrt_setsockopt(h, fd, SRTO_RCVBUF, "SRTO_RCVBUF", &s->rcvbuf, sizeof(s->rcvbuf)) < 0) ||
  321. (s->lossmaxttl >= 0 && libsrt_setsockopt(h, fd, SRTO_LOSSMAXTTL, "SRTO_LOSSMAXTTL", &s->lossmaxttl, sizeof(s->lossmaxttl)) < 0) ||
  322. (s->minversion >= 0 && libsrt_setsockopt(h, fd, SRTO_MINVERSION, "SRTO_MINVERSION", &s->minversion, sizeof(s->minversion)) < 0) ||
  323. (s->streamid && libsrt_setsockopt(h, fd, SRTO_STREAMID, "SRTO_STREAMID", s->streamid, strlen(s->streamid)) < 0) ||
  324. (s->smoother && libsrt_setsockopt(h, fd, SRTO_SMOOTHER, "SRTO_SMOOTHER", s->smoother, strlen(s->smoother)) < 0) ||
  325. (s->messageapi >= 0 && libsrt_setsockopt(h, fd, SRTO_MESSAGEAPI, "SRTO_MESSAGEAPI", &s->messageapi, sizeof(s->messageapi)) < 0) ||
  326. (s->payload_size >= 0 && libsrt_setsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &s->payload_size, sizeof(s->payload_size)) < 0) ||
  327. ((h->flags & AVIO_FLAG_WRITE) && libsrt_setsockopt(h, fd, SRTO_SENDER, "SRTO_SENDER", &yes, sizeof(yes)) < 0)) {
  328. return AVERROR(EIO);
  329. }
  330. if (s->linger >= 0) {
  331. struct linger lin;
  332. lin.l_linger = s->linger;
  333. lin.l_onoff = lin.l_linger > 0 ? 1 : 0;
  334. if (libsrt_setsockopt(h, fd, SRTO_LINGER, "SRTO_LINGER", &lin, sizeof(lin)) < 0)
  335. return AVERROR(EIO);
  336. }
  337. return 0;
  338. }
  339. static int libsrt_setup(URLContext *h, const char *uri, int flags)
  340. {
  341. struct addrinfo hints = { 0 }, *ai, *cur_ai;
  342. int port, fd = -1;
  343. SRTContext *s = h->priv_data;
  344. const char *p;
  345. char buf[256];
  346. int ret;
  347. char hostname[1024],proto[1024],path[1024];
  348. char portstr[10];
  349. int open_timeout = 5000000;
  350. int eid;
  351. eid = srt_epoll_create();
  352. if (eid < 0)
  353. return libsrt_neterrno(h);
  354. s->eid = eid;
  355. av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
  356. &port, path, sizeof(path), uri);
  357. if (strcmp(proto, "srt"))
  358. return AVERROR(EINVAL);
  359. if (port <= 0 || port >= 65536) {
  360. av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
  361. return AVERROR(EINVAL);
  362. }
  363. p = strchr(uri, '?');
  364. if (p) {
  365. if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
  366. s->rw_timeout = strtol(buf, NULL, 10);
  367. }
  368. if (av_find_info_tag(buf, sizeof(buf), "listen_timeout", p)) {
  369. s->listen_timeout = strtol(buf, NULL, 10);
  370. }
  371. }
  372. if (s->rw_timeout >= 0) {
  373. open_timeout = h->rw_timeout = s->rw_timeout;
  374. }
  375. hints.ai_family = AF_UNSPEC;
  376. hints.ai_socktype = SOCK_DGRAM;
  377. snprintf(portstr, sizeof(portstr), "%d", port);
  378. if (s->mode == SRT_MODE_LISTENER)
  379. hints.ai_flags |= AI_PASSIVE;
  380. ret = getaddrinfo(hostname[0] ? hostname : NULL, portstr, &hints, &ai);
  381. if (ret) {
  382. av_log(h, AV_LOG_ERROR,
  383. "Failed to resolve hostname %s: %s\n",
  384. hostname, gai_strerror(ret));
  385. return AVERROR(EIO);
  386. }
  387. cur_ai = ai;
  388. restart:
  389. fd = srt_socket(cur_ai->ai_family, cur_ai->ai_socktype, 0);
  390. if (fd < 0) {
  391. ret = libsrt_neterrno(h);
  392. goto fail;
  393. }
  394. if ((ret = libsrt_set_options_pre(h, fd)) < 0) {
  395. goto fail;
  396. }
  397. /* Set the socket's send or receive buffer sizes, if specified.
  398. If unspecified or setting fails, system default is used. */
  399. if (s->recv_buffer_size > 0) {
  400. srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_RCVBUF, &s->recv_buffer_size, sizeof (s->recv_buffer_size));
  401. }
  402. if (s->send_buffer_size > 0) {
  403. srt_setsockopt(fd, SOL_SOCKET, SRTO_UDP_SNDBUF, &s->send_buffer_size, sizeof (s->send_buffer_size));
  404. }
  405. if (s->mode == SRT_MODE_LISTENER) {
  406. // multi-client
  407. if ((ret = libsrt_listen(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen, h, open_timeout / 1000)) < 0)
  408. goto fail1;
  409. fd = ret;
  410. } else {
  411. if (s->mode == SRT_MODE_RENDEZVOUS) {
  412. ret = srt_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen);
  413. if (ret)
  414. goto fail1;
  415. }
  416. if ((ret = libsrt_listen_connect(s->eid, fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
  417. open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
  418. if (ret == AVERROR_EXIT)
  419. goto fail1;
  420. else
  421. goto fail;
  422. }
  423. }
  424. if ((ret = libsrt_set_options_post(h, fd)) < 0) {
  425. goto fail;
  426. }
  427. if (flags & AVIO_FLAG_WRITE) {
  428. int packet_size = 0;
  429. int optlen = sizeof(packet_size);
  430. ret = libsrt_getsockopt(h, fd, SRTO_PAYLOADSIZE, "SRTO_PAYLOADSIZE", &packet_size, &optlen);
  431. if (ret < 0)
  432. goto fail1;
  433. if (packet_size > 0)
  434. h->max_packet_size = packet_size;
  435. }
  436. h->is_streamed = 1;
  437. s->fd = fd;
  438. freeaddrinfo(ai);
  439. return 0;
  440. fail:
  441. if (cur_ai->ai_next) {
  442. /* Retry with the next sockaddr */
  443. cur_ai = cur_ai->ai_next;
  444. if (fd >= 0)
  445. srt_close(fd);
  446. ret = 0;
  447. goto restart;
  448. }
  449. fail1:
  450. if (fd >= 0)
  451. srt_close(fd);
  452. freeaddrinfo(ai);
  453. return ret;
  454. }
  455. static int libsrt_open(URLContext *h, const char *uri, int flags)
  456. {
  457. SRTContext *s = h->priv_data;
  458. const char * p;
  459. char buf[256];
  460. int ret = 0;
  461. if (srt_startup() < 0) {
  462. return AVERROR_UNKNOWN;
  463. }
  464. /* SRT options (srt/srt.h) */
  465. p = strchr(uri, '?');
  466. if (p) {
  467. if (av_find_info_tag(buf, sizeof(buf), "maxbw", p)) {
  468. s->maxbw = strtoll(buf, NULL, 0);
  469. }
  470. if (av_find_info_tag(buf, sizeof(buf), "pbkeylen", p)) {
  471. s->pbkeylen = strtol(buf, NULL, 10);
  472. }
  473. if (av_find_info_tag(buf, sizeof(buf), "passphrase", p)) {
  474. av_freep(&s->passphrase);
  475. s->passphrase = av_strndup(buf, strlen(buf));
  476. }
  477. if (av_find_info_tag(buf, sizeof(buf), "enforced_encryption", p)) {
  478. s->enforced_encryption = strtol(buf, NULL, 10);
  479. }
  480. if (av_find_info_tag(buf, sizeof(buf), "kmrefreshrate", p)) {
  481. s->kmrefreshrate = strtol(buf, NULL, 10);
  482. }
  483. if (av_find_info_tag(buf, sizeof(buf), "kmpreannounce", p)) {
  484. s->kmpreannounce = strtol(buf, NULL, 10);
  485. }
  486. if (av_find_info_tag(buf, sizeof(buf), "mss", p)) {
  487. s->mss = strtol(buf, NULL, 10);
  488. }
  489. if (av_find_info_tag(buf, sizeof(buf), "ffs", p)) {
  490. s->ffs = strtol(buf, NULL, 10);
  491. }
  492. if (av_find_info_tag(buf, sizeof(buf), "ipttl", p)) {
  493. s->ipttl = strtol(buf, NULL, 10);
  494. }
  495. if (av_find_info_tag(buf, sizeof(buf), "iptos", p)) {
  496. s->iptos = strtol(buf, NULL, 10);
  497. }
  498. if (av_find_info_tag(buf, sizeof(buf), "inputbw", p)) {
  499. s->inputbw = strtoll(buf, NULL, 10);
  500. }
  501. if (av_find_info_tag(buf, sizeof(buf), "oheadbw", p)) {
  502. s->oheadbw = strtoll(buf, NULL, 10);
  503. }
  504. if (av_find_info_tag(buf, sizeof(buf), "latency", p)) {
  505. s->latency = strtol(buf, NULL, 10);
  506. }
  507. if (av_find_info_tag(buf, sizeof(buf), "tsbpddelay", p)) {
  508. s->latency = strtol(buf, NULL, 10);
  509. }
  510. if (av_find_info_tag(buf, sizeof(buf), "rcvlatency", p)) {
  511. s->rcvlatency = strtol(buf, NULL, 10);
  512. }
  513. if (av_find_info_tag(buf, sizeof(buf), "peerlatency", p)) {
  514. s->peerlatency = strtol(buf, NULL, 10);
  515. }
  516. if (av_find_info_tag(buf, sizeof(buf), "tlpktdrop", p)) {
  517. s->tlpktdrop = strtol(buf, NULL, 10);
  518. }
  519. if (av_find_info_tag(buf, sizeof(buf), "nakreport", p)) {
  520. s->nakreport = strtol(buf, NULL, 10);
  521. }
  522. if (av_find_info_tag(buf, sizeof(buf), "connect_timeout", p)) {
  523. s->connect_timeout = strtol(buf, NULL, 10);
  524. }
  525. if (av_find_info_tag(buf, sizeof(buf), "payload_size", p) ||
  526. av_find_info_tag(buf, sizeof(buf), "pkt_size", p)) {
  527. s->payload_size = strtol(buf, NULL, 10);
  528. }
  529. if (av_find_info_tag(buf, sizeof(buf), "mode", p)) {
  530. if (!strcmp(buf, "caller")) {
  531. s->mode = SRT_MODE_CALLER;
  532. } else if (!strcmp(buf, "listener")) {
  533. s->mode = SRT_MODE_LISTENER;
  534. } else if (!strcmp(buf, "rendezvous")) {
  535. s->mode = SRT_MODE_RENDEZVOUS;
  536. } else {
  537. return AVERROR(EIO);
  538. }
  539. }
  540. if (av_find_info_tag(buf, sizeof(buf), "sndbuf", p)) {
  541. s->sndbuf = strtol(buf, NULL, 10);
  542. }
  543. if (av_find_info_tag(buf, sizeof(buf), "rcvbuf", p)) {
  544. s->rcvbuf = strtol(buf, NULL, 10);
  545. }
  546. if (av_find_info_tag(buf, sizeof(buf), "lossmaxttl", p)) {
  547. s->lossmaxttl = strtol(buf, NULL, 10);
  548. }
  549. if (av_find_info_tag(buf, sizeof(buf), "minversion", p)) {
  550. s->minversion = strtol(buf, NULL, 0);
  551. }
  552. if (av_find_info_tag(buf, sizeof(buf), "streamid", p)) {
  553. av_freep(&s->streamid);
  554. s->streamid = av_strdup(buf);
  555. if (!s->streamid) {
  556. ret = AVERROR(ENOMEM);
  557. goto err;
  558. }
  559. }
  560. if (av_find_info_tag(buf, sizeof(buf), "smoother", p)) {
  561. av_freep(&s->smoother);
  562. s->smoother = av_strdup(buf);
  563. if(!s->smoother) {
  564. ret = AVERROR(ENOMEM);
  565. goto err;
  566. }
  567. }
  568. if (av_find_info_tag(buf, sizeof(buf), "messageapi", p)) {
  569. s->messageapi = strtol(buf, NULL, 10);
  570. }
  571. if (av_find_info_tag(buf, sizeof(buf), "transtype", p)) {
  572. if (!strcmp(buf, "live")) {
  573. s->transtype = SRTT_LIVE;
  574. } else if (!strcmp(buf, "file")) {
  575. s->transtype = SRTT_FILE;
  576. } else {
  577. ret = AVERROR(EINVAL);
  578. goto err;
  579. }
  580. }
  581. if (av_find_info_tag(buf, sizeof(buf), "linger", p)) {
  582. s->linger = strtol(buf, NULL, 10);
  583. }
  584. }
  585. return libsrt_setup(h, uri, flags);
  586. err:
  587. av_freep(&s->smoother);
  588. av_freep(&s->streamid);
  589. return ret;
  590. }
  591. static int libsrt_read(URLContext *h, uint8_t *buf, int size)
  592. {
  593. SRTContext *s = h->priv_data;
  594. int ret;
  595. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  596. ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 0, h->rw_timeout, &h->interrupt_callback);
  597. if (ret)
  598. return ret;
  599. }
  600. ret = srt_recvmsg(s->fd, buf, size);
  601. if (ret < 0) {
  602. ret = libsrt_neterrno(h);
  603. }
  604. return ret;
  605. }
  606. static int libsrt_write(URLContext *h, const uint8_t *buf, int size)
  607. {
  608. SRTContext *s = h->priv_data;
  609. int ret;
  610. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  611. ret = libsrt_network_wait_fd_timeout(h, s->eid, s->fd, 1, h->rw_timeout, &h->interrupt_callback);
  612. if (ret)
  613. return ret;
  614. }
  615. ret = srt_sendmsg(s->fd, buf, size, -1, 0);
  616. if (ret < 0) {
  617. ret = libsrt_neterrno(h);
  618. }
  619. return ret;
  620. }
  621. static int libsrt_close(URLContext *h)
  622. {
  623. SRTContext *s = h->priv_data;
  624. srt_close(s->fd);
  625. srt_epoll_release(s->eid);
  626. srt_cleanup();
  627. return 0;
  628. }
  629. static int libsrt_get_file_handle(URLContext *h)
  630. {
  631. SRTContext *s = h->priv_data;
  632. return s->fd;
  633. }
  634. static const AVClass libsrt_class = {
  635. .class_name = "libsrt",
  636. .item_name = av_default_item_name,
  637. .option = libsrt_options,
  638. .version = LIBAVUTIL_VERSION_INT,
  639. };
  640. const URLProtocol ff_libsrt_protocol = {
  641. .name = "srt",
  642. .url_open = libsrt_open,
  643. .url_read = libsrt_read,
  644. .url_write = libsrt_write,
  645. .url_close = libsrt_close,
  646. .url_get_file_handle = libsrt_get_file_handle,
  647. .priv_data_size = sizeof(SRTContext),
  648. .flags = URL_PROTOCOL_FLAG_NETWORK,
  649. .priv_data_class = &libsrt_class,
  650. };