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.

572 lines
21KB

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