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.

385 lines
10.0KB

  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(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();
  156. else if (av_gettime() - 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. ff_socket_nonblock(ret, 1);
  259. return ret;
  260. }
  261. int ff_listen_connect(int fd, const struct sockaddr *addr,
  262. socklen_t addrlen, int timeout, URLContext *h,
  263. int will_try_next)
  264. {
  265. struct pollfd p = {fd, POLLOUT, 0};
  266. int ret;
  267. socklen_t optlen;
  268. ff_socket_nonblock(fd, 1);
  269. while ((ret = connect(fd, addr, addrlen))) {
  270. ret = ff_neterrno();
  271. switch (ret) {
  272. case AVERROR(EINTR):
  273. if (ff_check_interrupt(&h->interrupt_callback))
  274. return AVERROR_EXIT;
  275. continue;
  276. case AVERROR(EINPROGRESS):
  277. case AVERROR(EAGAIN):
  278. ret = ff_poll_interrupt(&p, 1, timeout, &h->interrupt_callback);
  279. if (ret < 0)
  280. return ret;
  281. optlen = sizeof(ret);
  282. if (getsockopt (fd, SOL_SOCKET, SO_ERROR, &ret, &optlen))
  283. ret = AVUNERROR(ff_neterrno());
  284. if (ret != 0) {
  285. char errbuf[100];
  286. ret = AVERROR(ret);
  287. av_strerror(ret, errbuf, sizeof(errbuf));
  288. if (will_try_next)
  289. av_log(h, AV_LOG_WARNING,
  290. "Connection to %s failed (%s), trying next address\n",
  291. h->filename, errbuf);
  292. else
  293. av_log(h, AV_LOG_ERROR, "Connection to %s failed: %s\n",
  294. h->filename, errbuf);
  295. }
  296. default:
  297. return ret;
  298. }
  299. }
  300. return ret;
  301. }
  302. static int match_host_pattern(const char *pattern, const char *hostname)
  303. {
  304. int len_p, len_h;
  305. if (!strcmp(pattern, "*"))
  306. return 1;
  307. // Skip a possible *. at the start of the pattern
  308. if (pattern[0] == '*')
  309. pattern++;
  310. if (pattern[0] == '.')
  311. pattern++;
  312. len_p = strlen(pattern);
  313. len_h = strlen(hostname);
  314. if (len_p > len_h)
  315. return 0;
  316. // Simply check if the end of hostname is equal to 'pattern'
  317. if (!strcmp(pattern, &hostname[len_h - len_p])) {
  318. if (len_h == len_p)
  319. return 1; // Exact match
  320. if (hostname[len_h - len_p - 1] == '.')
  321. return 1; // The matched substring is a domain and not just a substring of a domain
  322. }
  323. return 0;
  324. }
  325. int ff_http_match_no_proxy(const char *no_proxy, const char *hostname)
  326. {
  327. char *buf, *start;
  328. int ret = 0;
  329. if (!no_proxy)
  330. return 0;
  331. if (!hostname)
  332. return 0;
  333. buf = av_strdup(no_proxy);
  334. if (!buf)
  335. return 0;
  336. start = buf;
  337. while (start) {
  338. char *sep, *next = NULL;
  339. start += strspn(start, " ,");
  340. sep = start + strcspn(start, " ,");
  341. if (*sep) {
  342. next = sep + 1;
  343. *sep = '\0';
  344. }
  345. if (match_host_pattern(start, hostname)) {
  346. ret = 1;
  347. break;
  348. }
  349. start = next;
  350. }
  351. av_free(buf);
  352. return ret;
  353. }