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