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.

691 lines
29KB

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