]> git.sesse.net Git - vlc/blob - include/vlc_network.h
Move vlc_inet_pton, vlc_inet_ntop and vlc_poll to vlc_fixups.h
[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 #ifndef VLC_NETWORK_H
28 # define VLC_NETWORK_H
29
30 /**
31  * \file
32  * This file defines interface to communicate with network plug-ins
33  */
34
35 #if defined( WIN32 )
36 #   if !defined(UNDER_CE)
37 #       define _NO_OLDNAMES 1
38 #       include <io.h>
39 #   endif
40 #   include <winsock2.h>
41 #   include <ws2tcpip.h>
42 #   define ENETUNREACH WSAENETUNREACH
43 #   define net_errno (WSAGetLastError())
44 extern const char *net_strerror( int val );
45
46 struct iovec
47 {
48     void  *iov_base;
49     size_t iov_len;
50 };
51
52 struct msghdr
53 {
54     void         *msg_name;
55     size_t        msg_namelen;
56     struct iovec *msg_iov;
57     size_t        msg_iovlen;
58     void         *msg_control;
59     size_t        msg_controllen;
60     int           msg_flags;
61 };
62
63 #   ifndef IPV6_V6ONLY
64 #       define IPV6_V6ONLY 27
65 #   endif
66 #else
67 #   include <sys/socket.h>
68 #   ifdef HAVE_NETINET_IN_H
69 #      include <netinet/in.h>
70 #   endif
71 #   ifdef HAVE_ARPA_INET_H
72 #      include <arpa/inet.h>
73 #   elif defined( SYS_BEOS )
74 #      include <net/netdb.h>
75 #   endif
76 #   include <netdb.h>
77 #   define net_errno errno
78 #endif
79
80 # ifdef __cplusplus
81 extern "C" {
82 # endif
83
84 /* Portable networking layer communication */
85 int net_Socket (vlc_object_t *obj, int family, int socktype, int proto);
86 int net_SetupSocket (int fd);
87
88 #define net_Connect(a, b, c, d, e) __net_Connect(VLC_OBJECT(a), b, c, d, e)
89 VLC_EXPORT( int, __net_Connect, (vlc_object_t *p_this, const char *psz_host, int i_port, int socktype, int protocol) );
90
91 VLC_EXPORT( int *, net_Listen, (vlc_object_t *p_this, const char *psz_host, int i_port, int protocol) );
92
93 #define net_ListenTCP(a, b, c) net_Listen(VLC_OBJECT(a), b, c, IPPROTO_TCP)
94 #define net_ConnectTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
95
96 static inline int __net_ConnectTCP (vlc_object_t *obj, const char *host, int port)
97 {
98     return __net_Connect (obj, host, port, SOCK_STREAM, IPPROTO_TCP);
99 }
100
101
102 VLC_EXPORT( int, net_AcceptSingle, (vlc_object_t *obj, int lfd) );
103
104 VLC_EXPORT( int, net_Accept, ( vlc_object_t *, int * ) );
105 #define net_Accept(a, b) \
106         net_Accept(VLC_OBJECT(a), b)
107
108 #define net_ConnectDgram(a, b, c, d, e ) __net_ConnectDgram(VLC_OBJECT(a), b, c, d, e)
109 VLC_EXPORT( int, __net_ConnectDgram, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim, int proto ) );
110
111 static inline int net_ConnectUDP (vlc_object_t *obj, const char *host, int port, int hlim)
112 {
113     return net_ConnectDgram (obj, host, port, hlim, IPPROTO_UDP);
114 }
115
116 #define net_OpenDgram( a, b, c, d, e, g, h ) __net_OpenDgram(VLC_OBJECT(a), b, c, d, e, g, h)
117 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 ) );
118
119 static inline int net_ListenUDP1 (vlc_object_t *obj, const char *host, int port)
120 {
121     return net_OpenDgram (obj, host, port, NULL, 0, 0, IPPROTO_UDP);
122 }
123
124 VLC_EXPORT( void, net_ListenClose, ( int *fd ) );
125
126 int net_Subscribe (vlc_object_t *obj, int fd, const struct sockaddr *addr,
127                    socklen_t addrlen);
128
129 VLC_EXPORT( int, net_SetCSCov, ( int fd, int sendcov, int recvcov ) );
130
131 /* Functions to read from or write to the networking layer */
132 struct virtual_socket_t
133 {
134     void *p_sys;
135     int (*pf_recv) ( void *, void *, int );
136     int (*pf_send) ( void *, const void *, int );
137 };
138
139 #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f)
140 VLC_EXPORT( ssize_t, __net_Read, ( vlc_object_t *p_this, int fd, const v_socket_t *, void *p_data, size_t i_data, bool b_retry ) );
141
142 #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e)
143 VLC_EXPORT( ssize_t, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const void *p_data, size_t i_data ) );
144
145 #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c)
146 VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
147
148 VLC_EXPORT( ssize_t, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) LIBVLC_FORMAT( 4, 5 ) );
149
150 #define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
151 VLC_EXPORT( ssize_t, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
152
153
154 VLC_EXPORT (int, vlc_inet_pton, (int af, const char *src, void *dst) );
155 VLC_EXPORT (const char *, vlc_inet_ntop, (int af, const void *src,
156                                           char *dst, socklen_t cnt) );
157 struct pollfd;
158 VLC_EXPORT (int, vlc_poll, (struct pollfd *fds, unsigned nfds, int timeout));
159
160
161 #ifdef WIN32
162 /* Microsoft: same semantic, same value, different name... go figure */
163 # define SHUT_RD SD_RECEIVE
164 # define SHUT_WR SD_SEND
165 # define SHUT_RDWR SD_BOTH
166 # define net_Close( fd ) closesocket ((SOCKET)fd)
167 #else
168 #ifdef HAVE_UNISTD_H
169 #include <unistd.h>
170 #endif
171 # define net_Close( fd ) (void)close (fd)
172 #endif
173
174 /* Portable network names/addresses resolution layer */
175
176 /* GAI error codes */
177 # ifndef EAI_BADFLAGS
178 #  define EAI_BADFLAGS -1
179 # endif
180 # ifndef EAI_NONAME
181 #  define EAI_NONAME -2
182 # endif
183 # ifndef EAI_AGAIN
184 #  define EAI_AGAIN -3
185 # endif
186 # ifndef EAI_FAIL
187 #  define EAI_FAIL -4
188 # endif
189 # ifndef EAI_NODATA
190 #  define EAI_NODATA -5
191 # endif
192 # ifndef EAI_FAMILY
193 #  define EAI_FAMILY -6
194 # endif
195 # ifndef EAI_SOCKTYPE
196 #  define EAI_SOCKTYPE -7
197 # endif
198 # ifndef EAI_SERVICE
199 #  define EAI_SERVICE -8
200 # endif
201 # ifndef EAI_ADDRFAMILY
202 #  define EAI_ADDRFAMILY -9
203 # endif
204 # ifndef EAI_MEMORY
205 #  define EAI_MEMORY -10
206 # endif
207 #ifndef EAI_OVERFLOW
208 #  define EAI_OVERFLOW -11
209 #endif
210 # ifndef EAI_SYSTEM
211 #  define EAI_SYSTEM -12
212 # endif
213
214
215 # ifndef NI_MAXHOST
216 #  define NI_MAXHOST 1025
217 #  define NI_MAXSERV 32
218 # endif
219 # define NI_MAXNUMERICHOST 64
220
221 # ifndef NI_NUMERICHOST
222 #  define NI_NUMERICHOST 0x01
223 #  define NI_NUMERICSERV 0x02
224 #  define NI_NOFQDN      0x04
225 #  define NI_NAMEREQD    0x08
226 #  define NI_DGRAM       0x10
227 # endif
228
229 # ifndef HAVE_STRUCT_ADDRINFO
230 struct addrinfo
231 {
232     int ai_flags;
233     int ai_family;
234     int ai_socktype;
235     int ai_protocol;
236     size_t ai_addrlen;
237     struct sockaddr *ai_addr;
238     char *ai_canonname;
239     struct addrinfo *ai_next;
240 };
241 #  define AI_PASSIVE     1
242 #  define AI_CANONNAME   2
243 #  define AI_NUMERICHOST 4
244 # endif /* if !HAVE_STRUCT_ADDRINFO */
245
246 #ifndef AI_NUMERICSERV
247 # define AI_NUMERICSERV 0
248 #endif
249
250 VLC_EXPORT( const char *, vlc_gai_strerror, ( int ) );
251 VLC_EXPORT( int, vlc_getnameinfo, ( const struct sockaddr *, int, char *, int, int *, int ) );
252 VLC_EXPORT( int, vlc_getaddrinfo, ( vlc_object_t *, const char *, int, const struct addrinfo *, struct addrinfo ** ) );
253 VLC_EXPORT( void, vlc_freeaddrinfo, ( struct addrinfo * ) );
254
255
256 static inline bool
257 net_SockAddrIsMulticast (const struct sockaddr *addr, socklen_t len)
258 {
259     switch (addr->sa_family)
260     {
261 #ifdef IN_MULTICAST
262         case AF_INET:
263         {
264             const struct sockaddr_in *v4 = (const struct sockaddr_in *)addr;
265             if ((size_t)len < sizeof (*v4))
266                 return false;
267             return IN_MULTICAST (ntohl (v4->sin_addr.s_addr)) != 0;
268         }
269 #endif
270
271 #ifdef IN6_IS_ADDR_MULTICAST
272         case AF_INET6:
273         {
274             const struct sockaddr_in6 *v6 = (const struct sockaddr_in6 *)addr;
275             if ((size_t)len < sizeof (*v6))
276                 return false;
277             return IN6_IS_ADDR_MULTICAST (&v6->sin6_addr) != 0;
278         }
279 #endif
280     }
281
282     return false;
283 }
284
285
286 static inline int net_GetSockAddress( int fd, char *address, int *port )
287 {
288     struct sockaddr_storage addr;
289     socklen_t addrlen = sizeof( addr );
290
291     return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
292         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
293                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
294         ? VLC_EGENERIC : 0;
295 }
296
297 static inline int net_GetPeerAddress( int fd, char *address, int *port )
298 {
299     struct sockaddr_storage addr;
300     socklen_t addrlen = sizeof( addr );
301
302     return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
303         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
304                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
305         ? VLC_EGENERIC : 0;
306 }
307
308 static inline uint16_t net_GetPort (const struct sockaddr *addr)
309 {
310     switch (addr->sa_family)
311     {
312 #ifdef AF_INET6
313         case AF_INET6:
314             return ((const struct sockaddr_in6 *)addr)->sin6_port;
315 #endif
316         case AF_INET:
317             return ((const struct sockaddr_in *)addr)->sin_port;
318     }
319     return 0;
320 }
321
322 static inline void net_SetPort (struct sockaddr *addr, uint16_t port)
323 {
324     switch (addr->sa_family)
325     {
326 #ifdef AF_INET6
327         case AF_INET6:
328             ((struct sockaddr_in6 *)addr)->sin6_port = port;
329         break;
330 #endif
331         case AF_INET:
332             ((struct sockaddr_in *)addr)->sin_port = port;
333         break;
334     }
335 }
336 # ifdef __cplusplus
337 }
338 # endif
339
340 #endif