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.

323 lines
9.9KB

  1. /*
  2. * TCP protocol
  3. * Copyright (c) 2002 Fabrice Bellard
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include "avformat.h"
  22. #include "libavutil/avassert.h"
  23. #include "libavutil/parseutils.h"
  24. #include "libavutil/opt.h"
  25. #include "libavutil/time.h"
  26. #include "internal.h"
  27. #include "network.h"
  28. #include "os_support.h"
  29. #include "url.h"
  30. #if HAVE_POLL_H
  31. #include <poll.h>
  32. #endif
  33. typedef struct TCPContext {
  34. const AVClass *class;
  35. int fd;
  36. int listen;
  37. int open_timeout;
  38. int rw_timeout;
  39. int listen_timeout;
  40. int recv_buffer_size;
  41. int send_buffer_size;
  42. int tcp_nodelay;
  43. #if !HAVE_WINSOCK2_H
  44. int tcp_mss;
  45. #endif /* !HAVE_WINSOCK2_H */
  46. } TCPContext;
  47. #define OFFSET(x) offsetof(TCPContext, x)
  48. #define D AV_OPT_FLAG_DECODING_PARAM
  49. #define E AV_OPT_FLAG_ENCODING_PARAM
  50. static const AVOption options[] = {
  51. { "listen", "Listen for incoming connections", OFFSET(listen), AV_OPT_TYPE_INT, { .i64 = 0 }, 0, 2, .flags = D|E },
  52. { "timeout", "set timeout (in microseconds) of socket I/O operations", OFFSET(rw_timeout), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  53. { "listen_timeout", "Connection awaiting timeout (in milliseconds)", OFFSET(listen_timeout), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  54. { "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 },
  55. { "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 },
  56. { "tcp_nodelay", "Use TCP_NODELAY to disable nagle's algorithm", OFFSET(tcp_nodelay), AV_OPT_TYPE_BOOL, { .i64 = 0 }, 0, 1, .flags = D|E },
  57. #if !HAVE_WINSOCK2_H
  58. { "tcp_mss", "Maximum segment size for outgoing TCP packets", OFFSET(tcp_mss), AV_OPT_TYPE_INT, { .i64 = -1 }, -1, INT_MAX, .flags = D|E },
  59. #endif /* !HAVE_WINSOCK2_H */
  60. { NULL }
  61. };
  62. static const AVClass tcp_class = {
  63. .class_name = "tcp",
  64. .item_name = av_default_item_name,
  65. .option = options,
  66. .version = LIBAVUTIL_VERSION_INT,
  67. };
  68. /* return non zero if error */
  69. static int tcp_open(URLContext *h, const char *uri, int flags)
  70. {
  71. struct addrinfo hints = { 0 }, *ai, *cur_ai;
  72. int port, fd = -1;
  73. TCPContext *s = h->priv_data;
  74. const char *p;
  75. char buf[256];
  76. int ret;
  77. char hostname[1024],proto[1024],path[1024];
  78. char portstr[10];
  79. s->open_timeout = 5000000;
  80. av_url_split(proto, sizeof(proto), NULL, 0, hostname, sizeof(hostname),
  81. &port, path, sizeof(path), uri);
  82. if (strcmp(proto, "tcp"))
  83. return AVERROR(EINVAL);
  84. if (port <= 0 || port >= 65536) {
  85. av_log(h, AV_LOG_ERROR, "Port missing in uri\n");
  86. return AVERROR(EINVAL);
  87. }
  88. p = strchr(uri, '?');
  89. if (p) {
  90. if (av_find_info_tag(buf, sizeof(buf), "listen", p)) {
  91. char *endptr = NULL;
  92. s->listen = strtol(buf, &endptr, 10);
  93. /* assume if no digits were found it is a request to enable it */
  94. if (buf == endptr)
  95. s->listen = 1;
  96. }
  97. if (av_find_info_tag(buf, sizeof(buf), "timeout", p)) {
  98. s->rw_timeout = strtol(buf, NULL, 10);
  99. }
  100. if (av_find_info_tag(buf, sizeof(buf), "listen_timeout", p)) {
  101. s->listen_timeout = strtol(buf, NULL, 10);
  102. }
  103. }
  104. if (s->rw_timeout >= 0) {
  105. s->open_timeout =
  106. h->rw_timeout = s->rw_timeout;
  107. }
  108. hints.ai_family = AF_UNSPEC;
  109. hints.ai_socktype = SOCK_STREAM;
  110. snprintf(portstr, sizeof(portstr), "%d", port);
  111. if (s->listen)
  112. hints.ai_flags |= AI_PASSIVE;
  113. if (!hostname[0])
  114. ret = getaddrinfo(NULL, portstr, &hints, &ai);
  115. else
  116. ret = getaddrinfo(hostname, portstr, &hints, &ai);
  117. if (ret) {
  118. av_log(h, AV_LOG_ERROR,
  119. "Failed to resolve hostname %s: %s\n",
  120. hostname, gai_strerror(ret));
  121. return AVERROR(EIO);
  122. }
  123. cur_ai = ai;
  124. restart:
  125. #if HAVE_STRUCT_SOCKADDR_IN6
  126. // workaround for IOS9 getaddrinfo in IPv6 only network use hardcode IPv4 address can not resolve port number.
  127. if (cur_ai->ai_family == AF_INET6){
  128. struct sockaddr_in6 * sockaddr_v6 = (struct sockaddr_in6 *)cur_ai->ai_addr;
  129. if (!sockaddr_v6->sin6_port){
  130. sockaddr_v6->sin6_port = htons(port);
  131. }
  132. }
  133. #endif
  134. fd = ff_socket(cur_ai->ai_family,
  135. cur_ai->ai_socktype,
  136. cur_ai->ai_protocol);
  137. if (fd < 0) {
  138. ret = ff_neterrno();
  139. goto fail;
  140. }
  141. /* Set the socket's send or receive buffer sizes, if specified.
  142. If unspecified or setting fails, system default is used. */
  143. if (s->recv_buffer_size > 0) {
  144. setsockopt (fd, SOL_SOCKET, SO_RCVBUF, &s->recv_buffer_size, sizeof (s->recv_buffer_size));
  145. }
  146. if (s->send_buffer_size > 0) {
  147. setsockopt (fd, SOL_SOCKET, SO_SNDBUF, &s->send_buffer_size, sizeof (s->send_buffer_size));
  148. }
  149. if (s->tcp_nodelay > 0) {
  150. setsockopt (fd, IPPROTO_TCP, TCP_NODELAY, &s->tcp_nodelay, sizeof (s->tcp_nodelay));
  151. }
  152. #if !HAVE_WINSOCK2_H
  153. if (s->tcp_mss > 0) {
  154. setsockopt (fd, IPPROTO_TCP, TCP_MAXSEG, &s->tcp_mss, sizeof (s->tcp_mss));
  155. }
  156. #endif /* !HAVE_WINSOCK2_H */
  157. if (s->listen == 2) {
  158. // multi-client
  159. if ((ret = ff_listen(fd, cur_ai->ai_addr, cur_ai->ai_addrlen)) < 0)
  160. goto fail1;
  161. } else if (s->listen == 1) {
  162. // single client
  163. if ((ret = ff_listen_bind(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
  164. s->listen_timeout, h)) < 0)
  165. goto fail1;
  166. // Socket descriptor already closed here. Safe to overwrite to client one.
  167. fd = ret;
  168. } else {
  169. if ((ret = ff_listen_connect(fd, cur_ai->ai_addr, cur_ai->ai_addrlen,
  170. s->open_timeout / 1000, h, !!cur_ai->ai_next)) < 0) {
  171. if (ret == AVERROR_EXIT)
  172. goto fail1;
  173. else
  174. goto fail;
  175. }
  176. }
  177. h->is_streamed = 1;
  178. s->fd = fd;
  179. freeaddrinfo(ai);
  180. return 0;
  181. fail:
  182. if (cur_ai->ai_next) {
  183. /* Retry with the next sockaddr */
  184. cur_ai = cur_ai->ai_next;
  185. if (fd >= 0)
  186. closesocket(fd);
  187. ret = 0;
  188. goto restart;
  189. }
  190. fail1:
  191. if (fd >= 0)
  192. closesocket(fd);
  193. freeaddrinfo(ai);
  194. return ret;
  195. }
  196. static int tcp_accept(URLContext *s, URLContext **c)
  197. {
  198. TCPContext *sc = s->priv_data;
  199. TCPContext *cc;
  200. int ret;
  201. av_assert0(sc->listen);
  202. if ((ret = ffurl_alloc(c, s->filename, s->flags, &s->interrupt_callback)) < 0)
  203. return ret;
  204. cc = (*c)->priv_data;
  205. ret = ff_accept(sc->fd, sc->listen_timeout, s);
  206. if (ret < 0) {
  207. ffurl_closep(c);
  208. return ret;
  209. }
  210. cc->fd = ret;
  211. return 0;
  212. }
  213. static int tcp_read(URLContext *h, uint8_t *buf, int size)
  214. {
  215. TCPContext *s = h->priv_data;
  216. int ret;
  217. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  218. ret = ff_network_wait_fd_timeout(s->fd, 0, h->rw_timeout, &h->interrupt_callback);
  219. if (ret)
  220. return ret;
  221. }
  222. ret = recv(s->fd, buf, size, 0);
  223. if (ret == 0)
  224. return AVERROR_EOF;
  225. return ret < 0 ? ff_neterrno() : ret;
  226. }
  227. static int tcp_write(URLContext *h, const uint8_t *buf, int size)
  228. {
  229. TCPContext *s = h->priv_data;
  230. int ret;
  231. if (!(h->flags & AVIO_FLAG_NONBLOCK)) {
  232. ret = ff_network_wait_fd_timeout(s->fd, 1, h->rw_timeout, &h->interrupt_callback);
  233. if (ret)
  234. return ret;
  235. }
  236. ret = send(s->fd, buf, size, MSG_NOSIGNAL);
  237. return ret < 0 ? ff_neterrno() : ret;
  238. }
  239. static int tcp_shutdown(URLContext *h, int flags)
  240. {
  241. TCPContext *s = h->priv_data;
  242. int how;
  243. if (flags & AVIO_FLAG_WRITE && flags & AVIO_FLAG_READ) {
  244. how = SHUT_RDWR;
  245. } else if (flags & AVIO_FLAG_WRITE) {
  246. how = SHUT_WR;
  247. } else {
  248. how = SHUT_RD;
  249. }
  250. return shutdown(s->fd, how);
  251. }
  252. static int tcp_close(URLContext *h)
  253. {
  254. TCPContext *s = h->priv_data;
  255. closesocket(s->fd);
  256. return 0;
  257. }
  258. static int tcp_get_file_handle(URLContext *h)
  259. {
  260. TCPContext *s = h->priv_data;
  261. return s->fd;
  262. }
  263. static int tcp_get_window_size(URLContext *h)
  264. {
  265. TCPContext *s = h->priv_data;
  266. int avail;
  267. socklen_t avail_len = sizeof(avail);
  268. #if HAVE_WINSOCK2_H
  269. /* SO_RCVBUF with winsock only reports the actual TCP window size when
  270. auto-tuning has been disabled via setting SO_RCVBUF */
  271. if (s->recv_buffer_size < 0) {
  272. return AVERROR(ENOSYS);
  273. }
  274. #endif
  275. if (getsockopt(s->fd, SOL_SOCKET, SO_RCVBUF, &avail, &avail_len)) {
  276. return ff_neterrno();
  277. }
  278. return avail;
  279. }
  280. const URLProtocol ff_tcp_protocol = {
  281. .name = "tcp",
  282. .url_open = tcp_open,
  283. .url_accept = tcp_accept,
  284. .url_read = tcp_read,
  285. .url_write = tcp_write,
  286. .url_close = tcp_close,
  287. .url_get_file_handle = tcp_get_file_handle,
  288. .url_get_short_seek = tcp_get_window_size,
  289. .url_shutdown = tcp_shutdown,
  290. .priv_data_size = sizeof(TCPContext),
  291. .flags = URL_PROTOCOL_FLAG_NETWORK,
  292. .priv_data_class = &tcp_class,
  293. };