]> git.sesse.net Git - ffmpeg/blob - libavformat/network.c
avformat/http: fix memory leak in parse_cookie.
[ffmpeg] / libavformat / network.c
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
21 #include <fcntl.h>
22 #include "network.h"
23 #include "tls.h"
24 #include "url.h"
25 #include "libavcodec/internal.h"
26 #include "libavutil/avutil.h"
27 #include "libavutil/mem.h"
28 #include "libavutil/time.h"
29
30 int ff_tls_init(void)
31 {
32 #if CONFIG_TLS_PROTOCOL
33 #if CONFIG_OPENSSL
34     int ret;
35     if ((ret = ff_openssl_init()) < 0)
36         return ret;
37 #endif
38 #if CONFIG_GNUTLS
39     ff_gnutls_init();
40 #endif
41 #endif
42     return 0;
43 }
44
45 void ff_tls_deinit(void)
46 {
47 #if CONFIG_TLS_PROTOCOL
48 #if CONFIG_OPENSSL
49     ff_openssl_deinit();
50 #endif
51 #if CONFIG_GNUTLS
52     ff_gnutls_deinit();
53 #endif
54 #endif
55 }
56
57 int ff_network_inited_globally;
58
59 int ff_network_init(void)
60 {
61 #if HAVE_WINSOCK2_H
62     WSADATA wsaData;
63 #endif
64
65     if (!ff_network_inited_globally)
66         av_log(NULL, AV_LOG_WARNING, "Using network protocols without global "
67                                      "network initialization. Please use "
68                                      "avformat_network_init(), this will "
69                                      "become mandatory later.\n");
70 #if HAVE_WINSOCK2_H
71     if (WSAStartup(MAKEWORD(1,1), &wsaData))
72         return 0;
73 #endif
74     return 1;
75 }
76
77 int ff_network_wait_fd(int fd, int write)
78 {
79     int ev = write ? POLLOUT : POLLIN;
80     struct pollfd p = { .fd = fd, .events = ev, .revents = 0 };
81     int ret;
82     ret = poll(&p, 1, POLLING_TIME);
83     return ret < 0 ? ff_neterrno() : p.revents & (ev | POLLERR | POLLHUP) ? 0 : AVERROR(EAGAIN);
84 }
85
86 int ff_network_wait_fd_timeout(int fd, int write, int64_t timeout, AVIOInterruptCB *int_cb)
87 {
88     int ret;
89     int64_t wait_start = 0;
90
91     while (1) {
92         if (ff_check_interrupt(int_cb))
93             return AVERROR_EXIT;
94         ret = ff_network_wait_fd(fd, write);
95         if (ret != AVERROR(EAGAIN))
96             return ret;
97         if (timeout > 0) {
98             if (!wait_start)
99                 wait_start = av_gettime_relative();
100             else if (av_gettime_relative() - wait_start > timeout)
101                 return AVERROR(ETIMEDOUT);
102         }
103     }
104 }
105
106 int ff_network_sleep_interruptible(int64_t timeout, AVIOInterruptCB *int_cb)
107 {
108     int64_t wait_start = av_gettime_relative();
109
110     while (1) {
111         int64_t time_left;
112
113         if (ff_check_interrupt(int_cb))
114             return AVERROR_EXIT;
115
116         time_left = timeout - (av_gettime_relative() - wait_start);
117         if (time_left <= 0)
118             return AVERROR(ETIMEDOUT);
119
120         av_usleep(FFMIN(time_left, POLLING_TIME * 1000));
121     }
122 }
123
124 void ff_network_close(void)
125 {
126 #if HAVE_WINSOCK2_H
127     WSACleanup();
128 #endif
129 }
130
131 #if HAVE_WINSOCK2_H
132 int ff_neterrno(void)
133 {
134     int err = WSAGetLastError();
135     switch (err) {
136     case WSAEWOULDBLOCK:
137         return AVERROR(EAGAIN);
138     case WSAEINTR:
139         return AVERROR(EINTR);
140     case WSAEPROTONOSUPPORT:
141         return AVERROR(EPROTONOSUPPORT);
142     case WSAETIMEDOUT:
143         return AVERROR(ETIMEDOUT);
144     case WSAECONNREFUSED:
145         return AVERROR(ECONNREFUSED);
146     case WSAEINPROGRESS:
147         return AVERROR(EINPROGRESS);
148     }
149     return -err;
150 }
151 #endif
152
153 int ff_is_multicast_address(struct sockaddr *addr)
154 {
155     if (addr->sa_family == AF_INET) {
156         return IN_MULTICAST(ntohl(((struct sockaddr_in *)addr)->sin_addr.s_addr));
157     }
158 #if HAVE_STRUCT_SOCKADDR_IN6
159     if (addr->sa_family == AF_INET6) {
160         return IN6_IS_ADDR_MULTICAST(&((struct sockaddr_in6 *)addr)->sin6_addr);
161     }
162 #endif
163
164     return 0;
165 }
166
167 static int ff_poll_interrupt(struct pollfd *p, nfds_t nfds, int timeout,
168                              AVIOInterruptCB *cb)
169 {
170     int runs = timeout / POLLING_TIME;
171     int ret = 0;
172
173     do {
174         if (ff_check_interrupt(cb))
175             return AVERROR_EXIT;
176         ret = poll(p, nfds, POLLING_TIME);
177         if (ret != 0)
178             break;
179     } while (timeout <= 0 || runs-- > 0);
180
181     if (!ret)
182         return AVERROR(ETIMEDOUT);
183     if (ret < 0)
184         return ff_neterrno();
185     return ret;
186 }
187
188 int ff_socket(int af, int type, int proto)
189 {
190     int fd;
191
192 #ifdef SOCK_CLOEXEC
193     fd = socket(af, type | SOCK_CLOEXEC, proto);
194     if (fd == -1 && errno == EINVAL)
195 #endif
196     {
197         fd = socket(af, type, proto);
198 #if HAVE_FCNTL
199         if (fd != -1) {
200             if (fcntl(fd, F_SETFD, FD_CLOEXEC) == -1)
201                 av_log(NULL, AV_LOG_DEBUG, "Failed to set close on exec\n");
202         }
203 #endif
204     }
205 #ifdef SO_NOSIGPIPE
206     if (fd != -1)
207         setsockopt(fd, SOL_SOCKET, SO_NOSIGPIPE, &(int){1}, sizeof(int));
208 #endif
209     return fd;
210 }
211
212 int ff_listen(int fd, const struct sockaddr *addr,
213               socklen_t addrlen)
214 {
215     int ret;
216     int reuse = 1;
217     if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &reuse, sizeof(reuse))) {
218         av_log(NULL, AV_LOG_WARNING, "setsockopt(SO_REUSEADDR) failed\n");
219     }
220     ret = bind(fd, addr, addrlen);
221     if (ret)
222         return ff_neterrno();
223
224     ret = listen(fd, 1);
225     if (ret)
226         return ff_neterrno();
227     return ret;
228 }
229
230 int ff_accept(int fd, int timeout, URLContext *h)
231 {
232     int ret;
233     struct pollfd lp = { fd, POLLIN, 0 };
234
235     ret = ff_poll_interrupt(&lp, 1, timeout, &h->interrupt_callback);
236     if (ret < 0)
237         return ret;
238
239     ret = accept(fd, NULL, NULL);
240     if (ret < 0)
241         return ff_neterrno();
242     if (ff_socket_nonblock(ret, 1) < 0)
243         av_log(NULL, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
244
245     return ret;
246 }
247
248 int ff_listen_bind(int fd, const struct sockaddr *addr,
249                    socklen_t addrlen, int timeout, URLContext *h)
250 {
251     int ret;
252     if ((ret = ff_listen(fd, addr, addrlen)) < 0)
253         return ret;
254     if ((ret = ff_accept(fd, timeout, h)) < 0)
255         return ret;
256     closesocket(fd);
257     return ret;
258 }
259
260 int ff_listen_connect(int fd, const struct sockaddr *addr,
261                       socklen_t addrlen, int timeout, URLContext *h,
262                       int will_try_next)
263 {
264     struct pollfd p = {fd, POLLOUT, 0};
265     int ret;
266     socklen_t optlen;
267
268     if (ff_socket_nonblock(fd, 1) < 0)
269         av_log(NULL, AV_LOG_DEBUG, "ff_socket_nonblock failed\n");
270
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
305 static int match_host_pattern(const char *pattern, const char *hostname)
306 {
307     int len_p, len_h;
308     if (!strcmp(pattern, "*"))
309         return 1;
310     // Skip a possible *. at the start of the pattern
311     if (pattern[0] == '*')
312         pattern++;
313     if (pattern[0] == '.')
314         pattern++;
315     len_p = strlen(pattern);
316     len_h = strlen(hostname);
317     if (len_p > len_h)
318         return 0;
319     // Simply check if the end of hostname is equal to 'pattern'
320     if (!strcmp(pattern, &hostname[len_h - len_p])) {
321         if (len_h == len_p)
322             return 1; // Exact match
323         if (hostname[len_h - len_p - 1] == '.')
324             return 1; // The matched substring is a domain and not just a substring of a domain
325     }
326     return 0;
327 }
328
329 int ff_http_match_no_proxy(const char *no_proxy, const char *hostname)
330 {
331     char *buf, *start;
332     int ret = 0;
333     if (!no_proxy)
334         return 0;
335     if (!hostname)
336         return 0;
337     buf = av_strdup(no_proxy);
338     if (!buf)
339         return 0;
340     start = buf;
341     while (start) {
342         char *sep, *next = NULL;
343         start += strspn(start, " ,");
344         sep = start + strcspn(start, " ,");
345         if (*sep) {
346             next = sep + 1;
347             *sep = '\0';
348         }
349         if (match_host_pattern(start, hostname)) {
350             ret = 1;
351             break;
352         }
353         start = next;
354     }
355     av_free(buf);
356     return ret;
357 }