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.

603 lines
23KB

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