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.

388 lines
10KB

  1. /*
  2. * Copyright (c) 2007 The FFmpeg Project
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include <fcntl.h>
  21. #include "network.h"
  22. #include "url.h"
  23. #include "libavcodec/internal.h"
  24. #include "libavutil/avutil.h"
  25. #include "libavutil/mem.h"
  26. #include "libavutil/time.h"
  27. #if HAVE_THREADS
  28. #if HAVE_PTHREADS
  29. #include <pthread.h>
  30. #elif HAVE_OS2THREADS
  31. #include "compat/os2threads.h"
  32. #else
  33. #include "compat/w32pthreads.h"
  34. #endif
  35. #endif
  36. #if CONFIG_OPENSSL
  37. #include <openssl/ssl.h>
  38. static int openssl_init;
  39. #if HAVE_THREADS
  40. #include <openssl/crypto.h>
  41. pthread_mutex_t *openssl_mutexes;
  42. static void openssl_lock(int mode, int type, const char *file, int line)
  43. {
  44. if (mode & CRYPTO_LOCK)
  45. pthread_mutex_lock(&openssl_mutexes[type]);
  46. else
  47. pthread_mutex_unlock(&openssl_mutexes[type]);
  48. }
  49. #if !defined(WIN32) && OPENSSL_VERSION_NUMBER < 0x10000000
  50. static unsigned long openssl_thread_id(void)
  51. {
  52. return (intptr_t) pthread_self();
  53. }
  54. #endif
  55. #endif
  56. #endif
  57. #if CONFIG_GNUTLS
  58. #include <gnutls/gnutls.h>
  59. #if HAVE_THREADS && GNUTLS_VERSION_NUMBER <= 0x020b00
  60. #include <gcrypt.h>
  61. #include <errno.h>
  62. GCRY_THREAD_OPTION_PTHREAD_IMPL;
  63. #endif
  64. #endif
  65. void ff_tls_init(void)
  66. {
  67. avpriv_lock_avformat();
  68. #if CONFIG_OPENSSL
  69. if (!openssl_init) {
  70. SSL_library_init();
  71. SSL_load_error_strings();
  72. #if HAVE_THREADS
  73. if (!CRYPTO_get_locking_callback()) {
  74. int i;
  75. openssl_mutexes = av_malloc_array(sizeof(pthread_mutex_t), CRYPTO_num_locks());
  76. for (i = 0; i < CRYPTO_num_locks(); i++)
  77. pthread_mutex_init(&openssl_mutexes[i], NULL);
  78. CRYPTO_set_locking_callback(openssl_lock);
  79. #if !defined(WIN32) && OPENSSL_VERSION_NUMBER < 0x10000000
  80. CRYPTO_set_id_callback(openssl_thread_id);
  81. #endif
  82. }
  83. #endif
  84. }
  85. openssl_init++;
  86. #endif
  87. #if CONFIG_GNUTLS
  88. #if HAVE_THREADS && GNUTLS_VERSION_NUMBER < 0x020b00
  89. if (gcry_control(GCRYCTL_ANY_INITIALIZATION_P) == 0)
  90. gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
  91. #endif
  92. gnutls_global_init();
  93. #endif
  94. avpriv_unlock_avformat();
  95. }
  96. void ff_tls_deinit(void)
  97. {
  98. avpriv_lock_avformat();
  99. #if CONFIG_OPENSSL
  100. openssl_init--;
  101. if (!openssl_init) {
  102. #if HAVE_THREADS
  103. if (CRYPTO_get_locking_callback() == openssl_lock) {
  104. int i;
  105. CRYPTO_set_locking_callback(NULL);
  106. for (i = 0; i < CRYPTO_num_locks(); i++)
  107. pthread_mutex_destroy(&openssl_mutexes[i]);
  108. av_free(openssl_mutexes);
  109. }
  110. #endif
  111. }
  112. #endif
  113. #if CONFIG_GNUTLS
  114. gnutls_global_deinit();
  115. #endif
  116. avpriv_unlock_avformat();
  117. }
  118. int ff_network_inited_globally;
  119. int ff_network_init(void)
  120. {
  121. #if HAVE_WINSOCK2_H
  122. WSADATA wsaData;
  123. #endif
  124. if (!ff_network_inited_globally)
  125. av_log(NULL, AV_LOG_WARNING, "Using network protocols without global "
  126. "network initialization. Please use "
  127. "avformat_network_init(), this will "
  128. "become mandatory later.\n");
  129. #if HAVE_WINSOCK2_H
  130. if (WSAStartup(MAKEWORD(1,1), &wsaData))
  131. return 0;
  132. #endif
  133. return 1;
  134. }
  135. int ff_network_wait_fd(int fd, int write)
  136. {
  137. int ev = write ? POLLOUT : POLLIN;
  138. struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
  139. int ret;
  140. ret = poll(&p, 1, 100);
  141. return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP) ? 0 : AVERROR(EAGAIN);
  142. }
  143. int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
  144. {
  145. int ret;
  146. int64_t wait_start = 0;
  147. while (1) {
  148. if (ff_check_interrupt(int_cb))
  149. return AVERROR_EXIT;
  150. ret = ff_network_wait_fd(fd, write);
  151. if (ret != AVERROR(EAGAIN))
  152. return ret;
  153. if (timeout > 0) {
  154. if (!wait_start)
  155. wait_start = av_gettime_relative();
  156. else if (av_gettime_relative() - wait_start > timeout)
  157. return AVERROR(ETIMEDOUT);
  158. }
  159. }
  160. }
  161. void ff_network_close(void)
  162. {
  163. #if HAVE_WINSOCK2_H
  164. WSACleanup();
  165. #endif
  166. }
  167. #if HAVE_WINSOCK2_H
  168. int ff_neterrno(void)
  169. {
  170. int err = WSAGetLastError();
  171. switch (err) {
  172. case WSAEWOULDBLOCK:
  173. return AVERROR(EAGAIN);
  174. case WSAEINTR:
  175. return AVERROR(EINTR);
  176. case WSAEPROTONOSUPPORT:
  177. return AVERROR(EPROTONOSUPPORT);
  178. case WSAETIMEDOUT:
  179. return AVERROR(ETIMEDOUT);
  180. case WSAECONNREFUSED:
  181. return AVERROR(ECONNREFUSED);
  182. case WSAEINPROGRESS:
  183. return AVERROR(EINPROGRESS);
  184. }
  185. return -err;
  186. }
  187. #endif
  188. int ff_is_multicast_address(struct sockaddr *addr)
  189. {
  190. if (addr->sa_family == AF_INET) {
  191. return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr));
  192. }
  193. #if HAVE_STRUCT_SOCKADDR_IN6
  194. if (addr->sa_family == AF_INET6) {
  195. return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr);
  196. }
  197. #endif
  198. return 0;
  199. }
  200. static int ff_poll_interrupt(struct pollfd *p, nfds_t nfds, int timeout,
  201. AVIOInterruptCB *cb)
  202. {
  203. int runs = timeout / POLLING_TIME;
  204. int ret = 0;
  205. do {
  206. if (ff_check_interrupt(cb))
  207. return AVERROR_EXIT;
  208. ret = poll(p, nfds, POLLING_TIME);
  209. if (ret != 0)
  210. break;
  211. } while (timeout <= 0 || runs-- > 0);
  212. if (!ret)
  213. return AVERROR(ETIMEDOUT);
  214. if (ret < 0)
  215. return AVERROR(errno);
  216. return ret;
  217. }
  218. int ff_socket(int af, int type, int proto)
  219. {
  220. int fd;
  221. #ifdef SOCK_CLOEXEC
  222. fd = socket(af, type | SOCK_CLOEXEC, proto);
  223. if (fd == -1 && errno == EINVAL)
  224. #endif
  225. {
  226. fd = socket(af, type, proto);
  227. #if HAVE_FCNTL
  228. if (fd != -1) {
  229. if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
  230. av_log(NULL, AV_LOG_DEBUG, "Failed to set close on exec\n");
  231. }
  232. #endif
  233. }
  234. return fd;
  235. }
  236. int ff_listen_bind(int fd, const struct sockaddr *addr,
  237. socklen_t addrlen, int timeout, URLContext *h)
  238. {
  239. int ret;
  240. int reuse = 1;
  241. struct pollfd lp = { fd, POLLIN, 0 };
  242. if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse))) {
  243. av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_REUSEADDR) failed\n");
  244. }
  245. ret = bind(fd, addr, addrlen);
  246. if (ret)
  247. return ff_neterrno();
  248. ret = listen(fd, 1);
  249. if (ret)
  250. return ff_neterrno();
  251. ret = ff_poll_interrupt(&lp, 1, timeout, &h->interrupt_callback);
  252. if (ret < 0)
  253. return ret;
  254. ret = accept(fd, NULL, NULL);
  255. if (ret < 0)
  256. return ff_neterrno();
  257. closesocket(fd);
  258. if (ff_socket_nonblock(ret, 1) < 0)
  259. av_log(NULL, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
  260. return ret;
  261. }
  262. int ff_listen_connect(int fd, const struct sockaddr *addr,
  263. socklen_t addrlen, int timeout, URLContext *h,
  264. int will_try_next)
  265. {
  266. struct pollfd p = {fd, POLLOUT, 0};
  267. int ret;
  268. socklen_t optlen;
  269. if (ff_socket_nonblock(fd, 1) < 0)
  270. av_log(NULL, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
  271. while ((ret = connect(fd, addr, addrlen))) {
  272. ret = ff_neterrno();
  273. switch (ret) {
  274. case AVERROR(EINTR):
  275. if (ff_check_interrupt(&h->interrupt_callback))
  276. return AVERROR_EXIT;
  277. continue;
  278. case AVERROR(EINPROGRESS):
  279. case AVERROR(EAGAIN):
  280. ret = ff_poll_interrupt(&p, 1, timeout, &h->interrupt_callback);
  281. if (ret < 0)
  282. return ret;
  283. optlen = sizeof(ret);
  284. if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen))
  285. ret = AVUNERROR(ff_neterrno());
  286. if (ret != 0) {
  287. char errbuf[100];
  288. ret = AVERROR(ret);
  289. av_strerror(ret, errbuf, sizeof(errbuf));
  290. if (will_try_next)
  291. av_log(h, AV_LOG_WARNING,
  292. "Connection to %s failed (%s), trying next address\n",
  293. h->filename, errbuf);
  294. else
  295. av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
  296. h->filename, errbuf);
  297. }
  298. default:
  299. return ret;
  300. }
  301. }
  302. return ret;
  303. }
  304. static int match_host_pattern(const char *pattern, const char *hostname)
  305. {
  306. int len_p, len_h;
  307. if (!strcmp(pattern, "*"))
  308. return 1;
  309. // Skip a possible *. at the start of the pattern
  310. if (pattern[0] == '*')
  311. pattern++;
  312. if (pattern[0] == '.')
  313. pattern++;
  314. len_p = strlen(pattern);
  315. len_h = strlen(hostname);
  316. if (len_p > len_h)
  317. return 0;
  318. // Simply check if the end of hostname is equal to 'pattern'
  319. if (!strcmp(pattern, &hostname[len_h - len_p])) {
  320. if (len_h == len_p)
  321. return 1; // Exact match
  322. if (hostname[len_h - len_p - 1] == '.')
  323. return 1; // The matched substring is a domain and not just a substring of a domain
  324. }
  325. return 0;
  326. }
  327. int ff_http_match_no_proxy(const char *no_proxy, const char *hostname)
  328. {
  329. char *buf, *start;
  330. int ret = 0;
  331. if (!no_proxy)
  332. return 0;
  333. if (!hostname)
  334. return 0;
  335. buf = av_strdup(no_proxy);
  336. if (!buf)
  337. return 0;
  338. start = buf;
  339. while (start) {
  340. char *sep, *next = NULL;
  341. start += strspn(start, " ,");
  342. sep = start + strcspn(start, " ,");
  343. if (*sep) {
  344. next = sep + 1;
  345. *sep = '\0';
  346. }
  347. if (match_host_pattern(start, hostname)) {
  348. ret = 1;
  349. break;
  350. }
  351. start = next;
  352. }
  353. av_free(buf);
  354. return ret;
  355. }