]> git.sesse.net Git - vlc/blob - src/misc/netutils.c
e539514dcf86b5f7b0ed81b02b6f9776457d7b95
[vlc] / src / misc / netutils.c
1 /*****************************************************************************
2  * netutils.c: various network functions
3  *****************************************************************************
4  * Copyright (C) 1999-2001 VideoLAN
5  * $Id: netutils.c,v 1.76 2002/11/11 14:39:12 sam Exp $
6  *
7  * Authors: Vincent Seguin <seguin@via.ecp.fr>
8  *          Benoit Steiner <benny@via.ecp.fr>
9  *          Henri Fallon <henri@videolan.org>
10  *          Xavier Marchesini <xav@alarue.net>
11  *          Christophe Massiot <massiot@via.ecp.fr>
12  *          Samuel Hocevar <sam@via.ecp.fr>
13  *          Jon Lech Johansen <jon-vl@nanocrew.net>
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
28  *****************************************************************************/
29
30 /*****************************************************************************
31  * Preamble
32  *****************************************************************************/
33 #include <stdlib.h>                             /* free(), realloc(), atoi() */
34 #include <string.h>                                              /* memset() */
35
36 #include <vlc/vlc.h>
37
38 #ifdef HAVE_ERRNO_H
39 #   include <errno.h>                                             /* errno() */
40 #endif
41
42 #ifdef HAVE_UNISTD_H
43 #   include <unistd.h>                                      /* gethostname() */
44 #elif defined( _MSC_VER ) && defined( _WIN32 ) && !defined( UNDER_CE )
45 #   include <io.h>
46 #endif
47
48 #if !defined( _MSC_VER )
49 #include <sys/time.h>                                        /* gettimeofday */
50 #endif
51
52 #if defined( UNDER_CE )
53     /* No real network support (FIXME: use winsock1?) */
54 #elif defined( WIN32 )
55 #   include <winsock2.h>
56 #else
57 #   include <netdb.h>                                         /* hostent ... */
58 #   include <sys/socket.h>                           /* BSD: struct sockaddr */
59 #   include <netinet/in.h>                            /* BSD: struct in_addr */
60 #   ifdef HAVE_ARPA_INET_H
61 #       include <arpa/inet.h>                    /* inet_ntoa(), inet_aton() */
62 #   endif
63 #endif
64
65 #ifdef SYS_LINUX
66 #include <sys/ioctl.h>                                            /* ioctl() */
67 #endif
68
69 #ifdef SYS_DARWIN
70 #include <IOKit/IOKitLib.h>
71 #include <IOKit/network/IOEthernetInterface.h>
72 #include <IOKit/network/IOEthernetController.h>
73 #endif
74
75 #if defined( WIN32 ) && !defined( UNDER_CE )
76     /* tools to get the MAC adress from the interface under Windows */
77 #   include <windows.h>
78 #   include <stdio.h>
79 #   include <nb30.h>
80 #endif
81
82 #ifdef HAVE_NET_IF_H
83 #include <net/if.h>                            /* interface (arch-dependent) */
84 #endif
85
86 #ifdef HAVE_SYS_SOCKIO_H
87 #include <sys/sockio.h>
88 #endif
89
90 #include "netutils.h"
91 #include "vlc_playlist.h"
92
93 #include "network.h"
94
95 /*****************************************************************************
96  * input_channel_t: channel library data
97  *****************************************************************************
98  * Store global channel library data.
99  * The part of the code concerning the channel changing process is unstable
100  * as it depends on the VideoLAN channel server, which isn't frozen for
101  * the time being.
102  *****************************************************************************/
103 struct input_channel_t
104 {
105     int         i_channel;                         /* current channel number */
106     mtime_t     last_change;                             /* last change date */
107 };
108
109 /*****************************************************************************
110  * Local prototypes
111  *****************************************************************************/
112 static int GetMacAddress   ( vlc_object_t *, int i_fd, char *psz_mac );
113 #ifdef SYS_DARWIN
114 static int GetNetIntfCtrl  ( const char *psz_interface, 
115                              io_object_t *ctrl_service );
116 #elif defined( WIN32 ) && !defined( UNDER_CE )
117 static int GetAdapterInfo  ( int i_adapter, char *psz_string );
118 #endif
119
120 /*****************************************************************************
121  * network_ChannelCreate: initialize global channel method data
122  *****************************************************************************
123  * Initialize channel input method global data. This function should be called
124  * once before any input thread is created or any call to other
125  * input_Channel*() function is attempted.
126  *****************************************************************************/
127 int __network_ChannelCreate( vlc_object_t *p_this )
128 {
129 #if !defined( SYS_LINUX ) && !( defined( WIN32 ) && !defined( UNDER_CE ) )
130     msg_Err( p_this, "VLAN-based channels are not supported "
131                      "on this architecture" );
132 #endif
133
134     /* Allocate structure */
135     p_this->p_vlc->p_channel = malloc( sizeof( input_channel_t ) );
136     if( p_this->p_vlc->p_channel == NULL )
137     {
138         msg_Err( p_this, "out of memory" );
139         return( -1 );
140     }
141
142     /* Initialize structure */
143     p_this->p_vlc->p_channel->i_channel   = 0;
144     p_this->p_vlc->p_channel->last_change = 0;
145
146     msg_Dbg( p_this, "channels initialized" );
147     return( 0 );
148 }
149
150 /*****************************************************************************
151  * network_ChannelJoin: join a channel
152  *****************************************************************************
153  * This function will try to join a channel. If the relevant interface is
154  * already on the good channel, nothing will be done. Else, and if possible
155  * (if the interface is not locked), the channel server will be contacted
156  * and a change will be requested. The function will block until the change
157  * is effective. Note that once a channel is no more used, its interface
158  * should be unlocked using input_ChannelLeave().
159  * Non 0 will be returned in case of error.
160  *****************************************************************************/
161 int __network_ChannelJoin( vlc_object_t *p_this, int i_channel )
162 {
163 #define VLCS_VERSION 13
164 #define MESSAGE_LENGTH 256
165
166 #if defined( SYS_LINUX ) || ( defined( WIN32 ) && !defined( UNDER_CE ) )
167     module_t *       p_network;
168     char *           psz_network = NULL;
169     network_socket_t socket_desc;
170     char psz_mess[ MESSAGE_LENGTH ];
171     char psz_mac[ 40 ];
172     int i_fd, i_port;
173     char *psz_vlcs;
174     struct timeval delay;
175     fd_set fds;
176
177     if( p_this->p_vlc->p_channel->i_channel == i_channel )
178     {
179         return 0;
180     }
181
182     if( !config_GetInt( p_this, "network-channel" ) )
183     {
184         msg_Err( p_this, "channels disabled, to enable them, use the"
185                          " --channels option" );
186         return -1;
187     }
188
189     if( config_GetInt( p_this, "ipv4" ) )
190     {
191         psz_network = "ipv4";
192     }
193     if( config_GetInt( p_this, "ipv6" ) )
194     {
195         psz_network = "ipv6";
196     }
197
198     /* Getting information about the channel server */
199     if( !(psz_vlcs = config_GetPsz( p_this, "channel-server" )) )
200     {
201         msg_Err( p_this, "configuration variable channel-server empty" );
202         return -1;
203     }
204
205     i_port = config_GetInt( p_this, "channel-port" );
206
207     msg_Dbg( p_this, "connecting to %s:%d", psz_vlcs, i_port );
208
209     /* Prepare the network_socket_t structure */
210     socket_desc.i_type = NETWORK_UDP;
211     socket_desc.psz_bind_addr = "";
212     socket_desc.i_bind_port = 4321;
213     socket_desc.psz_server_addr = psz_vlcs;
214     socket_desc.i_server_port = i_port;
215
216     /* Find an appropriate network module */
217     p_network = module_Need( p_this, "network", psz_network/*, &socket_desc*/ );
218     if( p_network == NULL )
219     {
220         return( -1 );
221     }
222     module_Unneed( p_this, p_network );
223
224     free( psz_vlcs ); /* Do we really need this ? -- Meuuh */
225     i_fd = socket_desc.i_handle;
226
227     /* Look for the interface MAC address */
228     if( GetMacAddress( p_this, i_fd, psz_mac ) )
229     {
230         msg_Err( p_this, "failed getting MAC address" );
231         close( i_fd );
232         return -1;
233     }
234
235     msg_Dbg( p_this, "MAC address is %s", psz_mac );
236
237     /* Build the message */
238     sprintf( psz_mess, "%d %u %lu %s \n", i_channel, VLCS_VERSION,
239                        (unsigned long)(mdate() / (u64)1000000),
240                        psz_mac );
241
242     /* Send the message */
243     send( i_fd, psz_mess, MESSAGE_LENGTH, 0 );
244
245     msg_Dbg( p_this, "attempting to join channel %d", i_channel );
246
247     /* We have changed channels ! (or at least, we tried) */
248     p_this->p_vlc->p_channel->last_change = mdate();
249     p_this->p_vlc->p_channel->i_channel = i_channel;
250
251     /* Wait 5 sec for an answer from the server */
252     delay.tv_sec = 5;
253     delay.tv_usec = 0;
254     FD_ZERO( &fds );
255     FD_SET( i_fd, &fds );
256
257     switch( select( i_fd + 1, &fds, NULL, NULL, &delay ) )
258     {
259         case 0:
260             msg_Err( p_this, "no answer from vlcs" );
261             close( i_fd );
262             return -1;
263
264         case -1:
265             msg_Err( p_this, "error while listening to vlcs" );
266             close( i_fd );
267             return -1;
268     }
269
270     recv( i_fd, psz_mess, MESSAGE_LENGTH, 0 );
271     psz_mess[ MESSAGE_LENGTH - 1 ] = '\0';
272
273     if( !strncasecmp( psz_mess, "E:", 2 ) )
274     {
275         msg_Err( p_this, "vlcs said '%s'", psz_mess + 2 );
276         close( i_fd );
277         return -1;
278     }
279     else if( !strncasecmp( psz_mess, "I:", 2 ) )
280     {
281         msg_Dbg( p_this, "vlcs said '%s'", psz_mess + 2 );
282     }
283     else
284     {
285         /* We got something to play ! */
286         playlist_t *p_playlist;
287         p_playlist = vlc_object_find( p_this, VLC_OBJECT_PLAYLIST,
288                                               FIND_ANYWHERE );
289         if( p_playlist != NULL )
290         {
291             playlist_Add( p_playlist, psz_mess,
292                           PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END );
293             vlc_object_release( p_playlist );
294         }
295     }
296
297     /* Close the socket and return nicely */
298 #   if defined( WIN32 )
299     closesocket( i_fd );
300 #   else
301     close( i_fd );
302 #   endif
303
304 #endif
305     return 0;
306 }
307
308 /* Following functions are local */
309
310 /*****************************************************************************
311  * GetMacAddress: extract the MAC Address
312  *****************************************************************************/
313 static int GetMacAddress( vlc_object_t *p_this, int i_fd, char *psz_mac )
314 {
315 #if defined( SYS_LINUX )
316     struct ifreq interface;
317     int i_ret;
318     char *psz_interface;
319
320     /*
321      * Looking for information about the eth0 interface
322      */
323     interface.ifr_addr.sa_family = AF_INET;
324     if( !(psz_interface = config_GetPsz( p_this, "iface" )) )
325     {
326         msg_Err( p_this, "configuration variable iface empty" );
327         return -1;
328     }
329     strcpy( interface.ifr_name, psz_interface );
330     free( psz_interface );
331
332     i_ret = ioctl( i_fd, SIOCGIFHWADDR, &interface );
333
334     if( i_ret )
335     {
336         msg_Err( p_this, "ioctl SIOCGIFHWADDR failed" );
337         return( i_ret );
338     }
339
340     sprintf( psz_mac, "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
341                       interface.ifr_hwaddr.sa_data[0] & 0xff,
342                       interface.ifr_hwaddr.sa_data[1] & 0xff,
343                       interface.ifr_hwaddr.sa_data[2] & 0xff,
344                       interface.ifr_hwaddr.sa_data[3] & 0xff,
345                       interface.ifr_hwaddr.sa_data[4] & 0xff,
346                       interface.ifr_hwaddr.sa_data[5] & 0xff );
347
348     return( 0 );
349
350 #elif defined( SYS_DARWIN )
351     char *psz_interface;
352     io_object_t ctrl_service;
353     CFTypeRef cfd_mac_address;
354     UInt8 ui_mac_address[kIOEthernetAddressSize];
355
356     if( !(psz_interface = config_GetPsz( p_this, "iface" )) )
357     {
358         msg_Err( p_this, "configuration variable iface empty" );
359         return( -1 );
360     }
361
362     if( GetNetIntfCtrl( psz_interface, &ctrl_service ) )
363     {
364         msg_Err( p_this, "GetNetIntfCtrl failed" );
365         return( -1 );
366     }
367
368     cfd_mac_address = IORegistryEntryCreateCFProperty( ctrl_service,
369                                                        CFSTR(kIOMACAddress),
370                                                        kCFAllocatorDefault,
371                                                        0 ); 
372     IOObjectRelease( ctrl_service );
373     if( cfd_mac_address == NULL )
374     {
375         msg_Err( p_this, "IORegistryEntryCreateCFProperty failed" );
376         return( -1 );
377     }
378
379     CFDataGetBytes( cfd_mac_address, 
380                     CFRangeMake(0, kIOEthernetAddressSize), 
381                     ui_mac_address );
382     CFRelease( cfd_mac_address );
383
384     sprintf( psz_mac, "%2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x",
385                       ui_mac_address[0], ui_mac_address[1],
386                       ui_mac_address[2], ui_mac_address[3],
387                       ui_mac_address[4], ui_mac_address[5] ); 
388
389     return( 0 );
390
391 #elif defined( WIN32 ) && !defined( UNDER_CE )
392     int i, i_ret = -1;
393
394     /* Get adapter list - support for more than one adapter */
395     LANA_ENUM AdapterList;
396     NCB       Ncb;
397
398     msg_Dbg( p_this, "looking for MAC address" );
399
400     memset( &Ncb, 0, sizeof( NCB ) );
401     Ncb.ncb_command = NCBENUM;
402     Ncb.ncb_buffer = (unsigned char *)&AdapterList;
403     Ncb.ncb_length = sizeof( AdapterList );
404     Netbios( &Ncb );
405
406     /* Get all of the local ethernet addresses */
407     for ( i = 0; i < AdapterList.length ; ++i )
408     {
409         if ( GetAdapterInfo ( AdapterList.lana[ i ], psz_mac ) == 0 )
410         {
411             i_ret = 0;
412         }
413     }
414
415     return( i_ret );
416
417 #else
418     strcpy( psz_mac, "00:00:00:00:00:00" );
419     return( 0 );
420
421 #endif
422 }
423
424 #ifdef SYS_DARWIN
425 /*****************************************************************************
426  * GetNetIntfCtrl : get parent controller for network interface 
427  *****************************************************************************/
428 static int GetNetIntfCtrl( const char *psz_interface,
429                            io_object_t *ctrl_service )
430 {
431     mach_port_t port;
432     kern_return_t ret;
433     io_object_t intf_service;
434     io_iterator_t intf_iterator;
435
436     /* get port for IOKit communication */
437     if( ( ret = IOMasterPort( MACH_PORT_NULL, &port ) ) != KERN_SUCCESS )
438     {
439         return( -1 );
440     }
441
442     /* look up the IOService object for the interface */
443     ret = IOServiceGetMatchingServices( port, IOBSDNameMatching( port, 0, 
444                                         psz_interface ), &intf_iterator ); 
445     if( ret != KERN_SUCCESS )
446     {
447         return( -1 );
448     }
449
450     intf_service = IOIteratorNext( intf_iterator );
451     if( intf_service == NULL )
452     {
453         return( -1 );
454     }
455
456     ret = IORegistryEntryGetParentEntry( intf_service,
457                                          kIOServicePlane,
458                                          ctrl_service );
459     IOObjectRelease( intf_service );
460     if( ret != KERN_SUCCESS )
461     {
462         return( -1 );
463     }
464
465     return( 0 );
466 }
467
468 #elif defined( WIN32 ) && !defined( UNDER_CE )
469 /*****************************************************************************
470  * GetAdapterInfo : gets some informations about the interface using NETBIOS
471  *****************************************************************************/
472 static int GetAdapterInfo( int i_adapter, char *psz_string )
473 {
474     struct ASTAT
475     {
476         ADAPTER_STATUS adapt;
477         NAME_BUFFER    psz_name[30];
478     } Adapter;
479
480     /* Reset the LAN adapter so that we can begin querying it */
481     NCB Ncb;
482     memset( &Ncb, 0, sizeof ( Ncb ) );
483     Ncb.ncb_command  = NCBRESET;
484     Ncb.ncb_lana_num = i_adapter;
485
486     if( Netbios( &Ncb ) != NRC_GOODRET )
487     {
488 //X        intf_ErrMsg( "network error: reset returned %i", Ncb.ncb_retcode );
489         return -1;
490     }
491
492     /* Prepare to get the adapter status block */
493     memset( &Ncb, 0, sizeof( Ncb ) ) ;     /* Initialization */
494     Ncb.ncb_command = NCBASTAT;
495     Ncb.ncb_lana_num = i_adapter;
496
497     strcpy( (char *)Ncb.ncb_callname, "*" );
498
499     memset( &Adapter, 0, sizeof ( Adapter ) );
500     Ncb.ncb_buffer = ( unsigned char * ) &Adapter;
501     Ncb.ncb_length = sizeof ( Adapter );
502
503     /* Get the adapter's info and, if this works, return it in standard,
504      * colon-delimited form. */
505     if ( Netbios( &Ncb ) == 0 )
506     {
507         sprintf ( psz_string, "%02X:%02X:%02X:%02X:%02X:%02X",
508                 (int) ( Adapter.adapt.adapter_address[0] ),
509                 (int) ( Adapter.adapt.adapter_address[1] ),
510                 (int) ( Adapter.adapt.adapter_address[2] ),
511                 (int) ( Adapter.adapt.adapter_address[3] ),
512                 (int) ( Adapter.adapt.adapter_address[4] ),
513                 (int) ( Adapter.adapt.adapter_address[5] ) );
514
515 //X        intf_WarnMsg( 2, "network: found MAC address %s", psz_string );
516
517         return 0;
518     }
519     else
520     {
521 //X        intf_ErrMsg( "network error: ASTAT returned %i", Ncb.ncb_retcode );
522         return -1;
523     }
524 }
525 #endif /* WIN32 */
526