]> git.sesse.net Git - vlc/blob - modules/misc/network/ipv6.c
* ./modules/audio_output/oss.c: compilation fixes.
[vlc] / modules / misc / network / ipv6.c
1 /*****************************************************************************
2  * ipv6.c: IPv6 network abstraction layer
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: ipv6.c,v 1.2 2002/08/08 00:35:11 sam Exp $
6  *
7  * Authors: Alexis Guillard <alexis.guillard@bt.com>
8  *          Christophe Massiot <massiot@via.ecp.fr>
9  *          Remco Poortinga <poortinga@telin.nl>
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., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
24  *****************************************************************************/
25
26 /*****************************************************************************
27  * Preamble
28  *****************************************************************************/
29 #include <stdlib.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <string.h>
33 #include <errno.h>
34 #include <fcntl.h>
35
36 #include <vlc/vlc.h>
37
38 #ifdef HAVE_UNISTD_H
39 #   include <unistd.h>
40 #elif defined( _MSC_VER ) && defined( _WIN32 )
41 #   include <io.h>
42 #endif
43
44 #ifdef WIN32
45 #   include <winsock2.h>
46 #   include <ws2tcpip.h>
47 #elif !defined( SYS_BEOS ) && !defined( SYS_NTO )
48 #   include <netdb.h>                                         /* hostent ... */
49 #   include <sys/socket.h>
50 #   include <netinet/in.h>
51 #   include <net/if.h>
52 #   ifdef HAVE_ARPA_INET_H
53 #       include <arpa/inet.h>                    /* inet_ntoa(), inet_aton() */
54 #   endif
55 #endif
56
57 #include "network.h"
58
59 #if defined(WIN32)
60 static const struct in6_addr in6addr_any = {{IN6ADDR_ANY_INIT}};
61 /* the following will have to be removed when w32api defines them */
62 #ifndef IPPROTO_IPV6
63 #   define IPPROTO_IPV6 41 
64 #endif
65 #ifndef IPV6_JOIN_GROUP
66 #   define IPV6_JOIN_GROUP 20
67 #endif
68 #endif
69
70 /*****************************************************************************
71  * Local prototypes
72  *****************************************************************************/
73 static int Open( vlc_object_t * );
74
75 /*****************************************************************************
76  * Module descriptor
77  *****************************************************************************/
78 vlc_module_begin();
79     set_description( _("IPv6 network abstraction layer") );
80     set_capability( "network", 40 );
81     set_callbacks( Open, NULL );
82 vlc_module_end();
83
84 /*****************************************************************************
85  * BuildAddr: utility function to build a struct sockaddr_in6
86  *****************************************************************************/
87 static int BuildAddr( struct sockaddr_in6 * p_socket,
88                       char * psz_address, int i_port )
89 {
90     char * psz_multicast_interface = "";
91
92 #if defined(WIN32)
93     /* Try to get getaddrinfo() and freeaddrinfo() from wship6.dll */
94     typedef int (CALLBACK * GETADDRINFO) ( const char *nodename,
95                                             const char *servname,
96                                             const struct addrinfo *hints,
97                                             struct addrinfo **res );
98     typedef void (CALLBACK * FREEADDRINFO) ( struct addrinfo FAR *ai );
99
100     struct addrinfo hints, *res;
101     GETADDRINFO _getaddrinfo = NULL;
102     FREEADDRINFO _freeaddrinfo = NULL;
103
104     HINSTANCE wship6_dll = LoadLibrary("wship6.dll");
105     if( wship6_dll )
106     {
107         _getaddrinfo = (GETADDRINFO) GetProcAddress( wship6_dll,
108                                                      "getaddrinfo" );
109         _freeaddrinfo = (FREEADDRINFO) GetProcAddress( wship6_dll,
110                                                        "freeaddrinfo" );
111     }
112     if( !_getaddrinfo || !_freeaddrinfo )
113     {
114         /* msg_Err( p_this, "no IPv6 stack installed" ); */
115         if( wship6_dll ) FreeLibrary( wship6_dll );
116         return( -1 );
117     }
118 #endif
119
120     /* Reset struct */
121     memset( p_socket, 0, sizeof( struct sockaddr_in6 ) );
122     p_socket->sin6_family = AF_INET6;                              /* family */
123     p_socket->sin6_port = htons( i_port );
124     if( !*psz_address )
125     {
126         p_socket->sin6_addr = in6addr_any;
127     }
128     else if( psz_address[0] == '['
129               && psz_address[strlen(psz_address) - 1] == ']' )
130     {
131         psz_address++;
132         /* see if there is an interface name in there... */
133         if( (psz_multicast_interface = strchr(psz_address, '%')) != NULL )
134         {
135             *psz_multicast_interface = '\0';
136             psz_multicast_interface++;
137 #if 0
138             msg_Dbg( p_this, "Interface name specified: \"%s\"",
139                              psz_multicast_interface );
140 #endif
141             /* now convert that interface name to an index */
142 #if !defined( WIN32 )
143             p_socket->sin6_scope_id = if_nametoindex(psz_multicast_interface);
144 #else
145             /* FIXME: for now we always use the default interface */
146             p_socket->sin6_scope_id = 0;
147 #endif
148 #if 0
149             msg_Warn( p_this, " = #%i\n", p_socket->sin6_scope_id );
150 #endif
151         }
152         psz_address[strlen(psz_address) - 1] = '\0' ;
153
154 #if !defined( WIN32 )
155         inet_pton(AF_INET6, psz_address, &p_socket->sin6_addr.s6_addr); 
156
157 #else
158         memset(&hints, 0, sizeof(hints));
159         hints.ai_family = AF_INET6;
160         hints.ai_flags = AI_NUMERICHOST;
161
162         if( _getaddrinfo( psz_address, NULL, &hints, &res ) )
163         {
164             FreeLibrary( wship6_dll );
165             return( -1 );
166         }
167         memcpy( &p_socket->sin6_addr,
168                 &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
169                 sizeof(struct in6_addr) );
170         _freeaddrinfo( res );
171
172 #endif
173     }
174     else
175     {
176 #ifdef HAVE_GETHOSTBYNAME2
177         struct hostent    * p_hostent;
178
179         /* We have a fqdn, try to find its address */
180         if ( (p_hostent = gethostbyname2( psz_address, AF_INET6 )) == NULL )
181         {
182 #if 0
183             intf_ErrMsg( "ipv6 error: unknown host %s", psz_address );
184 #endif
185             return( -1 );
186         }
187
188         /* Copy the first address of the host in the socket address */
189         memcpy( &p_socket->sin6_addr, p_hostent->h_addr_list[0],
190                  p_hostent->h_length );
191
192 #elif defined(WIN32)
193         if( _getaddrinfo( psz_address, NULL, &hints, &res ) )
194         {
195             FreeLibrary( wship6_dll );
196             return( -1 );
197         }
198         memcpy( &p_socket->sin6_addr,
199                 &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
200                 sizeof(struct in6_addr) );
201         _freeaddrinfo( res );
202
203 #else
204 #if 0
205         intf_ErrMsg( "ipv6 error: IPv6 address %s is invalid", psz_address );
206 #endif
207         return( -1 );
208 #endif
209     }
210
211 #if defined(WIN32)
212     FreeLibrary( wship6_dll );
213 #endif
214
215     return( 0 );
216 }
217
218 /*****************************************************************************
219  * OpenUDP: open a UDP socket
220  *****************************************************************************
221  * psz_bind_addr, i_bind_port : address and port used for the bind()
222  *   system call. If psz_bind_addr == NULL, the socket is bound to
223  *   in6addr_any and broadcast reception is enabled. If i_bind_port == 0,
224  *   1234 is used. If psz_bind_addr is a multicast (class D) address,
225  *   join the multicast group.
226  * psz_server_addr, i_server_port : address and port used for the connect()
227  *   system call. It can avoid receiving packets from unauthorized IPs.
228  *   Its use leads to great confusion and is currently discouraged.
229  * This function returns -1 in case of error.
230  *****************************************************************************/
231 static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
232 {
233     char * psz_bind_addr = p_socket->psz_bind_addr;
234     int i_bind_port = p_socket->i_bind_port;
235     char * psz_server_addr = p_socket->psz_server_addr;
236     int i_server_port = p_socket->i_server_port;
237
238     int i_handle, i_opt;
239     unsigned int i_opt_size;
240     struct sockaddr_in6 sock;
241
242     /* Open a SOCK_DGRAM (UDP) socket, in the AF_INET6 domain, automatic (0)
243      * protocol */
244     if( (i_handle = socket( AF_INET6, SOCK_DGRAM, 0 )) == -1 )
245     {
246         msg_Err( p_this, "cannot create socket (%s)", strerror(errno) );
247         return( -1 );
248     }
249
250     /* We may want to reuse an already used socket */
251     i_opt = 1;
252     if( setsockopt( i_handle, SOL_SOCKET, SO_REUSEADDR,
253                     (void *) &i_opt, sizeof( i_opt ) ) == -1 )
254     {
255         msg_Err( p_this, "cannot configure socket (SO_REUSEADDR: %s)",
256                          strerror(errno) );
257         close( i_handle );
258         return( -1 );
259     }
260
261     /* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s) to avoid
262      * packet loss caused by scheduling problems */
263     i_opt = 0x80000;
264     if( setsockopt( i_handle, SOL_SOCKET, SO_RCVBUF,
265                     (void *) &i_opt, sizeof( i_opt ) ) == -1 )
266     {
267         msg_Warn( p_this, "cannot configure socket (SO_RCVBUF: %s)",
268                           strerror(errno) );
269     }
270  
271     /* Check if we really got what we have asked for, because Linux, etc.
272      * will silently limit the max buffer size to net.core.rmem_max which
273      * is typically only 65535 bytes */
274     i_opt = 0;
275     i_opt_size = sizeof( i_opt );
276     if( getsockopt( i_handle, SOL_SOCKET, SO_RCVBUF,
277                     (void*) &i_opt, &i_opt_size ) == -1 )
278     {
279         msg_Warn( p_this, "cannot query socket (SO_RCVBUF: %s)",
280                           strerror(errno) );
281     }
282     else if( i_opt < 0x80000 )
283     {
284         msg_Warn( p_this, "socket buffer size is 0x%x instead of 0x%x",
285                           i_opt, 0x80000 );
286     }
287     
288     /* Build the local socket */
289     if ( BuildAddr( &sock, psz_bind_addr, i_bind_port ) == -1 )        
290     {
291         close( i_handle );
292         return( -1 );
293     }
294  
295     /* Bind it */
296     if( bind( i_handle, (struct sockaddr *)&sock, sizeof( sock ) ) < 0 )
297     {
298         msg_Err( p_this, "cannot bind socket (%s)", strerror(errno) );
299         close( i_handle );
300         return( -1 );
301     }
302
303     /* Allow broadcast reception if we bound on in6addr_any */
304     if( !*psz_bind_addr )
305     {
306         i_opt = 1;
307         if( setsockopt( i_handle, SOL_SOCKET, SO_BROADCAST,
308                         (void*) &i_opt, sizeof( i_opt ) ) == -1 )
309         {
310             msg_Warn( p_this, "ipv6 warning: cannot configure socket "
311                               "(SO_BROADCAST: %s)", strerror(errno) );
312         }
313     }
314  
315     /* Join the multicast group if the socket is a multicast address */
316     if( IN6_IS_ADDR_MULTICAST(&sock.sin6_addr) )
317     {
318         struct ipv6_mreq     imr;
319         int                  res;
320
321         imr.ipv6mr_interface = sock.sin6_scope_id;
322         imr.ipv6mr_multiaddr = sock.sin6_addr;
323         res = setsockopt(i_handle, IPPROTO_IPV6, IPV6_JOIN_GROUP, (void*) &imr,
324                          sizeof(imr));
325
326         if( res == -1 )
327         {
328             msg_Err( p_this, "setsockopt JOIN_GROUP failed" );
329         }
330     }
331
332
333     if( *psz_server_addr )
334     {
335         /* Build socket for remote connection */
336         if ( BuildAddr( &sock, psz_server_addr, i_server_port ) == -1 )
337         {
338             msg_Err( p_this, "cannot build remote address" );
339             close( i_handle );
340             return( -1 );
341         }
342  
343         /* Connect the socket */
344         if( connect( i_handle, (struct sockaddr *) &sock,
345                      sizeof( sock ) ) == (-1) )
346         {
347             msg_Err( p_this, "cannot connect socket (%s)", strerror(errno) );
348             close( i_handle );
349             return( -1 );
350         }
351     }
352
353     p_socket->i_handle = i_handle;
354     p_socket->i_mtu = config_GetInt( p_this, "mtu" );
355
356     return( 0 );
357 }
358
359 /*****************************************************************************
360  * OpenTCP: open a TCP socket
361  *****************************************************************************
362  * psz_server_addr, i_server_port : address and port used for the connect()
363  *   system call. If i_server_port == 0, 80 is used.
364  * Other parameters are ignored.
365  * This function returns -1 in case of error.
366  *****************************************************************************/
367 static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket )
368 {
369     char * psz_server_addr = p_socket->psz_server_addr;
370     int i_server_port = p_socket->i_server_port;
371
372     int i_handle;
373     struct sockaddr_in6 sock;
374
375     if( i_server_port == 0 )
376     {
377         i_server_port = 80;
378     }
379
380     /* Open a SOCK_STREAM (TCP) socket, in the AF_INET6 domain, automatic (0)
381      * protocol */
382     if( (i_handle = socket( AF_INET6, SOCK_STREAM, 0 )) == -1 )
383     {
384         msg_Err( p_this, "cannot create socket (%s)", strerror(errno) );
385         return( -1 );
386     }
387
388     /* Build remote address */
389     if ( BuildAddr( &sock, psz_server_addr, i_server_port ) == -1 )
390     {
391         close( i_handle );
392         return( -1 );
393     }
394
395     /* Connect the socket */
396     if( connect( i_handle, (struct sockaddr *) &sock,
397                  sizeof( sock ) ) == (-1) )
398     {
399         msg_Err( p_this, "cannot connect socket (%s)", strerror(errno) );
400         close( i_handle );
401         return( -1 );
402     }
403
404     p_socket->i_handle = i_handle;
405     p_socket->i_mtu = 0; /* There is no MTU notion in TCP */
406
407     return( 0 );
408 }
409
410 /*****************************************************************************
411  * Open: wrapper around OpenUDP and OpenTCP
412  *****************************************************************************/
413 static int Open( vlc_object_t * p_this )
414 {
415     network_socket_t * p_socket = p_this->p_private;
416
417     if( p_socket->i_type == NETWORK_UDP )
418     {
419         return OpenUDP( p_this, p_socket );
420     }
421     else
422     {
423         return OpenTCP( p_this, p_socket );
424     }
425 }