]> git.sesse.net Git - vlc/blob - include/network.h
* modules/demux/mpeg/m4v.c,h264.c: fixed detection and use p_demux->b_force.
[vlc] / include / network.h
1 /*****************************************************************************
2  * 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 #ifndef __VLC_NETWORK_H
27 # define __VLC_NETWORK_H
28
29 #if defined( WIN32 )
30 #   if defined(UNDER_CE) && defined(sockaddr_storage)
31 #       undef sockaddr_storage
32 #   endif
33 #   if defined(UNDER_CE)
34 #       define HAVE_STRUCT_ADDRINFO
35 #   else
36 #       include <io.h>
37 #   endif
38 #   include <winsock2.h>
39 #   include <ws2tcpip.h>
40 #   define ENETUNREACH WSAENETUNREACH
41 #   define net_errno (WSAGetLastError())
42 extern const char *net_strerror( int val );
43 #else
44 #   if HAVE_SYS_SOCKET_H
45 #      include <sys/socket.h>
46 #   endif
47 #   if HAVE_NETINET_IN_H
48 #      include <netinet/in.h>
49 #   endif
50 #   if HAVE_ARPA_INET_H
51 #      include <arpa/inet.h>
52 #   elif defined( SYS_BEOS )
53 #      include <net/netdb.h>
54 #   endif
55 #   include <netdb.h>
56 #   define net_errno errno
57 #   define net_strerror strerror
58 #endif
59
60 # ifdef __cplusplus
61 extern "C" {
62 # endif
63
64 /*****************************************************************************
65  * network_socket_t: structure passed to a network plug-in to define the
66  *                   kind of socket we want
67  *****************************************************************************/
68 struct network_socket_t
69 {
70     const char *psz_bind_addr;
71     int i_bind_port;
72
73     const char *psz_server_addr;
74     int i_server_port;
75
76     int i_ttl;
77
78     int v6only;
79
80     /* Return values */
81     int i_handle;
82     size_t i_mtu;
83 };
84
85 /* Portable networking layer communication */
86 #define net_ConnectTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
87 #define net_OpenTCP(a, b, c) __net_ConnectTCP(VLC_OBJECT(a), b, c)
88 VLC_EXPORT( int, __net_ConnectTCP, ( vlc_object_t *p_this, const char *psz_host, int i_port ) );
89
90 #define net_ListenTCP(a, b, c) __net_ListenTCP(VLC_OBJECT(a), b, c)
91 VLC_EXPORT( int *, __net_ListenTCP, ( vlc_object_t *, const char *, int ) );
92
93 #define net_Accept(a, b, c) __net_Accept(VLC_OBJECT(a), b, c)
94 VLC_EXPORT( int, __net_Accept, ( vlc_object_t *, int *, mtime_t ) );
95
96 #define net_ConnectUDP(a, b, c, d ) __net_ConnectUDP(VLC_OBJECT(a), b, c, d)
97 VLC_EXPORT( int, __net_ConnectUDP, ( vlc_object_t *p_this, const char *psz_host, int i_port, int hlim ) );
98
99 #define net_OpenUDP(a, b, c, d, e ) __net_OpenUDP(VLC_OBJECT(a), b, c, d, e)
100 VLC_EXPORT( int, __net_OpenUDP, ( vlc_object_t *p_this, const char *psz_bind, int i_bind, const char *psz_server, int i_server ) );
101
102 VLC_EXPORT( void, net_Close, ( int fd ) );
103 VLC_EXPORT( void, net_ListenClose, ( int *fd ) );
104
105 VLC_EXPORT( int, net_SetDSCP, ( int fd, uint8_t dscp ) );
106
107 /* Functions to read from or write to the networking layer */
108 struct virtual_socket_t
109 {
110     void *p_sys;
111     int (*pf_recv) ( void *, void *, int );
112     int (*pf_send) ( void *, const void *, int );
113 };
114
115 #define net_Read(a,b,c,d,e,f) __net_Read(VLC_OBJECT(a),b,c,d,e,f)
116 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 ) );
117
118 #define net_ReadNonBlock(a,b,c,d,e,f) __net_ReadNonBlock(VLC_OBJECT(a),b,c,d,e,f)
119 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 ) );
120
121 #define net_Select(a,b,c,d,e,f,g) __net_Select(VLC_OBJECT(a),b,c,d,e,f,g)
122 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 ) );
123
124 #define net_Write(a,b,c,d,e) __net_Write(VLC_OBJECT(a),b,c,d,e)
125 VLC_EXPORT( int, __net_Write, ( vlc_object_t *p_this, int fd, const v_socket_t *, const uint8_t *p_data, int i_data ) );
126
127 #define net_Gets(a,b,c) __net_Gets(VLC_OBJECT(a),b,c)
128 VLC_EXPORT( char *, __net_Gets, ( vlc_object_t *p_this, int fd, const v_socket_t * ) );
129
130 VLC_EXPORT( int, net_Printf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, ... ) );
131
132 #define net_vaPrintf(a,b,c,d,e) __net_vaPrintf(VLC_OBJECT(a),b,c,d,e)
133 VLC_EXPORT( int, __net_vaPrintf, ( vlc_object_t *p_this, int fd, const v_socket_t *, const char *psz_fmt, va_list args ) );
134
135
136 #if !HAVE_INET_PTON
137 /* only in core, so no need for C++ extern "C" */
138 int inet_pton(int af, const char *src, void *dst);
139 #endif
140
141
142 /*****************************************************************************
143  * net_StopRecv/Send
144  *****************************************************************************
145  * Wrappers for shutdown()
146  *****************************************************************************/
147 #if defined (SHUT_WR)
148 /* the standard way */
149 # define net_StopSend( fd ) (void)shutdown( fd, SHUT_WR )
150 # define net_StopRecv( fd ) (void)shutdown( fd, SHUT_RD )
151 #elif defined (SD_SEND)
152 /* the Microsoft seemingly-purposedly-different-for-the-sake-of-it way */
153 # define net_StopSend( fd ) (void)shutdown( fd, SD_SEND )
154 # define net_StopRecv( fd ) (void)shutdown( fd, SD_RECEIVE )
155 #else
156 # ifndef SYS_BEOS /* R5 just doesn't have a working shutdown() */
157 #  warning FIXME: implement shutdown on your platform!
158 # endif
159 # define net_StopSend( fd ) (void)0
160 # define net_StopRecv( fd ) (void)0
161 #endif
162
163 /* Portable network names/addresses resolution layer */
164
165 /* GAI error codes */
166 # ifndef EAI_BADFLAGS
167 #  define EAI_BADFLAGS -1
168 # endif
169 # ifndef EAI_NONAME
170 #  define EAI_NONAME -2
171 # endif
172 # ifndef EAI_AGAIN
173 #  define EAI_AGAIN -3
174 # endif
175 # ifndef EAI_FAIL
176 #  define EAI_FAIL -4
177 # endif
178 # ifndef EAI_NODATA
179 #  define EAI_NODATA -5
180 # endif
181 # ifndef EAI_FAMILY
182 #  define EAI_FAMILY -6
183 # endif
184 # ifndef EAI_SOCKTYPE
185 #  define EAI_SOCKTYPE -7
186 # endif
187 # ifndef EAI_SERVICE
188 #  define EAI_SERVICE -8
189 # endif
190 # ifndef EAI_ADDRFAMILY
191 #  define EAI_ADDRFAMILY -9
192 # endif
193 # ifndef EAI_MEMORY
194 #  define EAI_MEMORY -10
195 # endif
196 # ifndef EAI_SYSTEM
197 #  define EAI_SYSTEM -11
198 # endif
199
200
201 # ifndef NI_MAXHOST
202 #  define NI_MAXHOST 1025
203 #  define NI_MAXSERV 32
204 # endif
205 # define NI_MAXNUMERICHOST 64
206
207 # ifndef NI_NUMERICHOST
208 #  define NI_NUMERICHOST 0x01
209 #  define NI_NUMERICSERV 0x02
210 #  define NI_NOFQDN      0x04
211 #  define NI_NAMEREQD    0x08
212 #  define NI_DGRAM       0x10
213 # endif
214
215 # ifndef HAVE_STRUCT_ADDRINFO
216 struct addrinfo
217 {
218     int ai_flags;
219     int ai_family;
220     int ai_socktype;
221     int ai_protocol;
222     size_t ai_addrlen;
223     struct sockaddr *ai_addr;
224     char *ai_canonname;
225     struct addrinfo *ai_next;
226 };
227 #  define AI_PASSIVE     1
228 #  define AI_CANONNAME   2
229 #  define AI_NUMERICHOST 4
230 # endif /* if !HAVE_STRUCT_ADDRINFO */
231
232 VLC_EXPORT( const char *, vlc_gai_strerror, ( int ) );
233 VLC_EXPORT( int, vlc_getnameinfo, ( const struct sockaddr *, int, char *, int, int *, int ) );
234 VLC_EXPORT( int, vlc_getaddrinfo, ( vlc_object_t *, const char *, int, const struct addrinfo *, struct addrinfo ** ) );
235 VLC_EXPORT( void, vlc_freeaddrinfo, ( struct addrinfo * ) );
236
237 /*****************************************************************************
238  * net_AddressIsMulticast: This function returns VLC_FALSE if the psz_addr does
239  * not specify a multicast address or if the address is not a valid address.
240  *****************************************************************************/
241 static inline vlc_bool_t net_AddressIsMulticast( vlc_object_t *p_object, const char *psz_addr )
242 {
243     struct addrinfo hints, *res;
244     vlc_bool_t b_multicast = VLC_FALSE;
245     int i;
246
247     memset( &hints, 0, sizeof( hints ) );
248     hints.ai_socktype = SOCK_DGRAM; /* UDP */
249     hints.ai_flags = AI_NUMERICHOST;
250
251     i = vlc_getaddrinfo( p_object, psz_addr, 0,
252                          &hints, &res );
253     if( i )
254     {
255         msg_Err( p_object, "invalid address for net_AddressIsMulticast: %s : %s",
256                  psz_addr, vlc_gai_strerror( i ) );
257         return VLC_FALSE;
258     }
259
260     if( res->ai_family == AF_INET )
261     {
262 #if !defined( SYS_BEOS )
263         struct sockaddr_in *v4 = (struct sockaddr_in *) res->ai_addr;
264         b_multicast = ( ntohl( v4->sin_addr.s_addr ) >= 0xe0000000 )
265                    && ( ntohl( v4->sin_addr.s_addr ) <= 0xefffffff );
266 #endif
267     }
268 #if defined( WIN32 ) || defined( HAVE_GETADDRINFO )
269     else if( res->ai_family == AF_INET6 )
270     {
271         struct sockaddr_in6 *v6 = (struct sockaddr_in6 *)res->ai_addr;
272         b_multicast = IN6_IS_ADDR_MULTICAST( &v6->sin6_addr );
273     }
274 #endif
275
276     vlc_freeaddrinfo( res );
277     return b_multicast;
278 }
279
280 static inline int net_GetSockAddress( int fd, char *address, int *port )
281 {
282     struct sockaddr_storage addr;
283     socklen_t addrlen = sizeof( addr );
284
285     return getsockname( fd, (struct sockaddr *)&addr, &addrlen )
286         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
287                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
288         ? VLC_EGENERIC : 0;
289 }
290
291 static inline int net_GetPeerAddress( int fd, char *address, int *port )
292 {
293     struct sockaddr_storage addr;
294     socklen_t addrlen = sizeof( addr );
295
296     return getpeername( fd, (struct sockaddr *)&addr, &addrlen )
297         || vlc_getnameinfo( (struct sockaddr *)&addr, addrlen, address,
298                             NI_MAXNUMERICHOST, port, NI_NUMERICHOST )
299         ? VLC_EGENERIC : 0;
300 }
301
302 # ifdef __cplusplus
303 }
304 # endif
305
306 #endif