X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Frmr%2Fcommon%2Fsrc%2Ftools_static.c;h=2d2cc229716d772b1ac52e53eaeb89e439c76a7a;hb=15fb8a6128ee4f8b4d7096f13422aebe4afd2fec;hp=df49dd848722ec2aac5e67dc3f122e1f422392b8;hpb=316614a9808fcd107daa1b5ec190f6b2a9d804c3;p=ric-plt%2Flib%2Frmr.git diff --git a/src/rmr/common/src/tools_static.c b/src/rmr/common/src/tools_static.c index df49dd8..2d2cc22 100644 --- a/src/rmr/common/src/tools_static.c +++ b/src/rmr/common/src/tools_static.c @@ -1,8 +1,8 @@ // :vi sw=4 ts=4 noet: /* ================================================================================== - Copyright (c) 2019 Nokia - Copyright (c) 2018-2019 AT&T Intellectual Property. + Copyright (c) 2019-2021 Nokia + Copyright (c) 2018-2021 AT&T Intellectual Property. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -55,11 +55,47 @@ #include // --- some protos needed for better organisation -------- -int is_this_myip( if_addrs_t* l, char* addr ); +static int is_this_myip( if_addrs_t* l, char* addr ); // ---------------------------------------------------------------------------------- + +/* + A strncpy() replacement that ensures the resulting dest buffer has + a zero (nil) terminator even if the source is longer than the dest + length. + A max of len-1 bytes are copied from src to dest. The copy stops when + a zero (nil) is encountered in the src, or len-1 bytes are copied. + The string is always nil terminated. + The string length is returned. + + It is the responsiblity of the caller to ensure that dest is at + least len bytes in length. + + If either src/dest is invalid (nil) a value of -1 is returned. +*/ +static inline int zt_buf_fill( char* dest, char const* src, int len ) { + char* dp; + char const* sp; + int n; // num moved + + if( dest == NULL || src == NULL ) { + return -1; + } + + dp = dest; + sp = src; + n = 0; + while( *sp && n < len-1 ) { + *(dp++) = *(sp++); + n++; + } + + *dp = 0; + return n; +} + /* Simple tokeniser. Split a null terminated string into tokens recording the pointers in the tokens array provided. Tokens MUST be large enough. Max is @@ -151,7 +187,7 @@ static char* uta_h2ip( char const* hname ) { *(tok++) = 0; } - hent = gethostbyname( dname ); + hent = gethostbyname( dname ); // valgrind will complain that this leaks, but we cannot free it! if( hent == NULL || hent->h_addr_list == NULL ) { //rmr_vlog( RMR_VL_WARN, "h2ip: dns lookup failed for: %s\n", dname ); free( dname ); @@ -175,6 +211,7 @@ static char* uta_h2ip( char const* hname ) { } +#ifdef RTG_PUB /* Looks for the environment variable RMR_RTG_SVC which we assume to be name[:port], and does a dns lookup on the name. If the env does not have such a variable, we default to @@ -223,6 +260,7 @@ static int uta_lookup_rtg( uta_ctx_t* ctx ) { return ctx->rtg_addr != NULL; } +#endif /* @@ -290,13 +328,13 @@ static int uta_has_str( char const* buf, char const* str, char sep, int max ) { The ENV_BIN_IF environment variable may be either an IP address (v6 must be in square braces), or an interface name (e.g. eth0). */ -if_addrs_t* mk_ip_list( char* port ) { +static if_addrs_t* mk_ip_list( char* port ) { if_addrs_t* l; struct ifaddrs *ifs; // pointer to head struct ifaddrs *ele; // pointer into the list char octs[NI_MAXHOST+1]; char wbuf[NI_MAXHOST+128]; - char* fmt; + char* fmt = NULL; // address format (v4 or v6) char* envp; // at the environment var if there char* target_if = NULL; // target interface supplied by ENV_BIND_IF char* tok; @@ -327,6 +365,7 @@ if_addrs_t* mk_ip_list( char* port ) { getifaddrs( &ifs ); for( ele = ifs; ele; ele = ele->ifa_next ) { memset( octs, 0, sizeof( octs ) ); + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "checking interface: %s\n", ele->ifa_name ); if( ele && strcmp( ele->ifa_name, "lo" ) && // do NOT capture the loopback interface address (target_if == NULL || strcmp( ele->ifa_name, target_if ) == 0 ) ) { // no target, or matches ENV_BIND_IF target @@ -338,21 +377,28 @@ if_addrs_t* mk_ip_list( char* port ) { if( ele->ifa_addr->sa_family == AF_INET6 ) { getnameinfo( ele->ifa_addr, sizeof( struct sockaddr_in6 ), octs, NI_MAXHOST, NULL, 0, NI_NUMERICHOST ); fmt = "[%s]:%s"; + } else { + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "unrecognised IF family (not v4 or v6)\n" ); + continue; } } - } - if( *octs ) { - if( (tok = strchr( octs, '%' )) != NULL ) { // for unknown reasons some ip6 addrs have %if-name appended; truncate - *tok = 0; - } - if( l->naddrs < 128 ) { - if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "capture address: %s: %s\n", ele->ifa_name, octs ); + if( *octs && fmt != NULL ) { // possible that we didn't recognise the format (v4 or v6), don't try if we didn't + if( (tok = strchr( octs, '%' )) != NULL ) { // for unknown reasons some ip6 addrs have %if-name appended; truncate + *tok = 0; + } + if( l->naddrs < 128 ) { + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "capture address: %s: %s\n", ele->ifa_name, octs ); - snprintf( wbuf, sizeof( wbuf ), fmt, octs, port ); // smash port onto the addr - l->addrs[l->naddrs] = strdup( wbuf ); - l->naddrs++; + snprintf( wbuf, sizeof( wbuf ), fmt, octs, port ); // smash port onto the addr + l->addrs[l->naddrs] = strdup( wbuf ); + l->naddrs++; + } + } else { + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "unrecognised or no octets octs=%x fmt=%p\n", *octs, fmt ); } + } else { + if( DEBUG ) rmr_vlog( RMR_VL_DEBUG, "no ip address for interface: %s\n", ele->ifa_name ); } } } @@ -371,7 +417,7 @@ if_addrs_t* mk_ip_list( char* port ) { do a straight search through the list. We don't expect this to ever be a higly driven functions so not bothering to optimise. */ -int is_this_myip( if_addrs_t* l, char* addr ) { +static int is_this_myip( if_addrs_t* l, char* addr ) { int i; if( l == NULL ) {