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.

217 lines
5.5KB

  1. /*
  2. * Copyright (c) 2007 The Libav Project
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #include "libavutil/avutil.h"
  21. #include "network.h"
  22. #include "libavcodec/internal.h"
  23. #include "libavutil/mem.h"
  24. #include "url.h"
  25. #include "libavutil/time.h"
  26. #define THREADS (HAVE_PTHREADS || (defined(WIN32) && !defined(__MINGW32CE__)))
  27. #if THREADS
  28. #if HAVE_PTHREADS
  29. #include <pthread.h>
  30. #else
  31. #include "libavcodec/w32pthreads.h"
  32. #endif
  33. #endif
  34. #if CONFIG_OPENSSL
  35. #include <openssl/ssl.h>
  36. static int openssl_init;
  37. #if THREADS
  38. #include <openssl/crypto.h>
  39. #include "libavutil/avutil.h"
  40. pthread_mutex_t *openssl_mutexes;
  41. static void openssl_lock(int mode, int type, const char *file, int line)
  42. {
  43. if (mode & CRYPTO_LOCK)
  44. pthread_mutex_lock(&openssl_mutexes[type]);
  45. else
  46. pthread_mutex_unlock(&openssl_mutexes[type]);
  47. }
  48. #if !defined(WIN32) && OPENSSL_VERSION_NUMBER < 0x10000000
  49. static unsigned long openssl_thread_id(void)
  50. {
  51. return (intptr_t) pthread_self();
  52. }
  53. #endif
  54. #endif
  55. #endif
  56. #if CONFIG_GNUTLS
  57. #include <gnutls/gnutls.h>
  58. #if THREADS && GNUTLS_VERSION_NUMBER <= 0x020b00
  59. #include <gcrypt.h>
  60. #include <errno.h>
  61. #undef malloc
  62. #undef free
  63. GCRY_THREAD_OPTION_PTHREAD_IMPL;
  64. #endif
  65. #endif
  66. void ff_tls_init(void)
  67. {
  68. avpriv_lock_avformat();
  69. #if CONFIG_OPENSSL
  70. if (!openssl_init) {
  71. SSL_library_init();
  72. SSL_load_error_strings();
  73. #if THREADS
  74. if (!CRYPTO_get_locking_callback()) {
  75. int i;
  76. openssl_mutexes = av_malloc(sizeof(pthread_mutex_t) * CRYPTO_num_locks());
  77. for (i = 0; i < CRYPTO_num_locks(); i++)
  78. pthread_mutex_init(&openssl_mutexes[i], NULL);
  79. CRYPTO_set_locking_callback(openssl_lock);
  80. #if !defined(WIN32) && OPENSSL_VERSION_NUMBER < 0x10000000
  81. CRYPTO_set_id_callback(openssl_thread_id);
  82. #endif
  83. }
  84. #endif
  85. }
  86. openssl_init++;
  87. #endif
  88. #if CONFIG_GNUTLS
  89. #if THREADS && GNUTLS_VERSION_NUMBER < 0x020b00
  90. if (gcry_control(GCRYCTL_ANY_INITIALIZATION_P) == 0)
  91. gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
  92. #endif
  93. gnutls_global_init();
  94. #endif
  95. avpriv_unlock_avformat();
  96. }
  97. void ff_tls_deinit(void)
  98. {
  99. avpriv_lock_avformat();
  100. #if CONFIG_OPENSSL
  101. openssl_init--;
  102. if (!openssl_init) {
  103. #if THREADS
  104. if (CRYPTO_get_locking_callback() == openssl_lock) {
  105. int i;
  106. CRYPTO_set_locking_callback(NULL);
  107. for (i = 0; i < CRYPTO_num_locks(); i++)
  108. pthread_mutex_destroy(&openssl_mutexes[i]);
  109. av_free(openssl_mutexes);
  110. }
  111. #endif
  112. }
  113. #endif
  114. #if CONFIG_GNUTLS
  115. gnutls_global_deinit();
  116. #endif
  117. avpriv_unlock_avformat();
  118. }
  119. int ff_network_inited_globally;
  120. int ff_network_init(void)
  121. {
  122. #if HAVE_WINSOCK2_H
  123. WSADATA wsaData;
  124. #endif
  125. if (!ff_network_inited_globally)
  126. av_log(NULL, AV_LOG_WARNING, "Using network protocols without global "
  127. "network initialization. Please use "
  128. "avformat_network_init(), this will "
  129. "become mandatory later.\n");
  130. #if HAVE_WINSOCK2_H
  131. if (WSAStartup(MAKEWORD(1,1), &wsaData))
  132. return 0;
  133. #endif
  134. return 1;
  135. }
  136. int ff_network_wait_fd(int fd, int write)
  137. {
  138. int ev = write ? POLLOUT : POLLIN;
  139. struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
  140. int ret;
  141. ret = poll(&p, 1, 100);
  142. return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP) ? 0 : AVERROR(EAGAIN);
  143. }
  144. int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
  145. {
  146. int ret;
  147. int64_t wait_start = 0;
  148. while (1) {
  149. ret = ff_network_wait_fd(fd, write);
  150. if (ret != AVERROR(EAGAIN))
  151. return ret;
  152. if (ff_check_interrupt(int_cb))
  153. return AVERROR_EXIT;
  154. if (timeout) {
  155. if (!wait_start)
  156. wait_start = av_gettime();
  157. else if (av_gettime() - wait_start > timeout)
  158. return AVERROR(ETIMEDOUT);
  159. }
  160. }
  161. }
  162. void ff_network_close(void)
  163. {
  164. #if HAVE_WINSOCK2_H
  165. WSACleanup();
  166. #endif
  167. }
  168. #if HAVE_WINSOCK2_H
  169. int ff_neterrno(void)
  170. {
  171. int err = WSAGetLastError();
  172. switch (err) {
  173. case WSAEWOULDBLOCK:
  174. return AVERROR(EAGAIN);
  175. case WSAEINTR:
  176. return AVERROR(EINTR);
  177. case WSAEPROTONOSUPPORT:
  178. return AVERROR(EPROTONOSUPPORT);
  179. case WSAETIMEDOUT:
  180. return AVERROR(ETIMEDOUT);
  181. case WSAECONNREFUSED:
  182. return AVERROR(ECONNREFUSED);
  183. case WSAEINPROGRESS:
  184. return AVERROR(EINPROGRESS);
  185. }
  186. return -err;
  187. }
  188. #endif
  189. int ff_is_multicast_address(struct sockaddr *addr)
  190. {
  191. if (addr->sa_family == AF_INET) {
  192. return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr));
  193. }
  194. #if HAVE_STRUCT_SOCKADDR_IN6
  195. if (addr->sa_family == AF_INET6) {
  196. return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr);
  197. }
  198. #endif
  199. return 0;
  200. }