]> git.sesse.net Git - vlc/blob - src/misc/netutils.c
. no need to add "\n" at the end of intf_*Msg() messages anymore.
[vlc] / src / misc / netutils.c
1 /*****************************************************************************
2  * netutils.c: various network functions
3  *****************************************************************************
4  * Copyright (C) 1999, 2000 VideoLAN
5  *
6  * Authors: Vincent Seguin <seguin@via.ecp.fr>
7  *          Benoit Steiner <benny@via.ecp.fr>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  * 
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
22  *****************************************************************************/
23
24 /*****************************************************************************
25  * Preamble
26  *****************************************************************************/
27 #include "defs.h"
28
29 #include <netdb.h>                                        /* gethostbyname() */
30 #include <stdlib.h>                             /* free(), realloc(), atoi() */
31 #include <errno.h>                                                /* errno() */
32 #include <string.h>                                      /* bzero(), bcopy() */
33
34 #include <netinet/in.h>                               /* BSD: struct in_addr */
35 #include <sys/socket.h>                              /* BSD: struct sockaddr */
36 #ifdef HAVE_ARPA_INET_H
37 #include <arpa/inet.h>                           /* inet_ntoa(), inet_aton() */
38 #endif
39
40 #if defined (HAVE_SYS_IOCTL_H)
41 #include <sys/ioctl.h>                                            /* ioctl() */
42 #endif
43
44 #include <unistd.h>                           /* needed for ioctl on Solaris */
45 #include <stropts.h>
46
47 #if defined (HAVE_NET_IF_H)
48 #include <net/if.h>                            /* interface (arch-dependent) */
49 #endif
50 #ifdef HAVE_SYS_SOCKIO_H
51 #include <sys/sockio.h>
52 #endif
53
54 #include "config.h"
55 #include "common.h"
56 #include "mtime.h"
57
58 #include "intf_msg.h"
59 #include "debug.h"
60
61 #include "netutils.h"
62
63 /*****************************************************************************
64  * BuildInetAddr: build an Internet address descriptor
65  *****************************************************************************
66  * Build an internet socket descriptor from a host name, or an ip, and a port.
67  * If the address is NULL, then INADDR_ANY will be used, allowing to receive
68  * on any address for a local socket. Usually, in this case, 'port' is also null
69  * and the function always succeeds.
70  *****************************************************************************/
71 int BuildInetAddr( struct sockaddr_in *p_sa_in, char *psz_in_addr, int i_port )
72 {
73     struct hostent *p_hostent;                            /* host descriptor */
74
75     memset( p_sa_in, 0, sizeof( struct sockaddr_in ) );
76     p_sa_in->sin_family = AF_INET;                                 /* family */
77     p_sa_in->sin_port = htons( i_port );                             /* port */
78
79     /* Use INADDR_ANY if psz_in_addr is NULL */
80     if( psz_in_addr == NULL )
81     {
82         p_sa_in->sin_addr.s_addr = htonl(INADDR_ANY);
83     }
84     /* Try to convert address directly from in_addr - this will work if
85      * psz_in_addr is dotted decimal. */
86 #if defined HAVE_ARPA_INET_H && !defined SYS_SOLARIS
87     else if( !inet_aton( psz_in_addr, &p_sa_in->sin_addr) )
88 #else
89     else if( (p_sa_in->sin_addr.s_addr = inet_addr( psz_in_addr )) == -1 )
90 #endif
91     {
92         /* The convertion failed: the address is an host name, which needs
93          * to be resolved */
94         intf_DbgMsg("debug: resolving internet address %s...", psz_in_addr);
95         if ( (p_hostent = gethostbyname(psz_in_addr)) == NULL)
96         {
97             intf_ErrMsg("error: unknown host %s", psz_in_addr);
98             return( -1 );
99         }
100
101         /* Copy the first address of the host in the socket address */
102         memmove( &p_sa_in->sin_addr, p_hostent->h_addr_list[0], p_hostent->h_length );
103     }
104     return( 0 );
105 }
106
107
108 /*****************************************************************************
109  * ServerPort: extract port from a "server:port" adress
110  *****************************************************************************
111  * Returns the port number in a "server:port" address and replace the ":" by
112  * a NUL character, or returns -1.
113  *****************************************************************************/
114 int ServerPort( char *psz_addr )
115 {
116     char *psz_index;
117
118     /* Scan string for ':' */
119     for( psz_index = psz_addr; *psz_index && (*psz_index != ':'); psz_index++ )
120     {
121         ;
122     }
123
124     /* If a port number has been found, convert it and return it */
125     if( *psz_index == ':' )
126     {
127         *psz_index = '\0';
128         return( atoi( psz_index + 1 ) );
129     }
130
131     return( - 1 );
132 }
133
134
135 /*****************************************************************************
136  * ReadIfConf: Read the configuration of an interface
137  *****************************************************************************
138  * i_sockfd must reference a socket open as follow: AF_INET, DOCK_DGRAM, 0
139  *****************************************************************************/
140 int ReadIfConf(int i_sockfd, if_descr_t* p_ifdescr, char* psz_name)
141 {
142     int i_rc = 0;
143 #if defined (HAVE_SYS_IOCTL_H) && defined(HAVE_NET_IF_H)
144     struct ifreq ifr_config;
145
146     ASSERT(p_ifdescr);
147     ASSERT(psz_name);
148
149     /* Which interface are we interested in ? */
150     strcpy(ifr_config.ifr_name, psz_name);
151
152     /* Read the flags for that interface */
153     i_rc = ioctl(i_sockfd, SIOCGIFFLAGS, (byte_t *)&ifr_config);
154     if( !i_rc )
155     {
156         p_ifdescr->i_flags = ifr_config.ifr_flags;
157         intf_DbgMsg("%s flags: 0x%x", psz_name, p_ifdescr->i_flags);
158     }
159     else
160     {
161         intf_ErrMsg("Cannot read flags for interface %s: %s", psz_name,
162                     strerror(errno));
163         return -1;
164     }
165
166    /* Read physical address of the interface and store it in our description */
167 #ifdef SYS_SOLARIS
168     i_rc = ioctl(i_sockfd, SIOCGENADDR, (byte_t *)&ifr_config);
169 #else
170     i_rc = ioctl(i_sockfd, SIOCGIFHWADDR, (byte_t *)&ifr_config);
171 #endif
172     if( !i_rc )
173     {
174         memcpy(&p_ifdescr->sa_phys_addr, &ifr_config.ifr_addr, sizeof(struct sockaddr));
175         intf_DbgMsg("%s MAC address: %2.2x:%2.2x:%2.2x:%2.2x:%2.2x:%2.2x", psz_name,
176                     p_ifdescr->sa_phys_addr.sa_data[0]&0xff,
177                     p_ifdescr->sa_phys_addr.sa_data[1]&0xff,
178                     p_ifdescr->sa_phys_addr.sa_data[2]&0xff,
179                     p_ifdescr->sa_phys_addr.sa_data[3]&0xff,
180                     p_ifdescr->sa_phys_addr.sa_data[4]&0xff,
181                     p_ifdescr->sa_phys_addr.sa_data[5]&0xff);
182     }
183     else
184     {
185         intf_ErrMsg("Cannot read hardware address for interface %s: %s",
186                     psz_name, strerror(errno));
187         return -1;
188     }
189
190     /* Read IP address of the interface and store it in our description */
191     i_rc = ioctl(i_sockfd, SIOCGIFADDR, (byte_t *)&ifr_config);
192     if( !i_rc )
193     {
194         memcpy(&p_ifdescr->sa_net_addr, &ifr_config.ifr_addr, sizeof(struct sockaddr));
195         intf_DbgMsg("%s IP address: %s", psz_name,
196                     inet_ntoa(p_ifdescr->sa_net_addr.sin_addr));
197     }
198     else
199     {
200         intf_ErrMsg("Cannot read network address for interface %s: %s",
201                     psz_name, strerror(errno));
202         return -1;
203     }
204
205   /* Read broadcast address of the interface and store it in our description */
206     if(p_ifdescr->i_flags & IFF_POINTOPOINT)
207     {
208         intf_DbgMsg("%s doen't not support broadcast", psz_name);
209         i_rc = ioctl(i_sockfd, SIOCGIFDSTADDR, (byte_t *)&ifr_config);
210     }
211     else
212     {
213         intf_DbgMsg("%s supports broadcast", psz_name);
214         i_rc = ioctl(i_sockfd, SIOCGIFBRDADDR, (byte_t *)&ifr_config);
215     }
216     if( !i_rc )
217     {
218         memcpy(&p_ifdescr->sa_bcast_addr, &ifr_config.ifr_addr, sizeof(struct sockaddr));
219         intf_DbgMsg("%s broadcast address: %s", psz_name,
220                     inet_ntoa(p_ifdescr->sa_bcast_addr.sin_addr));
221     }
222     else
223     {
224         intf_ErrMsg("Cannot read broadcast address for interface %s: %s",
225                     psz_name, strerror(errno));
226         return -1;
227     }
228 #endif
229
230     return i_rc;
231 }
232
233
234
235 /*****************************************************************************
236  * ReadNetConf: Retrieve the network configuration of the host
237  *****************************************************************************
238  * Only IP interfaces are listed, and only if they are up
239  * i_sockfd must reference a socket open as follow: AF_INET, DOCK_DGRAM, 0
240  *****************************************************************************/
241 int ReadNetConf(int i_sockfd, net_descr_t* p_net_descr)
242 {
243     int i_rc = 0;
244
245 #if defined (HAVE_SYS_IOCTL_H) && defined (HAVE_NET_IF_H)
246     struct ifreq* a_ifr_ifconf = NULL;
247     struct ifreq* p_ifr_current_if;
248     struct ifconf ifc_netconf;
249
250     int i_if_number;
251     int i_remaining;
252
253     ASSERT(p_net_descr);
254
255     /* Start by assuming we have few than 3 interfaces (i_if_number will
256        be incremented by 1 when entering the loop) */
257     i_if_number = 2;
258
259     /* Retrieve network configuration for that host */
260     do
261     {
262         i_if_number++;
263         a_ifr_ifconf = realloc(a_ifr_ifconf, i_if_number*sizeof(struct ifreq));
264         ifc_netconf.ifc_len = i_if_number*sizeof(struct ifreq);
265         ifc_netconf.ifc_req = a_ifr_ifconf;
266
267         i_rc = ioctl(i_sockfd, SIOCGIFCONF, (byte_t*)&ifc_netconf);
268         if( i_rc )
269         {
270             intf_ErrMsg("Cannot read network configuration: %s",
271                         strerror(errno));
272             break;
273         }
274     }
275     /* If we detected ifc_len interfaces, this may mean that others have
276        been missed because the a_ifr_ifconf was to little, so increase
277        it's size and retry */
278     while( ifc_netconf.ifc_len >= i_if_number*sizeof(struct ifreq) );
279
280     /* No see what we detected */
281     if( !i_rc )
282     {
283         /* Init the given net_descr_t struct */
284         p_net_descr->i_if_number = 0;
285         p_net_descr->a_if = NULL;
286
287         /* Iterate through the entries of the a_ifr_ifconf table */
288         p_ifr_current_if = ifc_netconf.ifc_req;
289         for( i_remaining = ifc_netconf.ifc_len / sizeof (struct ifreq);
290              i_remaining-- > 0; p_ifr_current_if++ )
291         {
292             intf_DbgMsg("Found interface %s", p_ifr_current_if->ifr_name);
293
294             /* Don't use an interface devoted to an address family other than IP */
295             if(p_ifr_current_if->ifr_addr.sa_family != AF_INET)
296                 continue;
297
298             /* Read the status of this interface */
299             if( ioctl(i_sockfd, SIOCGIFFLAGS, (byte_t *)p_ifr_current_if) < 0 )
300             {
301                 intf_ErrMsg("Cannot access interface %s: %s",
302                             p_ifr_current_if->ifr_name, strerror(errno));
303                 i_rc = -1;
304                 break;
305             }
306             else
307             {
308                 /* Skip this interface if it is not up or if this is a loopback one */
309                 if( !p_ifr_current_if->ifr_flags & IFF_UP ||
310                     p_ifr_current_if->ifr_flags & IFF_LOOPBACK )
311                   continue;
312
313                 /* Add an entry to the net_descr struct to store the description of
314                    that interface */
315                 p_net_descr->i_if_number++;
316                 p_net_descr->a_if = realloc(p_net_descr->a_if,
317                                             p_net_descr->i_if_number*sizeof(if_descr_t));
318                 /* FIXME: Read the info ?? */
319                 i_rc = ReadIfConf(i_sockfd, &p_net_descr->a_if[p_net_descr->i_if_number-1],
320                                   p_ifr_current_if->ifr_name);
321             }
322         }
323     }
324
325     /* Don't need the a_ifr_ifconf anymore */
326     free( a_ifr_ifconf );
327 #endif
328
329     return i_rc;
330 }
331
332