2015-12-17 20:56:48 +03:00
/*
2016-01-06 14:42:10 +03:00
* Copyright ( c ) 2015 - 2016 Dmitry V . Levin < ldv @ altlinux . org >
2015-12-17 20:56:48 +03:00
* All rights reserved .
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
* 1. Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
* 2. Redistributions in binary form must reproduce the above copyright
* notice , this list of conditions and the following disclaimer in the
* documentation and / or other materials provided with the distribution .
* 3. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission .
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ` ` AS IS ' ' AND ANY EXPRESS OR
* IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED .
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
* INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
* NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*/
2016-01-02 16:28:43 +03:00
# include "tests.h"
2015-06-08 17:19:46 +03:00
# include <netinet/in.h>
2016-01-06 14:42:10 +03:00
# if defined IP_ADD_MEMBERSHIP && defined IPV6_ADD_MEMBERSHIP \
2016-08-02 19:33:09 +03:00
& & defined IPV6_JOIN_ANYCAST & & defined HAVE_IF_INDEXTONAME
2016-01-06 14:42:10 +03:00
2016-08-02 19:33:09 +03:00
# include <stdio.h>
2016-01-06 14:42:10 +03:00
# include <unistd.h>
# include <sys / socket.h>
# include <arpa / inet.h>
2016-08-02 19:33:09 +03:00
# include <net / if.h>
2015-06-08 17:19:46 +03:00
int
main ( void )
{
2016-08-02 19:33:09 +03:00
static const char multi4addr [ ] = " 224.0.0.3 " ;
static const char multi6addr [ ] = " ff01::c " ;
static const char interface [ ] = " 127.0.0.1 " ;
2016-12-20 23:13:18 +03:00
struct ip_mreq * const m4 = tail_alloc ( sizeof ( * m4 ) ) ;
struct ipv6_mreq * const m6 = tail_alloc ( sizeof ( * m6 ) ) ;
2016-12-20 23:17:18 +03:00
unsigned int i ;
2016-12-20 20:55:04 +03:00
int rc ;
2015-06-08 17:19:46 +03:00
2016-12-20 23:13:18 +03:00
inet_pton ( AF_INET , multi4addr , & m4 - > imr_multiaddr ) ;
inet_pton ( AF_INET , interface , & m4 - > imr_interface ) ;
inet_pton ( AF_INET6 , multi6addr , & m6 - > ipv6mr_multiaddr ) ;
2016-08-02 19:33:09 +03:00
2016-12-20 23:13:18 +03:00
m6 - > ipv6mr_interface = if_nametoindex ( " lo " ) ;
if ( ! m6 - > ipv6mr_interface )
2016-08-02 19:33:09 +03:00
perror_msg_and_skip ( " lo " ) ;
2015-06-08 17:19:46 +03:00
( void ) close ( 0 ) ;
2016-01-06 14:42:10 +03:00
if ( socket ( AF_INET , SOCK_DGRAM , 0 ) )
perror_msg_and_skip ( " socket " ) ;
2015-06-08 17:19:46 +03:00
2016-12-20 23:17:18 +03:00
struct {
int level ;
const char * str_level ;
int optname ;
const char * str_optname ;
void * optval ;
unsigned int optsize ;
} short_any [ ] = {
{
ARG_STR ( SOL_IP ) , ARG_STR ( IP_ADD_MEMBERSHIP ) ,
m4 , sizeof ( * m4 )
} ,
{
ARG_STR ( SOL_IP ) , ARG_STR ( IP_DROP_MEMBERSHIP ) ,
m4 , sizeof ( * m4 )
} ,
{
ARG_STR ( SOL_IPV6 ) , ARG_STR ( IPV6_ADD_MEMBERSHIP ) ,
m6 , sizeof ( * m6 )
} ,
{
ARG_STR ( SOL_IPV6 ) , ARG_STR ( IPV6_DROP_MEMBERSHIP ) ,
m6 , sizeof ( * m6 )
} ,
{
ARG_STR ( SOL_IPV6 ) , ARG_STR ( IPV6_JOIN_ANYCAST ) ,
m6 , sizeof ( * m6 )
} ,
{
ARG_STR ( SOL_IPV6 ) , ARG_STR ( IPV6_LEAVE_ANYCAST ) ,
m6 , sizeof ( * m6 )
}
} ;
for ( i = 0 ; i < ARRAY_SIZE ( short_any ) ; + + i ) {
rc = setsockopt ( 0 , short_any [ i ] . level , short_any [ i ] . optname ,
short_any [ i ] . optval , 1 ) ;
printf ( " setsockopt(0, %s, %s, \" \\ %hho \" , 1) = %s \n " ,
short_any [ i ] . str_level , short_any [ i ] . str_optname ,
* ( unsigned char * ) short_any [ i ] . optval ,
sprintrc ( rc ) ) ;
2016-12-20 23:19:35 +03:00
rc = setsockopt ( 0 , short_any [ i ] . level , short_any [ i ] . optname ,
short_any [ i ] . optval + 1 , short_any [ i ] . optsize ) ;
printf ( " setsockopt(0, %s, %s, %p, %u) = %s \n " ,
short_any [ i ] . str_level , short_any [ i ] . str_optname ,
short_any [ i ] . optval + 1 , short_any [ i ] . optsize ,
sprintrc ( rc ) ) ;
2016-12-20 23:17:18 +03:00
}
struct {
int optname ;
const char * str_optname ;
} long_ip [ ] = {
{ ARG_STR ( IP_ADD_MEMBERSHIP ) } ,
{ ARG_STR ( IP_DROP_MEMBERSHIP ) }
} , long_ipv6 [ ] = {
{ ARG_STR ( IPV6_ADD_MEMBERSHIP ) } ,
{ ARG_STR ( IPV6_DROP_MEMBERSHIP ) } ,
{ ARG_STR ( IPV6_JOIN_ANYCAST ) } ,
{ ARG_STR ( IPV6_LEAVE_ANYCAST ) }
} ;
for ( i = 0 ; i < ARRAY_SIZE ( long_ip ) ; + + i ) {
rc = setsockopt ( 0 , SOL_IP , long_ip [ i ] . optname ,
m4 , sizeof ( * m4 ) ) ;
printf ( " setsockopt(0, SOL_IP, %s "
" , {imr_multiaddr=inet_addr( \" %s \" ) "
" , imr_interface=inet_addr( \" %s \" )}, %u) = %s \n " ,
long_ip [ i ] . str_optname , multi4addr ,
interface , ( unsigned ) sizeof ( * m4 ) , sprintrc ( rc ) ) ;
}
for ( i = 0 ; i < ARRAY_SIZE ( long_ipv6 ) ; + + i ) {
rc = setsockopt ( 0 , SOL_IPV6 , long_ipv6 [ i ] . optname ,
m6 , sizeof ( * m6 ) ) ;
printf ( " setsockopt(0, SOL_IPV6, %s "
" , {ipv6mr_multiaddr=inet_pton( \" %s \" ) "
" , ipv6mr_interface=if_nametoindex( \" lo \" )} "
" , %u) = %s \n " ,
long_ipv6 [ i ] . str_optname , multi6addr ,
( unsigned ) sizeof ( * m6 ) , sprintrc ( rc ) ) ;
}
2015-06-08 17:19:46 +03:00
2016-08-02 19:33:09 +03:00
puts ( " +++ exited with 0 +++ " ) ;
2015-06-08 17:19:46 +03:00
return 0 ;
2016-01-06 14:42:10 +03:00
}
2015-06-08 17:19:46 +03:00
# else
2016-01-06 14:42:10 +03:00
SKIP_MAIN_UNDEFINED ( " IP_ADD_MEMBERSHIP && IPV6_ADD_MEMBERSHIP "
2016-08-02 19:33:09 +03:00
" && IPV6_JOIN_ANYCAST && HAVE_IF_INDEXTONAME " )
2016-01-06 14:42:10 +03:00
2015-06-08 17:19:46 +03:00
# endif