2 * Various utilities for ffmpeg system
3 * Copyright (c) 2000, 2001, 2002 Fabrice Bellard
4 * copyright (c) 2002 Francois Revol
6 * This file is part of FFmpeg.
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.
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.
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
23 /* needed by inet_aton() */
31 #include "os_support.h"
37 #elif HAVE_SYS_SELECT_H
38 #include <sys/select.h>
48 int inet_aton (const char * str, struct in_addr * add)
50 unsigned int add1 = 0, add2 = 0, add3 = 0, add4 = 0;
52 if (sscanf(str, "%d.%d.%d.%d", &add1, &add2, &add3, &add4) != 4)
55 if (!add1 || (add1|add2|add3|add4) > 255) return 0;
57 add->s_addr = htonl((add1 << 24) + (add2 << 16) + (add3 << 8) + add4);
61 #endif /* !HAVE_INET_ATON */
64 int ff_getaddrinfo(const char *node, const char *service,
65 const struct addrinfo *hints, struct addrinfo **res)
67 struct hostent *h = NULL;
69 struct sockaddr_in *sin;
72 int (WSAAPI *win_getaddrinfo)(const char *node, const char *service,
73 const struct addrinfo *hints,
74 struct addrinfo **res);
75 HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
76 win_getaddrinfo = GetProcAddress(ws2mod, "getaddrinfo");
78 return win_getaddrinfo(node, service, hints, res);
81 sin = av_mallocz(sizeof(struct sockaddr_in));
84 sin->sin_family = AF_INET;
87 if (!inet_aton(node, &sin->sin_addr)) {
88 if (hints && (hints->ai_flags & AI_NUMERICHOST)) {
92 h = gethostbyname(node);
97 memcpy(&sin->sin_addr, h->h_addr_list[0], sizeof(struct in_addr));
100 if (hints && (hints->ai_flags & AI_PASSIVE)) {
101 sin->sin_addr.s_addr = INADDR_ANY;
103 sin->sin_addr.s_addr = INADDR_LOOPBACK;
106 /* Note: getaddrinfo allows service to be a string, which
107 * should be looked up using getservbyname. */
109 sin->sin_port = htons(atoi(service));
111 ai = av_mallocz(sizeof(struct addrinfo));
118 ai->ai_family = AF_INET;
119 ai->ai_socktype = hints ? hints->ai_socktype : 0;
120 switch (ai->ai_socktype) {
121 case SOCK_STREAM: ai->ai_protocol = IPPROTO_TCP; break;
122 case SOCK_DGRAM: ai->ai_protocol = IPPROTO_UDP; break;
123 default: ai->ai_protocol = 0; break;
126 ai->ai_addr = (struct sockaddr *)sin;
127 ai->ai_addrlen = sizeof(struct sockaddr_in);
128 if (hints && (hints->ai_flags & AI_CANONNAME))
129 ai->ai_canonname = h ? av_strdup(h->h_name) : NULL;
135 void ff_freeaddrinfo(struct addrinfo *res)
138 void (WSAAPI *win_freeaddrinfo)(struct addrinfo *res);
139 HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
140 win_freeaddrinfo = (void (WSAAPI *)(struct addrinfo *res))
141 GetProcAddress(ws2mod, "freeaddrinfo");
142 if (win_freeaddrinfo) {
143 win_freeaddrinfo(res);
148 av_free(res->ai_canonname);
149 av_free(res->ai_addr);
153 int ff_getnameinfo(const struct sockaddr *sa, int salen,
154 char *host, int hostlen,
155 char *serv, int servlen, int flags)
157 const struct sockaddr_in *sin = (const struct sockaddr_in *)sa;
160 int (WSAAPI *win_getnameinfo)(const struct sockaddr *sa, socklen_t salen,
161 char *host, DWORD hostlen,
162 char *serv, DWORD servlen, int flags);
163 HMODULE ws2mod = GetModuleHandle("ws2_32.dll");
164 win_getnameinfo = GetProcAddress(ws2mod, "getnameinfo");
166 return win_getnameinfo(sa, salen, host, hostlen, serv, servlen, flags);
169 if (sa->sa_family != AF_INET)
174 if (host && hostlen > 0) {
175 struct hostent *ent = NULL;
177 if (!(flags & NI_NUMERICHOST))
178 ent = gethostbyaddr((const char *)&sin->sin_addr,
179 sizeof(sin->sin_addr), AF_INET);
182 snprintf(host, hostlen, "%s", ent->h_name);
183 } else if (flags & NI_NAMERQD) {
186 a = ntohl(sin->sin_addr.s_addr);
187 snprintf(host, hostlen, "%d.%d.%d.%d",
188 ((a >> 24) & 0xff), ((a >> 16) & 0xff),
189 ((a >> 8) & 0xff), ( a & 0xff));
193 if (serv && servlen > 0) {
194 struct servent *ent = NULL;
195 if (!(flags & NI_NUMERICSERV))
196 ent = getservbyport(sin->sin_port, flags & NI_DGRAM ? "udp" : "tcp");
199 snprintf(serv, servlen, "%s", ent->s_name);
201 snprintf(serv, servlen, "%d", ntohs(sin->sin_port));
207 const char *ff_gai_strerror(int ecode)
210 case EAI_FAIL : return "A non-recoverable error occurred";
211 case EAI_FAMILY : return "The address family was not recognized or the address length was invalid for the specified family";
212 case EAI_NONAME : return "The name does not resolve for the supplied parameters";
215 return "Unknown error";
219 /* resolve host with also IP address parsing */
220 int resolve_host(struct in_addr *sin_addr, const char *hostname)
223 if (!inet_aton(hostname, sin_addr)) {
225 struct addrinfo *ai, *cur;
226 struct addrinfo hints;
227 memset(&hints, 0, sizeof(hints));
228 hints.ai_family = AF_INET;
229 if (getaddrinfo(hostname, NULL, &hints, &ai))
231 /* getaddrinfo returns a linked list of addrinfo structs.
232 * Even if we set ai_family = AF_INET above, make sure
233 * that the returned one actually is of the correct type. */
234 for (cur = ai; cur; cur = cur->ai_next) {
235 if (cur->ai_family == AF_INET) {
236 *sin_addr = ((struct sockaddr_in *)cur->ai_addr)->sin_addr;
245 hp = gethostbyname(hostname);
248 memcpy(sin_addr, hp->h_addr_list[0], sizeof(struct in_addr));
254 int ff_socket_nonblock(int socket, int enable)
257 return ioctlsocket(socket, FIONBIO, &enable);
260 return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK);
262 return fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) & ~O_NONBLOCK);
265 #endif /* CONFIG_NETWORK */
269 int poll(struct pollfd *fds, nfds_t numfds, int timeout)
273 fd_set exception_set;
279 if (numfds >= FD_SETSIZE) {
287 FD_ZERO(&exception_set);
290 for(i = 0; i < numfds; i++) {
294 if (fds[i].fd >= FD_SETSIZE) {
300 if (fds[i].events & POLLIN) FD_SET(fds[i].fd, &read_set);
301 if (fds[i].events & POLLOUT) FD_SET(fds[i].fd, &write_set);
302 if (fds[i].events & POLLERR) FD_SET(fds[i].fd, &exception_set);
309 /* Hey!? Nothing to poll, in fact!!! */
313 rc = select(n+1, &read_set, &write_set, &exception_set, NULL);
317 tv.tv_sec = timeout / 1000;
318 tv.tv_usec = 1000 * (timeout % 1000);
319 rc = select(n+1, &read_set, &write_set, &exception_set, &tv);
325 for(i = 0; i < (nfds_t) n; i++) {
328 if (FD_ISSET(fds[i].fd, &read_set)) fds[i].revents |= POLLIN;
329 if (FD_ISSET(fds[i].fd, &write_set)) fds[i].revents |= POLLOUT;
330 if (FD_ISSET(fds[i].fd, &exception_set)) fds[i].revents |= POLLERR;
335 #endif /* HAVE_POLL_H */
336 #endif /* CONFIG_FFSERVER */