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.

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