2007-10-02 19:27:25 +00:00
/*
2002-01-30 06:08:46 +00:00
Unix SMB / CIFS implementation .
1999-12-17 01:41:55 +00:00
return a list of network interfaces
Copyright ( C ) Andrew Tridgell 1998
2007-10-02 19:27:25 +00:00
Copyright ( C ) Jeremy Allison 2007
1999-12-17 01:41:55 +00:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
2007-07-09 19:25:36 +00:00
the Free Software Foundation ; either version 3 of the License , or
1999-12-17 01:41:55 +00:00
( at your option ) any later version .
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
You should have received a copy of the GNU General Public License
2007-07-10 00:52:41 +00:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
1999-12-17 01:41:55 +00:00
*/
/* working out the interfaces for a OS is an incredibly non-portable
thing . We have several possible implementations below , and autoconf
tries each of them to see what works
Note that this file does _not_ include includes . h . That is so this code
can be called directly from the autoconf tests . That also means
this code cannot use any of the normal Samba debug stuff or defines .
This is standalone code .
*/
2006-09-19 21:57:59 +00:00
# ifndef AUTOCONF_TEST
# include "config.h"
# endif
1999-12-17 01:41:55 +00:00
# include <unistd.h>
# include <stdio.h>
# include <sys/types.h>
2006-09-19 21:57:59 +00:00
# include <netdb.h>
# include <sys/ioctl.h>
1999-12-17 01:41:55 +00:00
# include <netdb.h>
# include <sys/ioctl.h>
2000-01-14 01:41:04 +00:00
# include <sys/time.h>
2006-09-19 21:57:59 +00:00
# include <sys/socket.h>
# include <netinet/in.h>
# include <arpa/inet.h>
1999-12-17 01:41:55 +00:00
2007-10-02 19:27:25 +00:00
# ifdef HAVE_IFADDRS_H
# include <ifaddrs.h>
# endif
2002-07-15 10:35:28 +00:00
# ifdef HAVE_SYS_TIME_H
# include <sys/time.h>
# endif
# ifndef SIOCGIFCONF
# ifdef HAVE_SYS_SOCKIO_H
# include <sys/sockio.h>
# endif
# endif
1999-12-17 01:41:55 +00:00
# ifdef HAVE_STDLIB_H
# include <stdlib.h>
# endif
# ifdef HAVE_STRING_H
# include <string.h>
# endif
# ifdef HAVE_STRINGS_H
# include <strings.h>
# endif
# ifdef __COMPAR_FN_T
# define QSORT_CAST (__compar_fn_t)
# endif
# ifndef QSORT_CAST
# define QSORT_CAST (int (*)(const void *, const void *))
# endif
2006-09-19 21:57:59 +00:00
# ifdef HAVE_NET_IF_H
# include <net/if.h>
# endif
# include "interfaces.h"
2007-10-13 16:50:31 +02:00
# include "lib/replace/replace.h"
2006-09-19 21:57:59 +00:00
2007-10-02 19:27:25 +00:00
/****************************************************************************
Try the " standard " getifaddrs / freeifaddrs interfaces .
Also gets IPv6 interfaces .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
# if HAVE_IFACE_GETIFADDRS
/****************************************************************************
Get the netmask address for a local interface .
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
static int _get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
{
struct ifaddrs * iflist = NULL ;
struct ifaddrs * ifptr = NULL ;
int total = 0 ;
2007-10-10 18:25:16 -07:00
size_t copy_size ;
2007-10-02 19:27:25 +00:00
2007-10-02 20:39:41 +00:00
if ( getifaddrs ( & iflist ) < 0 ) {
2007-10-02 19:27:25 +00:00
return - 1 ;
}
/* Loop through interfaces, looking for given IP address */
for ( ifptr = iflist , total = 0 ;
ifptr ! = NULL & & total < max_interfaces ;
ifptr = ifptr - > ifa_next ) {
2007-10-10 18:25:16 -07:00
memset ( & ifaces [ total ] , ' \0 ' , sizeof ( ifaces [ total ] ) ) ;
copy_size = sizeof ( struct sockaddr_in ) ;
2007-10-02 20:39:41 +00:00
if ( ! ifptr - > ifa_addr | | ! ifptr - > ifa_netmask ) {
continue ;
}
2007-10-10 18:25:16 -07:00
ifaces [ total ] . flags = ifptr - > ifa_flags ;
/* Check the interface is up. */
if ( ! ( ifaces [ total ] . flags & IFF_UP ) ) {
2007-10-02 19:27:25 +00:00
continue ;
}
2007-10-19 08:14:12 -05:00
# if defined(HAVE_IPV6)
2007-10-10 18:25:16 -07:00
if ( ifptr - > ifa_addr - > sa_family = = AF_INET6 ) {
copy_size = sizeof ( struct sockaddr_in6 ) ;
}
# endif
2007-10-02 19:27:25 +00:00
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . ip , ifptr - > ifa_addr , copy_size ) ;
memcpy ( & ifaces [ total ] . netmask , ifptr - > ifa_netmask , copy_size ) ;
2007-10-11 18:03:12 -07:00
2007-10-13 16:26:42 +02:00
if ( ( ifaces [ total ] . flags & ( IFF_BROADCAST | IFF_LOOPBACK ) ) & &
2007-10-11 18:03:12 -07:00
ifptr - > ifa_broadaddr ) {
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . bcast ,
ifptr - > ifa_broadaddr ,
copy_size ) ;
2007-10-11 18:03:12 -07:00
} else if ( ( ifaces [ total ] . flags & IFF_POINTOPOINT ) & &
ifptr - > ifa_dstaddr ) {
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . bcast ,
ifptr - > ifa_dstaddr ,
copy_size ) ;
} else {
continue ;
}
2007-10-02 19:27:25 +00:00
2007-10-13 16:50:31 +02:00
strlcpy ( ifaces [ total ] . name , ifptr - > ifa_name ,
sizeof ( ifaces [ total ] . name ) ) ;
2007-10-02 19:27:25 +00:00
total + + ;
}
freeifaddrs ( iflist ) ;
return total ;
}
# define _FOUND_IFACE_ANY
# endif /* HAVE_IFACE_GETIFADDRS */
1999-12-17 01:41:55 +00:00
# if HAVE_IFACE_IFCONF
/* this works for Linux 2.2, Solaris 2.5, SunOS4, HPUX 10.20, OSF1
V4 .0 , Ultrix 4.4 , SCO Unix 3.2 , IRIX 6.4 and FreeBSD 3.2 .
It probably also works on any BSD style system . */
/****************************************************************************
2007-10-02 19:27:25 +00:00
Get the netmask address for a local interface .
1999-12-17 01:41:55 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
static int _get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
2007-10-02 19:27:25 +00:00
{
1999-12-17 01:41:55 +00:00
struct ifconf ifc ;
char buff [ 8192 ] ;
int fd , i , n ;
struct ifreq * ifr = NULL ;
int total = 0 ;
if ( ( fd = socket ( AF_INET , SOCK_DGRAM , 0 ) ) = = - 1 ) {
return - 1 ;
}
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
ifc . ifc_len = sizeof ( buff ) ;
ifc . ifc_buf = buff ;
if ( ioctl ( fd , SIOCGIFCONF , & ifc ) ! = 0 ) {
close ( fd ) ;
return - 1 ;
2007-10-02 19:27:25 +00:00
}
1999-12-17 01:41:55 +00:00
ifr = ifc . ifc_req ;
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
n = ifc . ifc_len / sizeof ( struct ifreq ) ;
/* Loop through interfaces, looking for given IP address */
for ( i = n - 1 ; i > = 0 & & total < max_interfaces ; i - - ) {
2007-10-10 18:25:16 -07:00
memset ( & ifaces [ total ] , ' \0 ' , sizeof ( ifaces [ total ] ) ) ;
/* Check the interface is up. */
if ( ioctl ( fd , SIOCGIFFLAGS , & ifr [ i ] ) ! = 0 ) {
1999-12-17 01:41:55 +00:00
continue ;
}
2007-10-10 18:25:16 -07:00
ifaces [ total ] . flags = ifr [ i ] . ifr_flags ;
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
if ( ! ( flags & IFF_UP ) ) {
1999-12-17 01:41:55 +00:00
continue ;
2007-10-02 19:27:25 +00:00
}
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
if ( ioctl ( fd , SIOCGIFADDR , & ifr [ i ] ) ! = 0 ) {
1999-12-17 01:41:55 +00:00
continue ;
}
2007-10-13 16:50:31 +02:00
strlcpy ( ifaces [ total ] . name , ifr [ i ] . ifr_name ,
sizeof ( ifaces [ total ] . name ) ) ;
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . ip , & ifr [ i ] . ifr_addr ,
sizeof ( struct sockaddr_in ) ) ;
1999-12-17 01:41:55 +00:00
if ( ioctl ( fd , SIOCGIFNETMASK , & ifr [ i ] ) ! = 0 ) {
continue ;
2007-10-02 19:27:25 +00:00
}
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . netmask , & ifr [ i ] . ifr_netmask ,
sizeof ( struct sockaddr_in ) ) ;
if ( ifaces [ total ] . flags & IFF_BROADCAST ) {
if ( ioctl ( fd , SIOCGIFBRDADDR , & ifr [ i ] ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifr [ i ] . ifr_broadaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else if ( ifaces [ total ] . flags & IFF_POINTOPOINT ) {
if ( ioctl ( fd , SIOCGIFDSTADDR , & ifr [ i ] ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifr [ i ] . ifr_dstaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else {
continue ;
}
1999-12-17 01:41:55 +00:00
total + + ;
}
close ( fd ) ;
return total ;
2007-10-02 19:27:25 +00:00
}
1999-12-17 01:41:55 +00:00
2006-09-19 21:57:59 +00:00
# define _FOUND_IFACE_ANY
# endif /* HAVE_IFACE_IFCONF */
# ifdef HAVE_IFACE_IFREQ
1999-12-17 01:41:55 +00:00
# ifndef I_STR
# include <sys/stropts.h>
# endif
/****************************************************************************
2007-10-02 19:27:25 +00:00
This should cover most of the streams based systems .
Thanks to Andrej . Borsenkow @ mow . siemens . ru for several ideas in this code .
1999-12-17 01:41:55 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
static int _get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
{
struct ifreq ifreq ;
struct strioctl strioctl ;
char buff [ 8192 ] ;
int fd , i , n ;
struct ifreq * ifr = NULL ;
int total = 0 ;
if ( ( fd = socket ( AF_INET , SOCK_DGRAM , 0 ) ) = = - 1 ) {
return - 1 ;
}
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
strioctl . ic_cmd = SIOCGIFCONF ;
strioctl . ic_dp = buff ;
strioctl . ic_len = sizeof ( buff ) ;
if ( ioctl ( fd , I_STR , & strioctl ) < 0 ) {
close ( fd ) ;
return - 1 ;
2007-10-02 19:27:25 +00:00
}
1999-12-17 01:41:55 +00:00
/* we can ignore the possible sizeof(int) here as the resulting
number of interface structures won ' t change */
n = strioctl . ic_len / sizeof ( struct ifreq ) ;
/* we will assume that the kernel returns the length as an int
at the start of the buffer if the offered size is a
multiple of the structure size plus an int */
if ( n * sizeof ( struct ifreq ) + sizeof ( int ) = = strioctl . ic_len ) {
2007-10-02 19:27:25 +00:00
ifr = ( struct ifreq * ) ( buff + sizeof ( int ) ) ;
1999-12-17 01:41:55 +00:00
} else {
2007-10-02 19:27:25 +00:00
ifr = ( struct ifreq * ) buff ;
1999-12-17 01:41:55 +00:00
}
/* Loop through interfaces */
for ( i = 0 ; i < n & & total < max_interfaces ; i + + ) {
2007-10-10 18:25:16 -07:00
memset ( & ifaces [ total ] , ' \0 ' , sizeof ( ifaces [ total ] ) ) ;
1999-12-17 01:41:55 +00:00
ifreq = ifr [ i ] ;
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
strioctl . ic_cmd = SIOCGIFFLAGS ;
strioctl . ic_dp = ( char * ) & ifreq ;
strioctl . ic_len = sizeof ( struct ifreq ) ;
if ( ioctl ( fd , I_STR , & strioctl ) ! = 0 ) {
continue ;
}
2007-10-02 19:27:25 +00:00
2007-10-10 18:25:16 -07:00
ifaces [ total ] . flags = ifreq . ifr_flags ;
if ( ! ( ifaces [ total ] . flags & IFF_UP ) ) {
1999-12-17 01:41:55 +00:00
continue ;
}
strioctl . ic_cmd = SIOCGIFADDR ;
strioctl . ic_dp = ( char * ) & ifreq ;
strioctl . ic_len = sizeof ( struct ifreq ) ;
if ( ioctl ( fd , I_STR , & strioctl ) ! = 0 ) {
continue ;
}
2007-10-13 16:50:31 +02:00
strlcpy ( ifaces [ total ] . name , iname , sizeof ( ifaces [ total ] . name ) ) ;
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . ip , & ifreq . ifr_addr ,
sizeof ( struct sockaddr_in ) ) ;
1999-12-17 01:41:55 +00:00
strioctl . ic_cmd = SIOCGIFNETMASK ;
strioctl . ic_dp = ( char * ) & ifreq ;
strioctl . ic_len = sizeof ( struct ifreq ) ;
if ( ioctl ( fd , I_STR , & strioctl ) ! = 0 ) {
continue ;
}
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . netmask , & ifreq . ifr_addr ,
sizeof ( struct sockaddr_in ) ) ;
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
if ( ifaces [ total ] . flags & IFF_BROADCAST ) {
strioctl . ic_cmd = SIOCGIFBRDADDR ;
strioctl . ic_dp = ( char * ) & ifreq ;
strioctl . ic_len = sizeof ( struct ifreq ) ;
if ( ioctl ( fd , I_STR , & strioctl ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifreq . ifr_broadaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else if ( ifaces [ total ] . flags & IFF_POINTOPOINT ) {
strioctl . ic_cmd = SIOCGIFDSTADDR ;
strioctl . ic_dp = ( char * ) & ifreq ;
strioctl . ic_len = sizeof ( struct ifreq ) ;
if ( ioctl ( fd , I_STR , & strioctl ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifreq . ifr_dstaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else {
continue ;
}
1999-12-17 01:41:55 +00:00
total + + ;
}
close ( fd ) ;
return total ;
}
2006-09-19 21:57:59 +00:00
# define _FOUND_IFACE_ANY
# endif /* HAVE_IFACE_IFREQ */
# ifdef HAVE_IFACE_AIX
1999-12-17 01:41:55 +00:00
/****************************************************************************
2007-10-02 19:27:25 +00:00
This one is for AIX ( tested on 4.2 ) .
1999-12-17 01:41:55 +00:00
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2007-10-02 19:27:25 +00:00
1999-12-17 01:41:55 +00:00
static int _get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
{
char buff [ 8192 ] ;
int fd , i ;
struct ifconf ifc ;
struct ifreq * ifr = NULL ;
int total = 0 ;
if ( ( fd = socket ( AF_INET , SOCK_DGRAM , 0 ) ) = = - 1 ) {
return - 1 ;
}
ifc . ifc_len = sizeof ( buff ) ;
ifc . ifc_buf = buff ;
if ( ioctl ( fd , SIOCGIFCONF , & ifc ) ! = 0 ) {
close ( fd ) ;
return - 1 ;
}
ifr = ifc . ifc_req ;
/* Loop through interfaces */
i = ifc . ifc_len ;
while ( i > 0 & & total < max_interfaces ) {
2006-09-19 21:57:59 +00:00
uint_t inc ;
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
memset ( & ifaces [ total ] , ' \0 ' , sizeof ( ifaces [ total ] ) ) ;
1999-12-17 01:41:55 +00:00
inc = ifr - > ifr_addr . sa_len ;
2007-10-10 18:25:16 -07:00
if ( ioctl ( fd , SIOCGIFFLAGS , ifr ) ! = 0 ) {
1999-12-17 01:41:55 +00:00
goto next ;
}
2007-10-10 18:25:16 -07:00
ifaces [ total ] . flags = ifr - > ifr_flags ;
1999-12-17 01:41:55 +00:00
2007-10-10 18:25:16 -07:00
if ( ! ( ifaces [ total ] . flags & IFF_UP ) ) {
1999-12-17 01:41:55 +00:00
goto next ;
}
2007-10-10 18:25:16 -07:00
if ( ioctl ( fd , SIOCGIFADDR , ifr ) ! = 0 ) {
1999-12-17 01:41:55 +00:00
goto next ;
}
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . ip , & ifr - > ifr_addr ,
sizeof ( struct sockaddr_in ) ) ;
2007-10-13 16:50:31 +02:00
strlcpy ( ifaces [ total ] . name , ifr - > ifr_name ,
sizeof ( ifaces [ total ] . name ) ) ;
2007-10-10 18:25:16 -07:00
1999-12-17 01:41:55 +00:00
if ( ioctl ( fd , SIOCGIFNETMASK , ifr ) ! = 0 ) {
goto next ;
}
2007-10-10 18:25:16 -07:00
memcpy ( & ifaces [ total ] . netmask , & ifr - > ifr_addr ,
sizeof ( struct sockaddr_in ) ) ;
if ( ifaces [ total ] . flags & IFF_BROADCAST ) {
if ( ioctl ( fd , SIOCGIFBRDADDR , & ifr [ i ] ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifr [ i ] . ifr_broadaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else if ( ifaces [ total ] . flags & IFF_POINTOPOINT ) {
if ( ioctl ( fd , SIOCGIFDSTADDR , & ifr [ i ] ) ! = 0 ) {
continue ;
}
memcpy ( & ifaces [ total ] . bcast , & ifr [ i ] . ifr_dstaddr ,
sizeof ( struct sockaddr_in ) ) ;
} else {
continue ;
}
1999-12-17 01:41:55 +00:00
total + + ;
next :
/*
* Patch from Archie Cobbs ( archie @ whistle . com ) . The
* addresses in the SIOCGIFCONF interface list have a
* minimum size . Usually this doesn ' t matter , but if
* your machine has tunnel interfaces , etc . that have
* a zero length " link address " , this does matter . */
if ( inc < sizeof ( ifr - > ifr_addr ) )
inc = sizeof ( ifr - > ifr_addr ) ;
inc + = IFNAMSIZ ;
ifr = ( struct ifreq * ) ( ( ( char * ) ifr ) + inc ) ;
i - = inc ;
}
close ( fd ) ;
return total ;
}
2006-09-19 21:57:59 +00:00
# define _FOUND_IFACE_ANY
# endif /* HAVE_IFACE_AIX */
# ifndef _FOUND_IFACE_ANY
1999-12-17 01:41:55 +00:00
static int _get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
{
return - 1 ;
}
# endif
static int iface_comp ( struct iface_struct * i1 , struct iface_struct * i2 )
{
int r ;
2007-10-02 19:27:25 +00:00
2007-10-19 08:14:12 -05:00
# if defined(HAVE_IPV6)
2007-10-10 18:25:16 -07:00
/*
* If we have IPv6 - sort these interfaces lower
* than any IPv4 ones .
*/
if ( i1 - > ip . ss_family = = AF_INET6 & &
i2 - > ip . ss_family = = AF_INET ) {
return - 1 ;
} else if ( i1 - > ip . ss_family = = AF_INET & &
i2 - > ip . ss_family = = AF_INET6 ) {
return 1 ;
}
if ( i1 - > ip . ss_family = = AF_INET6 ) {
struct sockaddr_in6 * s1 = ( struct sockaddr_in6 * ) & i1 - > ip ;
struct sockaddr_in6 * s2 = ( struct sockaddr_in6 * ) & i2 - > ip ;
r = memcmp ( & s1 - > sin6_addr ,
& s2 - > sin6_addr ,
2007-10-02 19:27:25 +00:00
sizeof ( struct in6_addr ) ) ;
if ( r ) {
return r ;
}
2007-10-10 18:25:16 -07:00
s1 = ( struct sockaddr_in6 * ) & i1 - > netmask ;
s2 = ( struct sockaddr_in6 * ) & i2 - > netmask ;
r = memcmp ( & s1 - > sin6_addr ,
& s2 - > sin6_addr ,
2007-10-02 19:27:25 +00:00
sizeof ( struct in6_addr ) ) ;
if ( r ) {
return r ;
}
}
# endif
2007-10-10 18:25:16 -07:00
if ( i1 - > ip . ss_family = = AF_INET ) {
struct sockaddr_in * s1 = ( struct sockaddr_in * ) & i1 - > ip ;
struct sockaddr_in * s2 = ( struct sockaddr_in * ) & i2 - > ip ;
r = ntohl ( s1 - > sin_addr . s_addr ) -
ntohl ( s2 - > sin_addr . s_addr ) ;
2007-10-02 19:27:25 +00:00
if ( r ) {
return r ;
}
2007-10-10 18:25:16 -07:00
s1 = ( struct sockaddr_in * ) & i1 - > netmask ;
s2 = ( struct sockaddr_in * ) & i2 - > netmask ;
2007-10-13 16:43:07 +02:00
return ntohl ( s1 - > sin_addr . s_addr ) -
2007-10-10 18:25:16 -07:00
ntohl ( s2 - > sin_addr . s_addr ) ;
2007-10-02 19:27:25 +00:00
}
2007-10-13 16:43:07 +02:00
return 0 ;
1999-12-17 01:41:55 +00:00
}
2006-12-12 20:15:47 +00:00
int get_interfaces ( struct iface_struct * ifaces , int max_interfaces ) ;
1999-12-17 01:41:55 +00:00
/* this wrapper is used to remove duplicates from the interface list generated
above */
int get_interfaces ( struct iface_struct * ifaces , int max_interfaces )
{
int total , i , j ;
total = _get_interfaces ( ifaces , max_interfaces ) ;
if ( total < = 0 ) return total ;
/* now we need to remove duplicates */
qsort ( ifaces , total , sizeof ( ifaces [ 0 ] ) , QSORT_CAST iface_comp ) ;
for ( i = 1 ; i < total ; ) {
if ( iface_comp ( & ifaces [ i - 1 ] , & ifaces [ i ] ) = = 0 ) {
for ( j = i - 1 ; j < total - 1 ; j + + ) {
ifaces [ j ] = ifaces [ j + 1 ] ;
}
total - - ;
} else {
i + + ;
}
}
return total ;
}
# ifdef AUTOCONF_TEST
/* this is the autoconf driver to test get_interfaces() */
int main ( )
{
struct iface_struct ifaces [ MAX_INTERFACES ] ;
int total = get_interfaces ( ifaces , MAX_INTERFACES ) ;
int i ;
printf ( " got %d interfaces: \n " , total ) ;
2007-10-02 19:27:25 +00:00
if ( total < = 0 ) {
exit ( 1 ) ;
}
1999-12-17 01:41:55 +00:00
for ( i = 0 ; i < total ; i + + ) {
2007-10-02 19:27:25 +00:00
char addr [ INET6_ADDRSTRLEN ] ;
2007-10-10 18:25:16 -07:00
int ret ;
1999-12-17 01:41:55 +00:00
printf ( " %-10s " , ifaces [ i ] . name ) ;
2007-10-10 18:25:16 -07:00
addr [ 0 ] = ' \0 ' ;
ret = getnameinfo ( ( struct sockaddr * ) & ifaces [ i ] . ip ,
sizeof ( ifaces [ i ] . ip ) ,
addr , sizeof ( addr ) ,
NULL , 0 , NI_NUMERICHOST ) ;
printf ( " IP=%s " , addr ) ;
addr [ 0 ] = ' \0 ' ;
ret = getnameinfo ( ( struct sockaddr * ) & ifaces [ i ] . netmask ,
sizeof ( ifaces [ i ] . netmask ) ,
addr , sizeof ( addr ) ,
NULL , 0 , NI_NUMERICHOST ) ;
printf ( " NETMASK=%s " , addr ) ;
addr [ 0 ] = ' \0 ' ;
ret = getnameinfo ( ( struct sockaddr * ) & ifaces [ i ] . bcast ,
sizeof ( ifaces [ i ] . bcast ) ,
addr , sizeof ( addr ) ,
NULL , 0 , NI_NUMERICHOST ) ;
printf ( " BCAST=%s \n " , addr ) ;
1999-12-17 01:41:55 +00:00
}
return 0 ;
}
# endif