]> git.sesse.net Git - ffmpeg/blob - libavformat/network.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / network.c
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
21 #include "libavutil/avutil.h"
22 #include "network.h"
23 #include "libavcodec/internal.h"
24
25 #define THREADS (HAVE_PTHREADS || (defined(WIN32) && !defined(__MINGW32CE__)))
26
27 #if THREADS
28 #if HAVE_PTHREADS
29 #include <pthread.h>
30 #else
31 #include "libavcodec/w32pthreads.h"
32 #endif
33 #endif
34
35 #if CONFIG_OPENSSL
36 #include <openssl/ssl.h>
37 static int openssl_init;
38 #if THREADS
39 #include <openssl/crypto.h>
40 #include "libavutil/avutil.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 THREADS && GNUTLS_VERSION_NUMBER <= 0x020b00
60 #include <gcrypt.h>
61 #include <errno.h>
62 #undef malloc
63 #undef free
64 GCRY_THREAD_OPTION_PTHREAD_IMPL;
65 #endif
66 #endif
67
68 void ff_tls_init(void)
69 {
70     avpriv_lock_avformat();
71 #if CONFIG_OPENSSL
72     if (!openssl_init) {
73         SSL_library_init();
74         SSL_load_error_strings();
75 #if THREADS
76         if (!CRYPTO_get_locking_callback()) {
77             int i;
78             openssl_mutexes = av_malloc(sizeof(pthread_mutex_t) * CRYPTO_num_locks());
79             for (i = 0; i < CRYPTO_num_locks(); i++)
80                 pthread_mutex_init(&openssl_mutexes[i], NULL);
81             CRYPTO_set_locking_callback(openssl_lock);
82 #if !defined(WIN32) && OPENSSL_VERSION_NUMBER < 0x10000000
83             CRYPTO_set_id_callback(openssl_thread_id);
84 #endif
85         }
86 #endif
87     }
88     openssl_init++;
89 #endif
90 #if CONFIG_GNUTLS
91 #if THREADS && GNUTLS_VERSION_NUMBER < 0x020b00
92     if (gcry_control(GCRYCTL_ANY_INITIALIZATION_P) == 0)
93         gcry_control(GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
94 #endif
95     gnutls_global_init();
96 #endif
97     avpriv_unlock_avformat();
98 }
99
100 void ff_tls_deinit(void)
101 {
102     avpriv_lock_avformat();
103 #if CONFIG_OPENSSL
104     openssl_init--;
105     if (!openssl_init) {
106 #if THREADS
107         if (CRYPTO_get_locking_callback() == openssl_lock) {
108             int i;
109             CRYPTO_set_locking_callback(NULL);
110             for (i = 0; i < CRYPTO_num_locks(); i++)
111                 pthread_mutex_destroy(&openssl_mutexes[i]);
112             av_free(openssl_mutexes);
113         }
114 #endif
115     }
116 #endif
117 #if CONFIG_GNUTLS
118     gnutls_global_deinit();
119 #endif
120     avpriv_unlock_avformat();
121 }
122
123 int ff_network_inited_globally;
124
125 int ff_network_init(void)
126 {
127 #if HAVE_WINSOCK2_H
128     WSADATA wsaData;
129 #endif
130
131     if (!ff_network_inited_globally)
132         av_log(NULL, AV_LOG_WARNING, "Using network protocols without global "
133                                      "network initialization. Please use "
134                                      "avformat_network_init(), this will "
135                                      "become mandatory later.\n");
136 #if HAVE_WINSOCK2_H
137     if (WSAStartup(MAKEWORD(1,1), &wsaData))
138         return 0;
139 #endif
140     return 1;
141 }
142
143 int ff_network_wait_fd(int fd, int write)
144 {
145     int ev = write ? POLLOUT : POLLIN;
146     struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
147     int ret;
148     ret = poll(&p, 1, 100);
149     return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP) ? 0 : AVERROR(EAGAIN);
150 }
151
152 void ff_network_close(void)
153 {
154 #if HAVE_WINSOCK2_H
155     WSACleanup();
156 #endif
157 }
158
159 #if HAVE_WINSOCK2_H
160 int ff_neterrno(void)
161 {
162     int err = WSAGetLastError();
163     switch (err) {
164     case WSAEWOULDBLOCK:
165         return AVERROR(EAGAIN);
166     case WSAEINTR:
167         return AVERROR(EINTR);
168     }
169     return -err;
170 }
171 #endif
172
173 int ff_is_multicast_address(struct sockaddr *addr)
174 {
175     if (addr->sa_family == AF_INET) {
176         return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr));
177     }
178 #if HAVE_STRUCT_SOCKADDR_IN6
179     if (addr->sa_family == AF_INET6) {
180         return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr);
181     }
182 #endif
183
184     return 0;
185 }
186