]> git.sesse.net Git - vlc/blob - plugins/network/ipv6.c
* ALL: new module API. Makes a few things a lot simpler, and we gain
[vlc] / plugins / network / ipv6.c
1 /*****************************************************************************
2  * ipv6.c: IPv6 network abstraction layer
3  *****************************************************************************
4  * Copyright (C) 2002 VideoLAN
5  * $Id: ipv6.c,v 1.16 2002/07/31 20:56:52 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 //X        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 //X            msg_Dbg( p_this, "Interface name specified: \"%s\"",
138 //                          psz_multicast_interface );
139             /* now convert that interface name to an index */
140 #if !defined( WIN32 )
141             p_socket->sin6_scope_id = if_nametoindex(psz_multicast_interface);
142 #else
143             /* FIXME: for now we always use the default interface */
144             p_socket->sin6_scope_id = 0;
145 //X            msg_Warn( 3, "Using default interface. This has to be FIXED!");
146 #endif
147 //X            msg_Warn( p_this, " = #%i\n", p_socket->sin6_scope_id );
148         }
149         psz_address[strlen(psz_address) - 1] = '\0' ;
150
151 #if !defined( WIN32 )
152         inet_pton(AF_INET6, psz_address, &p_socket->sin6_addr.s6_addr); 
153
154 #else
155         memset(&hints, 0, sizeof(hints));
156         hints.ai_family = AF_INET6;
157         hints.ai_flags = AI_NUMERICHOST;
158
159         if( _getaddrinfo( psz_address, NULL, &hints, &res ) )
160         {
161             FreeLibrary( wship6_dll );
162             return( -1 );
163         }
164         memcpy( &p_socket->sin6_addr,
165                 &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
166                 sizeof(struct in6_addr) );
167         _freeaddrinfo( res );
168
169 #endif
170     }
171     else
172     {
173 #ifdef HAVE_GETHOSTBYNAME2
174         struct hostent    * p_hostent;
175
176         /* We have a fqdn, try to find its address */
177         if ( (p_hostent = gethostbyname2( psz_address, AF_INET6 )) == NULL )
178         {
179 //X            intf_ErrMsg( "ipv6 error: unknown host %s", psz_address );
180             return( -1 );
181         }
182
183         /* Copy the first address of the host in the socket address */
184         memcpy( &p_socket->sin6_addr, p_hostent->h_addr_list[0],
185                  p_hostent->h_length );
186
187 #elif defined(WIN32)
188         if( _getaddrinfo( psz_address, NULL, &hints, &res ) )
189         {
190             FreeLibrary( wship6_dll );
191             return( -1 );
192         }
193         memcpy( &p_socket->sin6_addr,
194                 &((struct sockaddr_in6 *)res->ai_addr)->sin6_addr,
195                 sizeof(struct in6_addr) );
196         _freeaddrinfo( res );
197
198 #else
199 //X        intf_ErrMsg( "ipv6 error: IPv6 address %s is invalid", psz_address );
200         return( -1 );
201 #endif
202     }
203
204 #if defined(WIN32)
205     FreeLibrary( wship6_dll );
206 #endif
207
208     return( 0 );
209 }
210
211 /*****************************************************************************
212  * OpenUDP: open a UDP socket
213  *****************************************************************************
214  * psz_bind_addr, i_bind_port : address and port used for the bind()
215  *   system call. If psz_bind_addr == NULL, the socket is bound to
216  *   in6addr_any and broadcast reception is enabled. If i_bind_port == 0,
217  *   1234 is used. If psz_bind_addr is a multicast (class D) address,
218  *   join the multicast group.
219  * psz_server_addr, i_server_port : address and port used for the connect()
220  *   system call. It can avoid receiving packets from unauthorized IPs.
221  *   Its use leads to great confusion and is currently discouraged.
222  * This function returns -1 in case of error.
223  *****************************************************************************/
224 static int OpenUDP( vlc_object_t * p_this, network_socket_t * p_socket )
225 {
226     char * psz_bind_addr = p_socket->psz_bind_addr;
227     int i_bind_port = p_socket->i_bind_port;
228     char * psz_server_addr = p_socket->psz_server_addr;
229     int i_server_port = p_socket->i_server_port;
230
231     int i_handle, i_opt, i_opt_size;
232     struct sockaddr_in6 sock;
233
234     if( i_bind_port == 0 )
235     {
236 //X        i_bind_port = config_GetInt( "server-port" );
237     }
238
239     /* Open a SOCK_DGRAM (UDP) socket, in the AF_INET6 domain, automatic (0)
240      * protocol */
241     if( (i_handle = socket( AF_INET6, SOCK_DGRAM, 0 )) == -1 )
242     {
243         msg_Err( p_this, "cannot create socket (%s)", strerror(errno) );
244         return( -1 );
245     }
246
247     /* We may want to reuse an already used socket */
248     i_opt = 1;
249     if( setsockopt( i_handle, SOL_SOCKET, SO_REUSEADDR,
250                     (void *) &i_opt, sizeof( i_opt ) ) == -1 )
251     {
252         msg_Err( p_this, "cannot configure socket (SO_REUSEADDR: %s)",
253                          strerror(errno) );
254         close( i_handle );
255         return( -1 );
256     }
257
258     /* Increase the receive buffer size to 1/2MB (8Mb/s during 1/2s) to avoid
259      * packet loss caused by scheduling problems */
260     i_opt = 0x80000;
261     if( setsockopt( i_handle, SOL_SOCKET, SO_RCVBUF,
262                     (void *) &i_opt, sizeof( i_opt ) ) == -1 )
263     {
264         msg_Warn( p_this, "cannot configure socket (SO_RCVBUF: %s)",
265                           strerror(errno) );
266     }
267  
268     /* Check if we really got what we have asked for, because Linux, etc.
269      * will silently limit the max buffer size to net.core.rmem_max which
270      * is typically only 65535 bytes */
271     i_opt = 0;
272     i_opt_size = sizeof( i_opt );
273     if( getsockopt( i_handle, SOL_SOCKET, SO_RCVBUF,
274                     (void*) &i_opt, &i_opt_size ) == -1 )
275     {
276         msg_Warn( p_this, "cannot query socket (SO_RCVBUF: %s)",
277                           strerror(errno) );
278     }
279     else if( i_opt < 0x80000 )
280     {
281         msg_Warn( p_this, "socket buffer size is 0x%x instead of 0x%x",
282                           i_opt, 0x80000 );
283     }
284     
285     /* Build the local socket */
286     if ( BuildAddr( &sock, psz_bind_addr, i_bind_port ) == -1 )        
287     {
288         close( i_handle );
289         return( -1 );
290     }
291  
292     /* Bind it */
293     if( bind( i_handle, (struct sockaddr *)&sock, sizeof( sock ) ) < 0 )
294     {
295         msg_Err( p_this, "cannot bind socket (%s)", strerror(errno) );
296         close( i_handle );
297         return( -1 );
298     }
299
300     /* Allow broadcast reception if we bound on in6addr_any */
301     if( !*psz_bind_addr )
302     {
303         i_opt = 1;
304         if( setsockopt( i_handle, SOL_SOCKET, SO_BROADCAST,
305                         (void*) &i_opt, sizeof( i_opt ) ) == -1 )
306         {
307             msg_Warn( p_this, "ipv6 warning: cannot configure socket "
308                               "(SO_BROADCAST: %s)", strerror(errno) );
309         }
310     }
311  
312     /* Join the multicast group if the socket is a multicast address */
313     if( IN6_IS_ADDR_MULTICAST(&sock.sin6_addr) )
314     {
315         struct ipv6_mreq     imr;
316         int                  res;
317
318         imr.ipv6mr_interface = sock.sin6_scope_id;
319         imr.ipv6mr_multiaddr = sock.sin6_addr;
320         res = setsockopt(i_handle, IPPROTO_IPV6, IPV6_JOIN_GROUP, (void*) &imr,
321                          sizeof(imr));
322
323         if( res == -1 )
324         {
325 //X            intf_ErrMsg( "ipv6 error: setsockopt JOIN_GROUP failed" );
326         }
327     }
328
329
330     if( *psz_server_addr )
331     {
332         /* Build socket for remote connection */
333         if ( BuildAddr( &sock, psz_server_addr, i_server_port ) == -1 )
334         {
335             msg_Err( p_this, "cannot build remote address" );
336             close( i_handle );
337             return( -1 );
338         }
339  
340         /* Connect the socket */
341         if( connect( i_handle, (struct sockaddr *) &sock,
342                      sizeof( sock ) ) == (-1) )
343         {
344             msg_Err( p_this, "cannot connect socket (%s)", strerror(errno) );
345             close( i_handle );
346             return( -1 );
347         }
348     }
349
350     p_socket->i_handle = i_handle;
351     p_socket->i_mtu = config_GetInt( p_this, "mtu" );
352
353     return( 0 );
354 }
355
356 /*****************************************************************************
357  * OpenTCP: open a TCP socket
358  *****************************************************************************
359  * psz_server_addr, i_server_port : address and port used for the connect()
360  *   system call. If i_server_port == 0, 80 is used.
361  * Other parameters are ignored.
362  * This function returns -1 in case of error.
363  *****************************************************************************/
364 static int OpenTCP( vlc_object_t * p_this, network_socket_t * p_socket )
365 {
366     char * psz_server_addr = p_socket->psz_server_addr;
367     int i_server_port = p_socket->i_server_port;
368
369     int i_handle;
370     struct sockaddr_in6 sock;
371
372     if( i_server_port == 0 )
373     {
374         i_server_port = 80;
375     }
376
377     /* Open a SOCK_STREAM (TCP) socket, in the AF_INET6 domain, automatic (0)
378      * protocol */
379     if( (i_handle = socket( AF_INET6, SOCK_STREAM, 0 )) == -1 )
380     {
381         msg_Err( p_this, "cannot create socket (%s)", strerror(errno) );
382         return( -1 );
383     }
384
385     /* Build remote address */
386     if ( BuildAddr( &sock, psz_server_addr, i_server_port ) == -1 )
387     {
388         close( i_handle );
389         return( -1 );
390     }
391
392     /* Connect the socket */
393     if( connect( i_handle, (struct sockaddr *) &sock,
394                  sizeof( sock ) ) == (-1) )
395     {
396         msg_Err( p_this, "cannot connect socket (%s)", strerror(errno) );
397         close( i_handle );
398         return( -1 );
399     }
400
401     p_socket->i_handle = i_handle;
402     p_socket->i_mtu = 0; /* There is no MTU notion in TCP */
403
404     return( 0 );
405 }
406
407 /*****************************************************************************
408  * Open: wrapper around OpenUDP and OpenTCP
409  *****************************************************************************/
410 static int Open( vlc_object_t * p_this )
411 {
412     network_socket_t * p_socket = p_this->p_private;
413
414     if( p_socket->i_type == NETWORK_UDP )
415     {
416         return OpenUDP( p_this, p_socket );
417     }
418     else
419     {
420         return OpenTCP( p_this, p_socket );
421     }
422 }