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.

584 lines
23KB

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