]> git.sesse.net Git - ffmpeg/blob - libavformat/os_support.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / os_support.c
1 /*
2  * various OS-feature replacement utilities
3  * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4  * copyright (c) 2002 Francois Revol
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /* needed by inet_aton() */
24 #define _SVID_SOURCE
25
26 #include "config.h"
27 #include "avformat.h"
28 #include "os_support.h"
29
30 #if defined(_WIN32) && !defined(__MINGW32CE__)
31 #undef open
32 #include <fcntl.h>
33 #include <io.h>
34 #include <windows.h>
35 #include <share.h>
36
37 int ff_win32_open(const char *filename_utf8, int oflag, int pmode)
38 {
39     int fd;
40     int num_chars;
41     wchar_t *filename_w;
42
43     /* convert UTF-8 to wide chars */
44     num_chars = MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, NULL, 0);
45     if (num_chars <= 0)
46         return -1;
47     filename_w = av_mallocz(sizeof(wchar_t) * num_chars);
48     MultiByteToWideChar(CP_UTF8, 0, filename_utf8, -1, filename_w, num_chars);
49
50     fd = _wsopen(filename_w, oflag, SH_DENYNO, pmode);
51     av_freep(&filename_w);
52
53     /* filename maybe be in CP_ACP */
54     if (fd == -1 && !(oflag & O_CREAT))
55         return _sopen(filename_utf8, oflag, SH_DENYNO, pmode);
56
57     return fd;
58 }
59 #endif
60
61 #if CONFIG_NETWORK
62 #include <fcntl.h>
63 #if !HAVE_POLL_H
64 #if HAVE_SYS_TIME_H
65 #include <sys/time.h>
66 #endif
67 #if HAVE_WINSOCK2_H
68 #include <winsock2.h>
69 #elif HAVE_SYS_SELECT_H
70 #include <sys/select.h>
71 #endif
72 #endif
73
74 #include "network.h"
75
76 #if !HAVE_INET_ATON
77 #include <stdlib.h>
78
79 int ff_inet_aton (const char * str, struct in_addr * add)
80 {
81     unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
82
83     if (sscanf(str, "%d.%d.%d.%d", &add1, &add2, &add3, &add4) != 4)
84         return 0;
85
86     if (!add1 || (add1|add2|add3|add4) > 255) return 0;
87
88     add->s_addr = htonl((add1 << 24) + (add2 << 16) + (add3 << 8) + add4);
89
90     return 1;
91 }
92 #else
93 int ff_inet_aton (const char * str, struct in_addr * add)
94 {
95     return inet_aton(str, add);
96 }
97 #endif /* !HAVE_INET_ATON */
98
99 #if !HAVE_GETADDRINFO
100 int ff_getaddrinfo(const char *node, const char *service,
101                 const struct addrinfo *hints, struct addrinfo **res)
102 {
103     struct hostent *h = NULL;
104     struct addrinfo *ai;
105     struct sockaddr_in *sin;
106
107 #if HAVE_WINSOCK2_H
108     int (WSAAPI *win_getaddrinfo)(const char *node, const char *service,
109                                   const struct addrinfo *hints,
110                                   struct addrinfo **res);
111     HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
112     win_getaddrinfo = GetProcAddress(ws2mod, "getaddrinfo");
113     if (win_getaddrinfo)
114         return win_getaddrinfo(node, service, hints, res);
115 #endif
116
117     *res = NULL;
118     sin = av_mallocz(sizeof(struct sockaddr_in));
119     if (!sin)
120         return EAI_FAIL;
121     sin->sin_family = AF_INET;
122
123     if (node) {
124         if (!ff_inet_aton(node, &sin->sin_addr)) {
125             if (hints && (hints->ai_flags & AI_NUMERICHOST)) {
126                 av_free(sin);
127                 return EAI_FAIL;
128             }
129             h = gethostbyname(node);
130             if (!h) {
131                 av_free(sin);
132                 return EAI_FAIL;
133             }
134             memcpy(&sin->sin_addr, h->h_addr_list[0], sizeof(struct in_addr));
135         }
136     } else {
137         if (hints && (hints->ai_flags & AI_PASSIVE)) {
138             sin->sin_addr.s_addr = INADDR_ANY;
139         } else
140             sin->sin_addr.s_addr = INADDR_LOOPBACK;
141     }
142
143     /* Note: getaddrinfo allows service to be a string, which
144      * should be looked up using getservbyname. */
145     if (service)
146         sin->sin_port = htons(atoi(service));
147
148     ai = av_mallocz(sizeof(struct addrinfo));
149     if (!ai) {
150         av_free(sin);
151         return EAI_FAIL;
152     }
153
154     *res = ai;
155     ai->ai_family = AF_INET;
156     ai->ai_socktype = hints ? hints->ai_socktype : 0;
157     switch (ai->ai_socktype) {
158     case SOCK_STREAM: ai->ai_protocol = IPPROTO_TCP; break;
159     case SOCK_DGRAM:  ai->ai_protocol = IPPROTO_UDP; break;
160     default:          ai->ai_protocol = 0;           break;
161     }
162
163     ai->ai_addr = (struct sockaddr *)sin;
164     ai->ai_addrlen = sizeof(struct sockaddr_in);
165     if (hints && (hints->ai_flags & AI_CANONNAME))
166         ai->ai_canonname = h ? av_strdup(h->h_name) : NULL;
167
168     ai->ai_next = NULL;
169     return 0;
170 }
171
172 void ff_freeaddrinfo(struct addrinfo *res)
173 {
174 #if HAVE_WINSOCK2_H
175     void (WSAAPI *win_freeaddrinfo)(struct addrinfo *res);
176     HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
177     win_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *res))
178                        GetProcAddress(ws2mod, "freeaddrinfo");
179     if (win_freeaddrinfo) {
180         win_freeaddrinfo(res);
181         return;
182     }
183 #endif
184
185     av_free(res->ai_canonname);
186     av_free(res->ai_addr);
187     av_free(res);
188 }
189
190 int ff_getnameinfo(const struct sockaddr *sa, int salen,
191                    char *host, int hostlen,
192                    char *serv, int servlen, int flags)
193 {
194     const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
195
196 #if HAVE_WINSOCK2_H
197     int (WSAAPI *win_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
198                                   char *host, DWORD hostlen,
199                                   char *serv, DWORD servlen, int flags);
200     HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
201     win_getnameinfo = GetProcAddress(ws2mod, "getnameinfo");
202     if (win_getnameinfo)
203         return win_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
204 #endif
205
206     if (sa->sa_family != AF_INET)
207         return EAI_FAMILY;
208     if (!host && !serv)
209         return EAI_NONAME;
210
211     if (host && hostlen > 0) {
212         struct hostent *ent = NULL;
213         uint32_t a;
214         if (!(flags & NI_NUMERICHOST))
215             ent = gethostbyaddr((const char *)&sin->sin_addr,
216                                 sizeof(sin->sin_addr), AF_INET);
217
218         if (ent) {
219             snprintf(host, hostlen, "%s", ent->h_name);
220         } else if (flags & NI_NAMERQD) {
221             return EAI_NONAME;
222         } else {
223             a = ntohl(sin->sin_addr.s_addr);
224             snprintf(host, hostlen, "%d.%d.%d.%d",
225                      ((a >> 24) & 0xff), ((a >> 16) & 0xff),
226                      ((a >>  8) & 0xff), ( a        & 0xff));
227         }
228     }
229
230     if (serv && servlen > 0) {
231         struct servent *ent = NULL;
232         if (!(flags & NI_NUMERICSERV))
233             ent = getservbyport(sin->sin_port, flags & NI_DGRAM ? "udp" : "tcp");
234
235         if (ent) {
236             snprintf(serv, servlen, "%s", ent->s_name);
237         } else
238             snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
239     }
240
241     return 0;
242 }
243
244 const char *ff_gai_strerror(int ecode)
245 {
246     switch(ecode) {
247     case EAI_FAIL   : return "A non-recoverable error occurred";
248     case EAI_FAMILY : return "The address family was not recognized or the address length was invalid for the specified family";
249     case EAI_NONAME : return "The name does not resolve for the supplied parameters";
250     }
251
252     return "Unknown error";
253 }
254 #endif
255
256 int ff_socket_nonblock(int socket, int enable)
257 {
258 #if HAVE_WINSOCK2_H
259    u_long param = enable;
260    return ioctlsocket(socket, FIONBIO, &param);
261 #else
262    if (enable)
263       return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
264    else
265       return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
266 #endif
267 }
268
269 #if !HAVE_POLL_H
270 int ff_poll(struct pollfd *fds, nfds_t numfds, int timeout)
271 {
272     fd_set read_set;
273     fd_set write_set;
274     fd_set exception_set;
275     nfds_t i;
276     int n;
277     int rc;
278
279 #if HAVE_WINSOCK2_H
280     if (numfds >= FD_SETSIZE) {
281         errno = EINVAL;
282         return -1;
283     }
284 #endif
285
286     FD_ZERO(&read_set);
287     FD_ZERO(&write_set);
288     FD_ZERO(&exception_set);
289
290     n = 0;
291     for(i = 0; i < numfds; i++) {
292         if (fds[i].fd < 0)
293             continue;
294 #if !HAVE_WINSOCK2_H
295         if (fds[i].fd >= FD_SETSIZE) {
296             errno = EINVAL;
297             return -1;
298         }
299 #endif
300
301         if (fds[i].events & POLLIN)  FD_SET(fds[i].fd, &read_set);
302         if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);
303         if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);
304
305         if (fds[i].fd >= n)
306             n = fds[i].fd + 1;
307     };
308
309     if (n == 0)
310         /* Hey!? Nothing to poll, in fact!!! */
311         return 0;
312
313     if (timeout < 0)
314         rc = select(n, &read_set, &write_set, &exception_set, NULL);
315     else {
316         struct timeval    tv;
317
318         tv.tv_sec = timeout / 1000;
319         tv.tv_usec = 1000 * (timeout % 1000);
320         rc = select(n, &read_set, &write_set, &exception_set, &tv);
321     };
322
323     if (rc < 0)
324         return rc;
325
326     for(i = 0; i < numfds; i++) {
327         fds[i].revents = 0;
328
329         if (FD_ISSET(fds[i].fd, &read_set))      fds[i].revents |= POLLIN;
330         if (FD_ISSET(fds[i].fd, &write_set))     fds[i].revents |= POLLOUT;
331         if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;
332     };
333
334     return rc;
335 }
336 #endif /* HAVE_POLL_H */
337 #endif /* CONFIG_NETWORK */