]> git.sesse.net Git - vlc/blob - include/vlc_network.h
Export inet_pton replacement
[vlc] / include / vlc_network.h
1 /*****************************************************************************
2  * vlc_network.h: interface to communicate with network plug-ins
3  *****************************************************************************
4  * Copyright (C) 2002-2005 the VideoLAN team
5  * Copyright © 2006-2007 Rémi Denis-Courmont
6  * $Id$
7  *
8  * Authors: Christophe Massiot <massiot@via.ecp.fr>
9  *          Laurent Aimar <fenrir@via.ecp.fr>
10  *          Rémi Denis-Courmont <rem # videolan.org>
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25  *****************************************************************************/
26
27 #if !defined( __LIBVLC__ )
28   #error You are not libvlc or one of its plugins. You cannot include this file
29 #endif
30
31 #ifndef __VLC_NETWORK_H
32 # define __VLC_NETWORK_H
33
34 #if defined( WIN32 )
35 #   if defined(UNDER_CE) && defined(sockaddr_storage)
36 #       undef sockaddr_storage
37 #   endif
38 #   if defined(UNDER_CE)
39 #       define HAVE_STRUCT_ADDRINFO
40 #   else
41 #       define _NO_OLDNAMES 1
42 #       include <io.h>
43 #   endif
44 #   include <winsock2.h>
45 #   include <ws2tcpip.h>
46 #   define ENETUNREACH WSAENETUNREACH
47 #   define net_errno (WSAGetLastError())
48 extern const char *net_strerror( int val );
49 #else
50 #   if HAVE_SYS_SOCKET_H
51 #      include <sys/socket.h>
52 #   endif
53 #   if HAVE_NETINET_IN_H
54 #      include <netinet/in.h>
55 #   endif
56 #   if HAVE_ARPA_INET_H
57 #      include <arpa/inet.h>
58 #   elif defined( SYS_BEOS )
59 #      include <net/netdb.h>
60 #   endif
61 #   include <netdb.h>
62 #   define net_errno errno
63 #   define net_strerror strerror
64 #endif
65
66 # ifdef __cplusplus
67 extern "C" {
68 # endif
69
70 /* Portable networking layer communication */
71 int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
72
73 #define net_ConnectTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
74 #define net_OpenTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
75 VLC_EXPORT( int, __net_ConnectTCP, ( vlc_object_t *p_this, const char *psz_host, int i_port ) );
76
77 int *net_Listen (vlc_object_t *p_this, const char *psz_host, int i_port,
78                                 int family, int socktype, int protocol);
79 VLC_EXPORT( int, net_ListenSingle, (vlc_object_t *p_this, const char *psz_host, int i_port, int family, int socktype, int protocol) );
80
81 #define net_ListenTCP(a, b, c) __net_ListenTCP(VLC_OBJECT(a), b, c)
82 VLC_EXPORT( int *, __net_ListenTCP, ( vlc_object_t *, const char *, int ) );
83
84 #define net_Accept(a, b, c) __net_Accept(VLC_OBJECT(a), b, c)
85 VLC_EXPORT( int, __net_Accept, ( vlc_object_t *, int *, mtime_t ) );
86
87 #define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
88 VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) );
89
90 static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim)
91 {
92     return net_ConnectDgram (obj, host, port, hlim, 0);
93 }
94
95 static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port)
96 {
97     return net_ListenSingle (obj, host, port, AF_UNSPEC, SOCK_DGRAM, 0);
98 }
99
100 #define net_OpenDgram( a, b, c, d, e, g, h ) __net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g, h)
101 VLC_EXPORT( int, __net_OpenDgram, ( vlc_object_t *p_this, const char *psz_bind, int i_bind, const char *psz_server, int i_server, int family, int proto ) );
102
103 VLC_EXPORT( void, net_Close, ( int fd ) );
104 VLC_EXPORT( void, net_ListenClose, ( int *fd ) );
105
106 VLC_EXPORT( int, net_SetDSCP, ( int fd, uint8_t dscp ) );
107 int net_Subscribe (vlc_object_t *obj, int fd, const struct sockaddr *addr,
108                    socklen_t addrlen);
109
110 /* Functions to read from or write to the networking layer */
111 struct virtual_socket_t
112 {
113     void *p_sys;
114     int (*pf_recv) ( void *, void *, int );
115     int (*pf_send) ( void *, const void *, int );
116 };
117
118 #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f)
119 VLC_EXPORT( int, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, int i_data, vlc_bool_t b_retry ) );
120
121 #define net_ReadNonBlock(a,b,c,d,e,f) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e,f)
122 VLC_EXPORT( int, __net_ReadNonBlock, ( vlc_object_t *p_this, int fd, const v_socket_t *, uint8_t *p_data, int i_data, mtime_t i_wait ) );
123
124 #define net_Select(a,b,c,d,e,f) __net_Select(VLC_OBJECT(a),b,c,d,e,f)
125 VLC_EXPORT( int, __net_Select, ( vlc_object_t *p_this, const int *pi_fd, int i_fd, uint8_t *p_data, int i_data, mtime_t i_wait ) );
126
127 #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e)
128 VLC_EXPORT( int, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const uint8_t *p_data, int i_data ) );
129
130 #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c)
131 VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
132
133 VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) );
134
135 #define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
136 VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
137
138
139 #ifndef HAVE_INET_PTON
140 /* only in core, so no need for C++ extern "C" */
141 VLC_EXPORT (int, inet_pton, (int af, const char *src, void *dst) );
142 #endif
143
144 #ifndef HAVE_POLL
145 enum
146 {
147     POLLIN=1,
148     POLLOUT=2,
149     POLLPRI=4,
150     POLLERR=8,  // unsupported stub
151     POLLHUP=16, // unsupported stub
152     POLLNVAL=32 // unsupported stub
153 };
154
155 struct pollfd
156 {
157         int fd;
158         int events;
159         int revents;
160 };
161
162 int poll (struct pollfd *fds, unsigned nfds, int timeout);
163 #endif
164
165
166 /*****************************************************************************
167  * net_StopRecv/Send
168  *****************************************************************************
169  * Wrappers for shutdown()
170  *****************************************************************************/
171 #if defined (SHUT_WR)
172 /* the standard way */
173 # define net_StopSend( fd ) (void)shutdown( fd, SHUT_WR )
174 # define net_StopRecv( fd ) (void)shutdown( fd, SHUT_RD )
175 #elif defined (SD_SEND)
176 /* the Microsoft seemingly-purposedly-different-for-the-sake-of-it way */
177 # define net_StopSend( fd ) (void)shutdown( fd, SD_SEND )
178 # define net_StopRecv( fd ) (void)shutdown( fd, SD_RECEIVE )
179 #else
180 # ifndef SYS_BEOS /* R5 just doesn't have a working shutdown() */
181 #  warning FIXME: implement shutdown on your platform!
182 # endif
183 # define net_StopSend( fd ) (void)0
184 # define net_StopRecv( fd ) (void)0
185 #endif
186
187 /* Portable network names/addresses resolution layer */
188
189 /* GAI error codes */
190 # ifndef EAI_BADFLAGS
191 #  define EAI_BADFLAGS -1
192 # endif
193 # ifndef EAI_NONAME
194 #  define EAI_NONAME -2
195 # endif
196 # ifndef EAI_AGAIN
197 #  define EAI_AGAIN -3
198 # endif
199 # ifndef EAI_FAIL
200 #  define EAI_FAIL -4
201 # endif
202 # ifndef EAI_NODATA
203 #  define EAI_NODATA -5
204 # endif
205 # ifndef EAI_FAMILY
206 #  define EAI_FAMILY -6
207 # endif
208 # ifndef EAI_SOCKTYPE
209 #  define EAI_SOCKTYPE -7
210 # endif
211 # ifndef EAI_SERVICE
212 #  define EAI_SERVICE -8
213 # endif
214 # ifndef EAI_ADDRFAMILY
215 #  define EAI_ADDRFAMILY -9
216 # endif
217 # ifndef EAI_MEMORY
218 #  define EAI_MEMORY -10
219 # endif
220 # ifndef EAI_SYSTEM
221 #  define EAI_SYSTEM -11
222 # endif
223
224
225 # ifndef NI_MAXHOST
226 #  define NI_MAXHOST 1025
227 #  define NI_MAXSERV 32
228 # endif
229 # define NI_MAXNUMERICHOST 64
230
231 # ifndef NI_NUMERICHOST
232 #  define NI_NUMERICHOST 0x01
233 #  define NI_NUMERICSERV 0x02
234 #  define NI_NOFQDN      0x04
235 #  define NI_NAMEREQD    0x08
236 #  define NI_DGRAM       0x10
237 # endif
238
239 # ifndef HAVE_STRUCT_ADDRINFO
240 struct addrinfo
241 {
242     int ai_flags;
243     int ai_family;
244     int ai_socktype;
245     int ai_protocol;
246     size_t ai_addrlen;
247     struct sockaddr *ai_addr;
248     char *ai_canonname;
249     struct addrinfo *ai_next;
250 };
251 #  define AI_PASSIVE     1
252 #  define AI_CANONNAME   2
253 #  define AI_NUMERICHOST 4
254 # endif /* if !HAVE_STRUCT_ADDRINFO */
255
256 VLC_EXPORT( const char *, vlc_gai_strerror, ( int ) );
257 VLC_EXPORT( int, vlc_getnameinfo, ( const struct sockaddr *, int, char *, int, int *, int ) );
258 VLC_EXPORT( int, vlc_getaddrinfo, ( vlc_object_t *, const char *, int, const struct addrinfo *, struct addrinfo ** ) );
259 VLC_EXPORT( void, vlc_freeaddrinfo, ( struct addrinfo * ) );
260
261
262 static inline vlc_bool_t
263 net_SockAddrIsMulticast (const struct sockaddr *addr, socklen_t len)
264 {
265     switch (addr->sa_family)
266     {
267 #ifdef IN_MULTICAST
268         case AF_INET:
269         {
270             struct sockaddr_in *v4 = (struct sockaddr_in *)addr;
271             if ((size_t)len < sizeof (*v4))
272                 return VLC_FALSE;
273             return IN_MULTICAST (ntohl (v4->sin_addr.s_addr)) != 0;
274         }
275 #endif
276
277 #ifdef IN6_IS_ADDR_MULTICAST
278         case AF_INET6:
279         {
280             struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)addr;
281             if ((size_t)len < sizeof (*v6))
282                 return VLC_FALSE;
283             return IN6_IS_ADDR_MULTICAST (&v6->sin6_addr) != 0;
284         }
285 #endif
286     }
287
288     return VLC_FALSE;
289 }
290
291
292
293 /**
294  * net_AddressIsMulticast
295  * @return VLC_FALSE iff the psz_addr does not specify a multicast address,
296  * or the address is not a valid address.
297  */
298 static inline vlc_bool_t net_AddressIsMulticast( vlc_object_t *p_object, const char *psz_addr )
299 {
300     struct addrinfo hints, *res;
301
302     memset (&hints, 0, sizeof (hints));
303     hints.ai_socktype = SOCK_DGRAM; /* UDP */
304     hints.ai_flags = AI_NUMERICHOST;
305
306     int i = vlc_getaddrinfo (p_object, psz_addr, 0,
307                              &hints, &res);
308     if (i)
309     {
310         msg_Err (p_object, "invalid address \"%s\" for net_AddressIsMulticast (%s)",
311                  psz_addr, vlc_gai_strerror (i));
312         return VLC_FALSE;
313     }
314
315     vlc_bool_t b = net_SockAddrIsMulticast (res->ai_addr, res->ai_addrlen);
316     vlc_freeaddrinfo (res);
317     return b;
318 }
319
320 static inline int net_GetSockAddress( int fd, char *address, int *port )
321 {
322     struct sockaddr_storage addr;
323     socklen_t addrlen = sizeof( addr );
324
325     return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
326         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
327                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
328         ? VLC_EGENERIC : 0;
329 }
330
331 static inline int net_GetPeerAddress( int fd, char *address, int *port )
332 {
333     struct sockaddr_storage addr;
334     socklen_t addrlen = sizeof( addr );
335
336     return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
337         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
338                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
339         ? VLC_EGENERIC : 0;
340 }
341
342 static inline uint16_t net_GetPort (const struct sockaddr *addr)
343 {
344     switch (addr->sa_family)
345     {
346 #ifdef AF_INET6
347         case AF_INET6:
348             return ((const struct sockaddr_in6 *)addr)->sin6_port;
349 #endif
350         case AF_INET:
351             return ((const struct sockaddr_in *)addr)->sin_port;
352     }
353     return 0;
354 }
355
356 static inline void net_SetPort (struct sockaddr *addr, uint16_t port)
357 {
358     switch (addr->sa_family)
359     {
360 #ifdef AF_INET6
361         case AF_INET6:
362             ((struct sockaddr_in6 *)addr)->sin6_port = port;
363             break;
364 #endif
365         case AF_INET:
366             ((struct sockaddr_in *)addr)->sin_port = port;
367             break;
368     }
369 }
370 # ifdef __cplusplus
371 }
372 # endif
373
374 #endif