2006-12-14 20:21:39 +03:00
/*
* Unix SMB / CIFS implementation .
* Test the infiniband wrapper .
*
* Copyright ( C ) Sven Oehme < oehmes @ de . ibm . com > 2006
*
* Major code contributions by Peter Somogyi < psomogyi @ gamax . hu >
*
* 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-10 09:29:31 +04:00
* the Free Software Foundation ; either version 3 of the License , or
2006-12-14 20:21:39 +03:00
* ( at your option ) any later version .
*
* 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 .
*
* You should have received a copy of the GNU General Public License
2007-07-10 09:46:05 +04:00
* along with this program ; if not , see < http : //www.gnu.org/licenses/>.
2006-12-14 20:21:39 +03:00
*/
2015-10-26 08:50:46 +03:00
# include "replace.h"
# include "system/network.h"
# include "system/time.h"
2016-06-27 10:28:59 +03:00
# include "system/wait.h"
2015-10-26 08:50:46 +03:00
2006-12-14 20:21:39 +03:00
# include <assert.h>
2015-10-26 08:50:46 +03:00
# include <talloc.h>
# include <tevent.h>
# include "lib/util/time.h"
# include "lib/util/debug.h"
2015-11-11 07:22:52 +03:00
# include "common/logging.h"
2006-12-14 20:21:39 +03:00
# include "ib/ibwrapper.h"
struct ibwtest_ctx {
int is_server ;
char * id ; /* my id */
struct ibw_initattr * attrs ;
int nattrs ;
char * opts ; /* option string */
struct sockaddr_in * addrs ; /* dynamic array of dest addrs */
int naddrs ;
2007-01-30 20:47:26 +03:00
unsigned int nsec ; /* delta times between messages in nanosec */
2007-02-09 20:06:13 +03:00
unsigned int sleep_usec ; /* microsecs to sleep in the main loop to emulate overloading */
2007-02-02 20:54:57 +03:00
uint32_t maxsize ; /* maximum variable message size */
2006-12-14 20:21:39 +03:00
int cnt ;
2007-02-09 20:06:13 +03:00
int nsent ;
2006-12-14 20:21:39 +03:00
2007-01-25 20:57:47 +03:00
int nmsg ; /* number of messages to send (client) */
2006-12-14 20:21:39 +03:00
int kill_me ;
2007-02-01 20:46:44 +03:00
int stopping ;
2007-01-30 20:47:26 +03:00
int error ;
2006-12-14 20:21:39 +03:00
struct ibw_ctx * ibwctx ;
2007-01-26 18:45:51 +03:00
struct timeval start_time , end_time ;
2006-12-14 20:21:39 +03:00
} ;
struct ibwtest_conn {
char * id ;
} ;
enum testopcode {
TESTOP_SEND_ID = 1 ,
2007-02-02 20:54:57 +03:00
TESTOP_SEND_TEXT = 2 ,
TESTOP_SEND_RND = 3
2006-12-14 20:21:39 +03:00
} ;
2015-10-13 08:19:21 +03:00
static int ibwtest_connect_everybody ( struct ibwtest_ctx * tcx )
2006-12-14 20:21:39 +03:00
{
2007-02-26 13:59:20 +03:00
struct ibw_conn * conn ;
struct ibwtest_conn * tconn = talloc_zero ( tcx , struct ibwtest_conn ) ;
2006-12-14 20:21:39 +03:00
int i ;
for ( i = 0 ; i < tcx - > naddrs ; i + + ) {
2007-02-26 13:59:20 +03:00
conn = ibw_conn_new ( tcx - > ibwctx , tconn ) ;
if ( ibw_connect ( conn , & tcx - > addrs [ i ] , tconn ) ) {
2006-12-14 20:21:39 +03:00
fprintf ( stderr , " ibw_connect error at %d \n " , i ) ;
return - 1 ;
}
}
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " sent %d connect request... \n " , tcx - > naddrs ) ) ;
2006-12-14 20:21:39 +03:00
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_send_id ( struct ibw_conn * conn )
2006-12-14 20:21:39 +03:00
{
2007-01-30 20:47:26 +03:00
struct ibwtest_ctx * tcx = talloc_get_type ( conn - > ctx - > ctx_userdata , struct ibwtest_ctx ) ;
2006-12-14 20:21:39 +03:00
char * buf ;
void * key ;
2007-01-25 13:01:59 +03:00
uint32_t len ;
2006-12-14 20:21:39 +03:00
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " ibwtest_send_id \n " ) ) ;
2007-01-25 13:01:59 +03:00
len = sizeof ( uint32_t ) + strlen ( tcx - > id ) + 2 ;
if ( ibw_alloc_send_buf ( conn , ( void * * ) & buf , & key , len ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " send_id: ibw_alloc_send_buf failed \n " ) ) ;
2006-12-14 20:21:39 +03:00
return - 1 ;
}
2006-12-18 22:52:49 +03:00
2007-01-25 13:01:59 +03:00
/* first sizeof(uint32_t) size bytes are for length */
2007-02-15 19:02:38 +03:00
* ( ( uint32_t * ) buf ) = len ;
2007-01-25 13:01:59 +03:00
buf [ sizeof ( uint32_t ) ] = ( char ) TESTOP_SEND_ID ;
strcpy ( buf + sizeof ( uint32_t ) + 1 , tcx - > id ) ;
2006-12-14 20:21:39 +03:00
2007-01-25 13:01:59 +03:00
if ( ibw_send ( conn , buf , key , len ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " send_id: ibw_send error \n " ) ) ;
2006-12-14 20:21:39 +03:00
return - 1 ;
}
2007-02-09 20:06:13 +03:00
tcx - > nsent + + ;
2006-12-14 20:21:39 +03:00
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_send_test_msg ( struct ibwtest_ctx * tcx , struct ibw_conn * conn , const char * msg )
2006-12-14 20:21:39 +03:00
{
2006-12-21 19:41:48 +03:00
char * buf , * p ;
2006-12-14 20:21:39 +03:00
void * key ;
2006-12-21 19:41:48 +03:00
uint32_t len ;
2006-12-14 20:21:39 +03:00
2007-01-25 13:01:59 +03:00
if ( conn - > state ! = IBWC_CONNECTED )
return 0 ; /* not yet up */
2007-02-02 20:54:57 +03:00
len = strlen ( msg ) + 2 + sizeof ( uint32_t ) ;
2006-12-21 19:41:48 +03:00
if ( ibw_alloc_send_buf ( conn , ( void * * ) & buf , & key , len ) ) {
2006-12-14 20:21:39 +03:00
fprintf ( stderr , " send_test_msg: ibw_alloc_send_buf failed \n " ) ;
return - 1 ;
}
2007-02-15 19:02:38 +03:00
* ( ( uint32_t * ) buf ) = len ;
2007-01-25 13:01:59 +03:00
p = buf ;
2006-12-21 19:41:48 +03:00
p + = sizeof ( uint32_t ) ;
2007-02-02 20:54:57 +03:00
p [ 0 ] = ( char ) TESTOP_SEND_TEXT ;
2006-12-21 19:41:48 +03:00
p + + ;
strcpy ( p , msg ) ;
if ( ibw_send ( conn , buf , key , len ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " send_test_msg: ibw_send error \n " ) ) ;
2006-12-14 20:21:39 +03:00
return - 1 ;
}
2007-02-09 20:06:13 +03:00
tcx - > nsent + + ;
2006-12-14 20:21:39 +03:00
return 0 ;
}
2015-10-13 08:19:21 +03:00
static unsigned char ibwtest_fill_random ( unsigned char * buf , uint32_t size )
2007-02-02 20:54:57 +03:00
{
uint32_t i = size ;
unsigned char sum = 0 ;
unsigned char value ;
while ( i ) {
i - - ;
value = ( unsigned char ) ( 256.0 * ( rand ( ) / ( RAND_MAX + 1.0 ) ) ) ;
buf [ i ] = value ;
sum + = value ;
}
return sum ;
}
2015-10-13 08:19:21 +03:00
static unsigned char ibwtest_get_sum ( unsigned char * buf , uint32_t size )
2007-02-02 20:54:57 +03:00
{
uint32_t i = size ;
unsigned char sum = 0 ;
while ( i ) {
i - - ;
sum + = buf [ i ] ;
}
return sum ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_do_varsize_scenario_conn_size ( struct ibwtest_ctx * tcx , struct ibw_conn * conn , uint32_t size )
2007-02-02 20:54:57 +03:00
{
unsigned char * buf ;
void * key ;
uint32_t len ;
unsigned char sum ;
len = sizeof ( uint32_t ) + 1 + size + 1 ;
if ( ibw_alloc_send_buf ( conn , ( void * * ) & buf , & key , len ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " varsize/ibw_alloc_send_buf failed \n " ) ) ;
2007-02-02 20:54:57 +03:00
return - 1 ;
}
2007-02-15 19:02:38 +03:00
* ( ( uint32_t * ) buf ) = len ;
2007-02-02 20:54:57 +03:00
buf [ sizeof ( uint32_t ) ] = TESTOP_SEND_RND ;
sum = ibwtest_fill_random ( buf + sizeof ( uint32_t ) + 1 , size ) ;
buf [ sizeof ( uint32_t ) + 1 + size ] = sum ;
if ( ibw_send ( conn , buf , key , len ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " varsize/ibw_send failed \n " ) ) ;
2007-02-02 20:54:57 +03:00
return - 1 ;
}
2007-02-09 20:06:13 +03:00
tcx - > nsent + + ;
2007-02-02 20:54:57 +03:00
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_do_varsize_scenario_conn ( struct ibwtest_ctx * tcx , struct ibw_conn * conn )
2007-02-02 20:54:57 +03:00
{
uint32_t size ;
int i ;
for ( i = 0 ; i < tcx - > nmsg ; i + + )
{
//size = (uint32_t)((float)(tcx->maxsize) * (rand() / (RAND_MAX + 1.0)));
2007-02-08 21:06:14 +03:00
size = ( uint32_t ) ( ( float ) ( tcx - > maxsize ) * ( ( float ) ( i + 1 ) / ( float ) tcx - > nmsg ) ) ;
2007-02-02 20:54:57 +03:00
if ( ibwtest_do_varsize_scenario_conn_size ( tcx , conn , size ) )
return - 1 ;
}
return 0 ;
}
/*int ibwtest_do_varsize_scenario(ibwtest_ctx *tcx)
{
int rc ;
struct ibw_conn * conn ;
for ( conn = tcx - > ibwctx - > conn_list ; conn ! = NULL ; conn = conn - > next ) {
if ( conn - > state = = IBWC_CONNECTED ) {
rc = ibwtest_do_varsize_scenario_conn ( tcx , conn ) ;
if ( rc )
tcx - > error = rc ;
}
}
} */
2015-10-13 08:19:21 +03:00
static int ibwtest_connstate_handler ( struct ibw_ctx * ctx , struct ibw_conn * conn )
2006-12-14 20:21:39 +03:00
{
struct ibwtest_ctx * tcx = NULL ; /* userdata */
2007-02-26 13:59:20 +03:00
struct ibwtest_conn * tconn = NULL ; /* userdata */
2006-12-14 20:21:39 +03:00
if ( ctx ) {
tcx = talloc_get_type ( ctx - > ctx_userdata , struct ibwtest_ctx ) ;
switch ( ctx - > state ) {
case IBWS_INIT :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWS_INIT \n " ) ) ;
2006-12-14 20:21:39 +03:00
break ;
case IBWS_READY :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWS_READY \n " ) ) ;
2006-12-14 20:21:39 +03:00
break ;
case IBWS_CONNECT_REQUEST :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWS_CONNECT_REQUEST \n " ) ) ;
2007-02-26 13:59:20 +03:00
tconn = talloc_zero ( conn , struct ibwtest_conn ) ;
if ( ibw_accept ( ctx , conn , tconn ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " error accepting the connect request \n " ) ) ;
2006-12-14 20:21:39 +03:00
}
break ;
case IBWS_STOPPED :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWS_STOPPED \n " ) ) ;
2006-12-14 20:21:39 +03:00
tcx - > kill_me = 1 ; /* main loop can exit */
break ;
case IBWS_ERROR :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWS_ERROR \n " ) ) ;
2006-12-14 20:21:39 +03:00
ibw_stop ( tcx - > ibwctx ) ;
break ;
default :
assert ( 0 ) ;
break ;
}
}
if ( conn ) {
2007-02-26 13:59:20 +03:00
tconn = talloc_get_type ( conn - > conn_userdata , struct ibwtest_conn ) ;
2006-12-14 20:21:39 +03:00
switch ( conn - > state ) {
case IBWC_INIT :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWC_INIT \n " ) ) ;
2006-12-14 20:21:39 +03:00
break ;
case IBWC_CONNECTED :
2007-01-26 18:45:51 +03:00
if ( gettimeofday ( & tcx - > start_time , NULL ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " gettimeofday error %d " , errno ) ) ;
2007-01-26 18:45:51 +03:00
return - 1 ;
}
2006-12-14 20:21:39 +03:00
ibwtest_send_id ( conn ) ;
break ;
case IBWC_DISCONNECTED :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWC_DISCONNECTED \n " ) ) ;
2007-02-02 20:54:57 +03:00
talloc_free ( conn ) ;
2006-12-14 20:21:39 +03:00
break ;
case IBWC_ERROR :
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " test IBWC_ERROR %s \n " , ibw_getLastError ( ) ) ) ;
2006-12-14 20:21:39 +03:00
break ;
default :
assert ( 0 ) ;
break ;
}
}
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_receive_handler ( struct ibw_conn * conn , void * buf , int n )
2006-12-14 20:21:39 +03:00
{
2007-02-26 13:59:20 +03:00
struct ibwtest_conn * tconn ;
2006-12-14 20:21:39 +03:00
enum testopcode op ;
struct ibwtest_ctx * tcx = talloc_get_type ( conn - > ctx - > ctx_userdata , struct ibwtest_ctx ) ;
2007-02-02 20:54:57 +03:00
int rc = 0 ;
2006-12-14 20:21:39 +03:00
assert ( conn ! = NULL ) ;
2007-02-02 20:54:57 +03:00
assert ( n > = sizeof ( uint32_t ) + 1 ) ;
2007-02-26 13:59:20 +03:00
tconn = talloc_get_type ( conn - > conn_userdata , struct ibwtest_conn ) ;
2006-12-14 20:21:39 +03:00
2007-01-25 13:01:59 +03:00
op = ( enum testopcode ) ( ( char * ) buf ) [ sizeof ( uint32_t ) ] ;
if ( op = = TESTOP_SEND_ID ) {
2007-02-26 13:59:20 +03:00
tconn - > id = talloc_strdup ( tconn , ( ( char * ) buf ) + sizeof ( uint32_t ) + 1 ) ;
2007-01-25 13:01:59 +03:00
}
2007-02-02 20:54:57 +03:00
if ( op = = TESTOP_SEND_ID | | op = = TESTOP_SEND_TEXT ) {
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " [%d]msg from %s: \" %s \" (%d) \n " , op ,
2007-02-26 13:59:20 +03:00
tconn - > id ? tconn - > id : " NULL " , ( ( char * ) buf ) + sizeof ( uint32_t ) + 1 , n ) ) ;
2007-02-02 20:54:57 +03:00
}
2006-12-14 20:21:39 +03:00
if ( tcx - > is_server ) {
2007-02-02 20:54:57 +03:00
if ( op = = TESTOP_SEND_RND ) {
unsigned char sum ;
sum = ibwtest_get_sum ( ( unsigned char * ) buf + sizeof ( uint32_t ) + 1 ,
n - sizeof ( uint32_t ) - 2 ) ;
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " [%d]msg varsize %u/sum %u from %s \n " ,
2007-02-02 20:54:57 +03:00
op ,
2014-05-28 04:40:29 +04:00
( uint32_t ) ( n - sizeof ( uint32_t ) - 2 ) ,
2007-02-02 20:54:57 +03:00
( uint32_t ) sum ,
2007-02-26 13:59:20 +03:00
tconn - > id ? tconn - > id : " NULL " ) ) ;
2007-02-02 20:54:57 +03:00
if ( sum ! = ( ( unsigned char * ) buf ) [ n - 1 ] ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " ERROR: checksum mismatch %u!=%u \n " ,
2007-02-02 20:54:57 +03:00
( uint32_t ) sum , ( uint32_t ) ( ( unsigned char * ) buf ) [ n - 1 ] ) ) ;
ibw_stop ( tcx - > ibwctx ) ;
2007-02-15 19:02:38 +03:00
goto error ;
2007-02-02 20:54:57 +03:00
}
2007-03-29 20:46:02 +04:00
} else if ( op ! = TESTOP_SEND_ID ) {
2007-02-02 20:54:57 +03:00
char * buf2 ;
void * key2 ;
/* bounce message regardless what it is */
if ( ibw_alloc_send_buf ( conn , ( void * * ) & buf2 , & key2 , n ) ) {
fprintf ( stderr , " ibw_alloc_send_buf error #2 \n " ) ;
2007-02-15 19:02:38 +03:00
goto error ;
2007-02-02 20:54:57 +03:00
}
memcpy ( buf2 , buf , n ) ;
if ( ibw_send ( conn , buf2 , key2 , n ) ) {
fprintf ( stderr , " ibw_send error #2 \n " ) ;
2007-02-15 19:02:38 +03:00
goto error ;
2007-02-02 20:54:57 +03:00
}
2007-02-09 20:06:13 +03:00
tcx - > nsent + + ;
2006-12-14 20:21:39 +03:00
}
2007-02-02 20:54:57 +03:00
} else { /* client: */
if ( op = = TESTOP_SEND_ID & & tcx - > maxsize ) {
/* send them in one blow */
rc = ibwtest_do_varsize_scenario_conn ( tcx , conn ) ;
2006-12-14 20:21:39 +03:00
}
2007-02-02 20:54:57 +03:00
2007-01-25 20:57:47 +03:00
if ( tcx - > nmsg ) {
char msg [ 26 ] ;
sprintf ( msg , " hello world %d " , tcx - > nmsg - - ) ;
2007-02-02 20:54:57 +03:00
rc = ibwtest_send_test_msg ( tcx , conn , msg ) ;
2007-02-01 20:46:44 +03:00
if ( tcx - > nmsg = = 0 ) {
ibw_stop ( tcx - > ibwctx ) ;
tcx - > stopping = 1 ;
}
2007-01-25 20:57:47 +03:00
}
2006-12-14 20:21:39 +03:00
}
2007-02-02 20:54:57 +03:00
if ( rc )
tcx - > error = rc ;
return rc ;
2007-02-15 19:02:38 +03:00
error :
return - 1 ;
2006-12-14 20:21:39 +03:00
}
2015-10-26 08:50:09 +03:00
static void ibwtest_timeout_handler ( struct tevent_context * ev ,
struct tevent_timer * te ,
struct timeval t , void * private_data )
2006-12-14 20:21:39 +03:00
{
2007-04-13 14:38:24 +04:00
struct ibwtest_ctx * tcx = talloc_get_type ( private_data , struct ibwtest_ctx ) ;
2007-02-02 20:54:57 +03:00
int rc ;
2006-12-14 20:21:39 +03:00
if ( ! tcx - > is_server ) {
2007-02-02 20:54:57 +03:00
struct ibw_conn * conn ;
2006-12-14 20:21:39 +03:00
char msg [ 50 ] ;
/* fill it with something variable... */
sprintf ( msg , " hello world %d " , tcx - > cnt + + ) ;
/* send something to everybody... */
2007-02-02 20:54:57 +03:00
for ( conn = tcx - > ibwctx - > conn_list ; conn ! = NULL ; conn = conn - > next ) {
if ( conn - > state = = IBWC_CONNECTED ) {
rc = ibwtest_send_test_msg ( tcx , conn , msg ) ;
if ( rc )
tcx - > error = rc ;
2007-01-30 20:47:26 +03:00
}
2006-12-14 20:21:39 +03:00
}
} /* else allow main loop run */
}
static struct ibwtest_ctx * testctx = NULL ;
2015-10-13 08:19:21 +03:00
static void ibwtest_sigint_handler ( int sig )
2006-12-14 20:21:39 +03:00
{
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " got SIGINT \n " ) ) ;
2007-02-01 20:46:44 +03:00
if ( testctx ) {
2007-02-02 20:54:57 +03:00
if ( testctx - > ibwctx - > state = = IBWS_READY | |
testctx - > ibwctx - > state = = IBWS_CONNECT_REQUEST | |
testctx - > ibwctx - > state = = IBWS_ERROR )
{
if ( testctx - > stopping ) {
2008-02-04 09:44:24 +03:00
DEBUG ( DEBUG_DEBUG , ( " forcing exit... \n " ) ) ;
2007-02-02 20:54:57 +03:00
testctx - > kill_me = 1 ;
} else {
/* mostly expected case */
ibw_stop ( testctx - > ibwctx ) ;
testctx - > stopping = 1 ;
}
} else
2007-02-01 20:46:44 +03:00
testctx - > kill_me = 1 ;
}
2006-12-14 20:21:39 +03:00
}
2015-10-13 08:19:21 +03:00
static int ibwtest_parse_attrs ( struct ibwtest_ctx * tcx , char * optext ,
2006-12-14 20:21:39 +03:00
struct ibw_initattr * * pattrs , int * nattrs , char op )
{
int i = 0 , n = 1 ;
int porcess_next = 1 ;
char * p , * q ;
struct ibw_initattr * attrs = NULL ;
* pattrs = NULL ;
for ( p = optext ; * p ! = ' \0 ' ; p + + ) {
if ( * p = = ' , ' )
n + + ;
}
attrs = ( struct ibw_initattr * ) talloc_size ( tcx ,
n * sizeof ( struct ibw_initattr ) ) ;
for ( p = optext ; * p ! = ' \0 ' ; p + + ) {
if ( porcess_next ) {
attrs [ i ] . name = p ;
q = strchr ( p , ' : ' ) ;
if ( q = = NULL ) {
fprintf ( stderr , " -%c format error \n " , op ) ;
return - 1 ;
}
* q = ' \0 ' ;
attrs [ i ] . value = q + 1 ;
porcess_next = 0 ;
i + + ;
2007-01-25 13:01:59 +03:00
p = q ; /* ++ at end */
2006-12-14 20:21:39 +03:00
}
if ( * p = = ' , ' ) {
2007-01-25 13:01:59 +03:00
* p = ' \0 ' ; /* ++ at end */
2006-12-14 20:21:39 +03:00
porcess_next = 1 ;
}
}
* pattrs = attrs ;
* nattrs = n ;
return 0 ;
}
2007-04-26 18:54:24 +04:00
static int ibwtest_get_address ( const char * address , struct in_addr * addr )
{
if ( inet_pton ( AF_INET , address , addr ) < = 0 ) {
struct hostent * he = gethostbyname ( address ) ;
if ( he = = NULL | | he - > h_length > sizeof ( * addr ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " invalid nework address '%s' \n " , address ) ) ;
2007-04-26 18:54:24 +04:00
return - 1 ;
}
memcpy ( addr , he - > h_addr , he - > h_length ) ;
}
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_getdests ( struct ibwtest_ctx * tcx , char op )
2006-12-14 20:21:39 +03:00
{
int i ;
struct ibw_initattr * attrs = NULL ;
struct sockaddr_in * p ;
char * tmp ;
tmp = talloc_strdup ( tcx , optarg ) ;
2009-05-20 14:08:13 +04:00
if ( tmp = = NULL ) return - 1 ;
2006-12-14 20:21:39 +03:00
/* hack to reuse the above ibw_initattr parser */
if ( ibwtest_parse_attrs ( tcx , tmp , & attrs , & tcx - > naddrs , op ) )
return - 1 ;
tcx - > addrs = talloc_size ( tcx ,
tcx - > naddrs * sizeof ( struct sockaddr_in ) ) ;
for ( i = 0 ; i < tcx - > naddrs ; i + + ) {
p = tcx - > addrs + i ;
2007-01-25 13:01:59 +03:00
p - > sin_family = AF_INET ;
2007-04-26 18:54:24 +04:00
if ( ibwtest_get_address ( attrs [ i ] . name , & p - > sin_addr ) )
return - 1 ;
2007-02-14 20:58:20 +03:00
p - > sin_port = htons ( atoi ( attrs [ i ] . value ) ) ;
2006-12-14 20:21:39 +03:00
}
return 0 ;
}
2015-10-13 08:19:21 +03:00
static int ibwtest_init_server ( struct ibwtest_ctx * tcx )
2006-12-14 20:21:39 +03:00
{
if ( tcx - > naddrs ! = 1 ) {
2007-01-25 13:01:59 +03:00
fprintf ( stderr , " incorrect number of addrs(%d!=1) \n " , tcx - > naddrs ) ;
2006-12-14 20:21:39 +03:00
return - 1 ;
}
if ( ibw_bind ( tcx - > ibwctx , & tcx - > addrs [ 0 ] ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " ERROR: ibw_bind failed \n " ) ) ;
2006-12-14 20:21:39 +03:00
return - 1 ;
}
2007-01-25 13:01:59 +03:00
if ( ibw_listen ( tcx - > ibwctx , 1 ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " ERROR: ibw_listen failed \n " ) ) ;
2007-01-25 13:01:59 +03:00
return - 1 ;
}
2006-12-14 20:21:39 +03:00
/* continued at IBWS_READY */
return 0 ;
}
2015-10-13 08:19:21 +03:00
static void ibwtest_usage ( struct ibwtest_ctx * tcx , char * name )
2006-12-14 20:21:39 +03:00
{
printf ( " Usage: \n " ) ;
2006-12-18 22:52:49 +03:00
printf ( " \t %s -i <id> -o {name:value} -d {addr:port} -t nsec -s \n " , name ) ;
2006-12-14 20:21:39 +03:00
printf ( " \t -i <id> is a free text, acting as a server id, max 23 chars [mandatory] \n " ) ;
printf ( " \t -o name1:value1,name2:value2,... is a list of (name, value) pairs \n " ) ;
2007-04-26 19:06:36 +04:00
printf ( " \t -a addr1:port1,addr2:port2,... is a list of destination ip addresses \n " ) ;
2006-12-14 20:21:39 +03:00
printf ( " \t -t nsec delta time between sends in nanosec [default %d] \n " , tcx - > nsec ) ;
2007-01-25 20:57:47 +03:00
printf ( " \t \t send message periodically and endless when nsec is non-zero \n " ) ;
2006-12-14 20:21:39 +03:00
printf ( " \t -s server mode (you have to give exactly one -d address:port in this case) \n " ) ;
2007-01-25 20:57:47 +03:00
printf ( " \t -n number of messages to send [default %d] \n " , tcx - > nmsg ) ;
2007-02-09 20:06:13 +03:00
printf ( " \t -l usec time to sleep in the main loop [default %d] \n " , tcx - > sleep_usec ) ;
2007-02-02 20:54:57 +03:00
printf ( " \t -v max variable msg size in bytes [default %d], 0=don't send var. size \n " , tcx - > maxsize ) ;
2014-09-24 11:12:56 +04:00
printf ( " \t -d LogLevel [default %d] \n " , DEBUGLEVEL ) ;
2006-12-14 20:21:39 +03:00
printf ( " Press ctrl+C to stop the program. \n " ) ;
}
int main ( int argc , char * argv [ ] )
{
int rc , op ;
2007-02-09 20:06:13 +03:00
int result = 1 ;
2010-08-18 03:46:31 +04:00
struct tevent_context * ev = NULL ;
2006-12-14 20:21:39 +03:00
struct ibwtest_ctx * tcx = NULL ;
2007-01-26 18:45:51 +03:00
float usec ;
2006-12-14 20:21:39 +03:00
tcx = talloc_zero ( NULL , struct ibwtest_ctx ) ;
memset ( tcx , 0 , sizeof ( struct ibwtest_ctx ) ) ;
2007-01-25 20:57:47 +03:00
tcx - > nsec = 0 ;
tcx - > nmsg = 1000 ;
2014-09-24 11:12:56 +04:00
DEBUGLEVEL = 0 ;
2006-12-14 20:21:39 +03:00
/* here is the only case we can't avoid using global... */
testctx = tcx ;
2007-02-01 20:46:44 +03:00
signal ( SIGINT , ibwtest_sigint_handler ) ;
2007-02-02 20:54:57 +03:00
srand ( ( unsigned ) time ( NULL ) ) ;
2006-12-14 20:21:39 +03:00
2007-04-26 19:09:30 +04:00
while ( ( op = getopt ( argc , argv , " i:o:d:m:st:n:l:v:a: " ) ) ! = - 1 ) {
2006-12-14 20:21:39 +03:00
switch ( op ) {
case ' i ' :
tcx - > id = talloc_strdup ( tcx , optarg ) ;
break ;
case ' o ' :
tcx - > opts = talloc_strdup ( tcx , optarg ) ;
2009-05-20 14:08:13 +04:00
if ( tcx - > opts ) goto cleanup ;
2006-12-14 20:21:39 +03:00
if ( ibwtest_parse_attrs ( tcx , tcx - > opts , & tcx - > attrs ,
& tcx - > nattrs , op ) )
goto cleanup ;
break ;
2007-04-26 19:06:36 +04:00
case ' a ' :
2006-12-14 20:21:39 +03:00
if ( ibwtest_getdests ( tcx , op ) )
goto cleanup ;
break ;
case ' s ' :
tcx - > is_server = 1 ;
break ;
2007-01-25 13:01:59 +03:00
case ' t ' :
tcx - > nsec = ( unsigned int ) atoi ( optarg ) ;
break ;
2007-01-26 18:45:51 +03:00
case ' n ' :
tcx - > nmsg = atoi ( optarg ) ;
break ;
2007-01-30 20:47:26 +03:00
case ' l ' :
2007-02-09 20:06:13 +03:00
tcx - > sleep_usec = ( unsigned int ) atoi ( optarg ) ;
2007-01-30 20:47:26 +03:00
break ;
2007-02-02 20:54:57 +03:00
case ' v ' :
tcx - > maxsize = ( unsigned int ) atoi ( optarg ) ;
break ;
2007-04-26 19:06:36 +04:00
case ' d ' :
2014-09-24 11:12:56 +04:00
DEBUGLEVEL = atoi ( optarg ) ;
2007-04-26 18:54:24 +04:00
break ;
2006-12-14 20:21:39 +03:00
default :
fprintf ( stderr , " ERROR: unknown option -%c \n " , ( char ) op ) ;
ibwtest_usage ( tcx , argv [ 0 ] ) ;
goto cleanup ;
}
}
if ( tcx - > id = = NULL ) {
ibwtest_usage ( tcx , argv [ 0 ] ) ;
goto cleanup ;
}
2015-10-26 08:50:09 +03:00
ev = tevent_context_init ( NULL ) ;
2006-12-14 20:21:39 +03:00
assert ( ev ) ;
tcx - > ibwctx = ibw_init ( tcx - > attrs , tcx - > nattrs ,
tcx ,
ibwtest_connstate_handler ,
ibwtest_receive_handler ,
2006-12-18 22:52:49 +03:00
ev
2006-12-14 20:21:39 +03:00
) ;
if ( ! tcx - > ibwctx )
goto cleanup ;
if ( tcx - > is_server )
rc = ibwtest_init_server ( tcx ) ;
else
rc = ibwtest_connect_everybody ( tcx ) ;
if ( rc )
goto cleanup ;
2007-01-30 20:47:26 +03:00
while ( ! tcx - > kill_me & & ! tcx - > error ) {
if ( tcx - > nsec ) {
2015-10-26 08:50:09 +03:00
tevent_add_timer ( ev , tcx ,
timeval_current_ofs ( 0 , tcx - > nsec ) ,
ibwtest_timeout_handler , tcx ) ;
2007-01-30 20:47:26 +03:00
}
2015-10-26 08:50:09 +03:00
tevent_loop_once ( ev ) ;
2007-01-30 20:47:26 +03:00
2007-02-09 20:06:13 +03:00
if ( tcx - > sleep_usec )
usleep ( tcx - > sleep_usec ) ;
2006-12-14 20:21:39 +03:00
}
2007-02-09 20:06:13 +03:00
if ( ! tcx - > is_server & & tcx - > nsent ! = 0 & & ! tcx - > error ) {
2007-01-26 18:45:51 +03:00
if ( gettimeofday ( & tcx - > end_time , NULL ) ) {
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " gettimeofday error %d \n " , errno ) ) ;
2007-01-26 18:45:51 +03:00
goto cleanup ;
}
usec = ( tcx - > end_time . tv_sec - tcx - > start_time . tv_sec ) * 1000000 +
( tcx - > end_time . tv_usec - tcx - > start_time . tv_usec ) ;
printf ( " usec: %f, nmsg: %d, usec/nmsg: %f \n " ,
2007-02-09 20:06:13 +03:00
usec , tcx - > nsent , usec / ( float ) tcx - > nsent ) ;
2007-01-26 18:45:51 +03:00
}
2007-01-30 20:47:26 +03:00
if ( ! tcx - > error )
result = 0 ; /* everything OK */
2006-12-14 20:21:39 +03:00
cleanup :
if ( tcx )
talloc_free ( tcx ) ;
if ( ev )
talloc_free ( ev ) ;
2008-02-04 12:07:15 +03:00
DEBUG ( DEBUG_ERR , ( " exited with code %d \n " , result ) ) ;
2006-12-14 20:21:39 +03:00
return result ;
}