X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Frmr%2Fsi%2Fsrc%2Frmr_si.c;fp=src%2Frmr%2Fsi%2Fsrc%2Frmr_si.c;h=e50a8dfcf9e8ed35783c824df8b8117428822250;hb=a68562a02028434a87149d5996b291e83d33be51;hp=52007fce369f798a4bfad9a52b681cd79f32dad3;hpb=39a4b3f6c7b15bde074d68023cf5fe1901d40996;p=ric-plt%2Flib%2Frmr.git diff --git a/src/rmr/si/src/rmr_si.c b/src/rmr/si/src/rmr_si.c index 52007fc..e50a8df 100644 --- a/src/rmr/si/src/rmr_si.c +++ b/src/rmr/si/src/rmr_si.c @@ -623,6 +623,7 @@ static void* init( char* uproto_port, int def_msg_size, int flags ) { static int announced = 0; uta_ctx_t* ctx = NULL; char bind_info[256]; // bind info + char* my_ip = NULL; char* proto = "tcp"; // pointer into the proto/port string user supplied char* port; // pointer into the proto_port buffer at the port value char* interface = NULL; // interface to bind to (from RMR_BIND_IF, 0.0.0.0 if not defined) @@ -752,17 +753,19 @@ static void* init( char* uproto_port, int def_msg_size, int flags ) { } } - ctx->ip_list = mk_ip_list( port ); // suss out all IP addresses we can find on the box, and bang on our port for RT comparisons + ctx->ip_list = mk_ip_list( port ); // suss out all IP addresses we can find on the box, and bang on our port for RT comparisons + my_ip = get_default_ip( ctx->ip_list ); // and (guess) at what should be the default to put into messages as src + if( my_ip == NULL ) { + rmr_vlog( RMR_VL_WARN, "rmr_init: default ip address could not be sussed out, using name\n" ); + my_ip = strdup( ctx->my_name ); // if we cannot suss it out, use the name rather than a nil pointer + } + if( flags & RMRFL_NAME_ONLY ) { ctx->my_ip = strdup( ctx->my_name ); // user application or env var has specified that IP address is NOT sent out, use name } else { - ctx->my_ip = get_default_ip( ctx->ip_list ); // and (guess) at what should be the default to put into messages as src - if( ctx->my_ip == NULL ) { - rmr_vlog( RMR_VL_WARN, "rmr_init: default ip address could not be sussed out, using name\n" ); - ctx->my_ip = strdup( ctx->my_name ); // if we cannot suss it out, use the name rather than a nil pointer - } + ctx->my_ip = strdup( my_ip ); } - if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, " default ip address: %s\n", ctx->my_ip ); + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "default ip address: %s\n", ctx->my_ip ); if( (tok = getenv( ENV_WARNINGS )) != NULL ) { if( *tok == '1' ) { @@ -770,9 +773,24 @@ static void* init( char* uproto_port, int def_msg_size, int flags ) { } } + if( (interface = getenv( ENV_BIND_IF )) == NULL ) { // if specific interface not defined, listen on all (IPv4, IPv6, or interface name) + /* + compares the first ip sussed out by mk_ip_list (returned by get_default_ip) + NOTE: this might be not work very predictable in dual-stack where an interface can have IPv4 and IPv6 addresses assigned, + meaning that it can select either IPv4 or IPv6 on applications restarts (depends on the order of IP addresses assigned on the interface) + */ + if( my_ip[0] == '[' ) { // IPv6 + interface = "[::]"; + } else { // IPv4 + interface = "0.0.0.0"; + if( flags & RMRFL_NAME_ONLY ) { // if hostname is given instead of IP in RMR source address + rmr_vlog( RMR_VL_WARN, "rmr_init: hostname:ip is provided as source information for rts() calls, falling back to any IPv4\n" ); + } + } + } - if( (interface = getenv( ENV_BIND_IF )) == NULL ) { // if specific interface not defined, listen on all - interface = "0.0.0.0"; + if( my_ip != NULL ) { + free( my_ip ); } snprintf( bind_info, sizeof( bind_info ), "%s:%s", interface, port );