X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Futil-int.c;h=ffd221408188583f5ed92d32ba69f32e78ef8ad8;hb=a2eec74fc1d535fa9092f4d7b82a669b39eef539;hp=e2b36c5f12d9d8e469bd051bb8d3a529fcd46ef1;hpb=027d2fadc635098e4238f3acc391748ba87950e4;p=openldap diff --git a/libraries/libldap/util-int.c b/libraries/libldap/util-int.c index e2b36c5f12..ffd2214081 100644 --- a/libraries/libldap/util-int.c +++ b/libraries/libldap/util-int.c @@ -1,11 +1,12 @@ +/* $OpenLDAP$ */ /* - * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ /* * util-int.c Various functions to replace missing threadsafe ones. - * Without the real *_r funcs, things will work, but won't be - * threadsafe. + * Without the real *_r funcs, things will + * work, but might not be threadsafe. * * Written by Bart Hartgers. * @@ -19,128 +20,74 @@ * in file LICENSE in the top-level directory of the distribution. */ + #include "portable.h" -#include +#include #include #include #include #include +#include #include "ldap-int.h" #if defined( LDAP_R_COMPILE ) # include -# if !defined( HAVE_REENTRANT_FUNCTIONS ) -# if !defined( HAVE_CTIME_R ) -# define LDAP_INT_CTIME_MUTEX 1 -# endif -# if !defined( HAVE_GETHOSTBYNAME_R ) -# define LDAP_INT_GETHOSTBYNAME_MUTEX 1 -# endif -# if !defined( HAVE_GETHOSTBYADDR_R ) -# define LDAP_INT_GETHOSTBYADDR_MUTEX 1 -# endif -# endif /* defined( HAVE_REENTRANT_FUNCTIONS ) */ - -#if defined( LDAP_INT_CTIME_MUTEX ) -static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex; -#endif -#if defined( LDAP_INT_GETHOSTBYNAME_MUTEX ) -static ldap_pvt_thread_mutex_t ldap_int_gethostbyname_mutex; -#endif -#if defined( LDAP_INT_GETHOSTBYADDR_MUTEX ) -static ldap_pvt_thread_mutex_t ldap_int_gethostbyaddr_mutex; -#endif -#else /* LDAP_R_COMPILE */ -#undef HAVE_REENTRANT_FUNCTIONS -#endif - -#if defined ( HAVE_STRSPN ) -#define int_strspn strspn #else -static int int_strspn( const char *str, const char *delim ) -{ - int pos; - const char *p=delim; - for( pos=0; (*str) ; pos++,str++) { - if (*str!=*p) - for( p=delim; (*p) ; p++ ) { - if (*str==*p) - break; - } - if (*p=='\0') - return pos; - } - return pos; -} +# undef HAVE_REENTRANT_FUNCTIONS #endif -#if defined( HAVE_STRPBRK ) -#define int_strpbrk strpbrk -#else -static char *int_strpbrk( const char *str, const char *accept ) -{ - const char *p; - for( ; (*str) ; str++ ) { - for( p=accept; (*p) ; p++) { - if (*str==*p) - return str; - } - } - return NULL; -} +#if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \ + && defined( CTIME_R_NARGS ) +# define USE_CTIME_R #endif -char *ldap_pvt_strtok( char *str, const char *delim, char **pos ) -{ -#if defined( HAVE_STRTOK_R ) || defined( HAVE_REENTRANT_FUNCTIONS ) - return strtok_r(str, delim, pos); -#else - char *p; - - if (pos==NULL) - return NULL; - if (str==NULL) { - if (*pos==NULL) - return NULL; - str=*pos; - } - /* skip any initial delimiters */ - str += int_strspn( str, delim ); - if (*str == '\0') - return NULL; - p = int_strpbrk( str, delim ); - if (p==NULL) { - *pos = NULL; - } else { - *p ='\0'; - *pos = p+1; - } - return str; +#if defined(HAVE_GETHOSTBYNAME_R) && \ + (GETHOSTBYNAME_R_NARGS > 6 || GETHOSTBYNAME_R_NARGS < 5) + /* Don't know how to handle this version, pretend it's not there */ +# undef HAVE_GETHOSTBYNAME_R #endif -} +#if defined(HAVE_GETHOSTBYADDR_R) && \ + (GETHOSTBYADDR_R_NARGS > 8 || GETHOSTBYADDR_R_NARGS < 7) + /* Don't know how to handle this version, pretend it's not there */ +# undef HAVE_GETHOSTBYADDR_R +#endif + +#ifdef LDAP_R_COMPILE +# ifndef USE_CTIME_R + static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex; +# endif +# if !defined( HAVE_GETHOSTBYNAME_R ) || !defined( HAVE_GETHOSTBYADDR_R ) + static ldap_pvt_thread_mutex_t ldap_int_gethostby_mutex; +# endif +# ifdef HAVE_RES_QUERY + ldap_pvt_thread_mutex_t ldap_int_resolv_mutex; +# endif +#endif /* LDAP_R_COMPILE */ char *ldap_pvt_ctime( const time_t *tp, char *buf ) { -#if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \ - && defined( CTIME_R_NARGS ) +#ifdef USE_CTIME_R # if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2) - choke me! nargs should have 2 or 3 +# error "CTIME_R_NARGS should be 2 or 3" +# elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT) + return( ctime_r(tp,buf,26) < 0 ? 0 : buf ); # elif CTIME_R_NARGS > 2 return ctime_r(tp,buf,26); # else return ctime_r(tp,buf); # endif + #else -# if defined( LDAP_INT_CTIME_MUTEX ) +# ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_lock( &ldap_int_ctime_mutex ); -# endif - memcpy( buf, ctime(tp), 26 ); -# if defined( LDAP_INT_CTIME_MUTEX ) +# endif + AC_MEMCPY( buf, ctime(tp), 26 ); +# ifdef LDAP_R_COMPILE ldap_pvt_thread_mutex_unlock( &ldap_int_ctime_mutex ); -# endif +# endif return buf; #endif } @@ -149,7 +96,10 @@ char *ldap_pvt_ctime( const time_t *tp, char *buf ) #define BUFMAX (32*1024) static char *safe_realloc( char **buf, int len ); + +#if !defined(HAVE_GETHOSTBYNAME_R) && defined(LDAP_R_COMPILE) static int copy_hostent( struct hostent *res, char **buf, struct hostent * src ); +#endif int ldap_pvt_gethostbyname_a( const char *name, @@ -158,7 +108,8 @@ int ldap_pvt_gethostbyname_a( struct hostent **result, int *herrno_ptr ) { -#if defined( HAVE_GETHOSTBYNAME_R ) || defined( HAVE_REENTRANT_FUNCTIONS ) +#if defined( HAVE_GETHOSTBYNAME_R ) + # define NEED_SAFE_REALLOC 1 int r=-1; int buflen=BUFSTART; @@ -166,8 +117,19 @@ int ldap_pvt_gethostbyname_a( for(;buflenh_name ) + 1; - for( n_alias=total_alias_len=0, p=src->h_aliases; (*p) ; p++ ) { - total_alias_len += strlen( *p ) + 1; - n_alias++; + if( src->h_aliases != NULL ) { + for( p = src->h_aliases; (*p) != NULL; p++ ) { + total_alias_len += strlen( *p ) + 1; + n_alias++; + } } - for( n_addr=0, p=src->h_addr_list; (*p) ; p++ ) { - n_addr++; + if( src->h_addr_list != NULL ) { + for( p = src->h_addr_list; (*p) != NULL; p++ ) { + n_addr++; + } + total_addr_len = n_addr * src->h_length; } - total_addr_len = n_addr * src->h_length; total_len = (n_alias + n_addr + 2) * sizeof( char * ) + total_addr_len + total_alias_len + name_len; @@ -367,17 +351,21 @@ static int copy_hostent( struct hostent *res, char **buf, struct hostent * src ) if (safe_realloc( buf, total_len )) { tp = (char **) *buf; tbuf = *buf + (n_alias + n_addr + 2) * sizeof( char * ); - memcpy( res, src, sizeof( struct hostent ) ); + AC_MEMCPY( res, src, sizeof( struct hostent ) ); /* first the name... */ - memcpy( tbuf, src->h_name, name_len ); + AC_MEMCPY( tbuf, src->h_name, name_len ); res->h_name = tbuf; tbuf+=name_len; /* now the aliases */ res->h_aliases = tp; - tbuf = cpy_aliases( &tp, tbuf, src->h_aliases ); + if ( src->h_aliases != NULL ) { + tbuf = cpy_aliases( &tp, tbuf, src->h_aliases ); + } *tp++=NULL; /* finally the addresses */ res->h_addr_list = tp; - tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length ); + if ( src->h_addr_list != NULL ) { + tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length ); + } *tp++=NULL; return 0; } @@ -389,7 +377,7 @@ static int copy_hostent( struct hostent *res, char **buf, struct hostent * src ) static char *safe_realloc( char **buf, int len ) { char *tmpbuf; - tmpbuf = realloc( *buf, len ); + tmpbuf = LDAP_REALLOC( *buf, len ); if (tmpbuf) { *buf=tmpbuf; } @@ -397,4 +385,67 @@ static char *safe_realloc( char **buf, int len ) } #endif +char * ldap_pvt_get_fqdn( char *name ) +{ + char *fqdn, *ha_buf; + char hostbuf[MAXHOSTNAMELEN+1]; + struct hostent *hp, he_buf; + int rc, local_h_errno; + + if( name == NULL ) { + if( gethostname( hostbuf, MAXHOSTNAMELEN ) == 0 ) { + hostbuf[MAXHOSTNAMELEN] = '\0'; + name = hostbuf; + } else { + name = "localhost"; + } + } + + rc = ldap_pvt_gethostbyname_a( name, + &he_buf, &ha_buf, &hp, &local_h_errno ); + + if( rc < 0 || hp == NULL || hp->h_name == NULL ) { + fqdn = LDAP_STRDUP( name ); + } else { + fqdn = LDAP_STRDUP( hp->h_name ); + } + + LDAP_FREE( ha_buf ); + return fqdn; +} + +#if defined( HAVE_GETADDRINFO ) && !defined( HAVE_GAI_STRERROR ) +char *ldap_pvt_gai_strerror (int code) { + static struct { + int code; + const char *msg; + } values[] = { +#ifdef EAI_ADDRFAMILY + { EAI_ADDRFAMILY, "Address family for hostname not supported" }, +#endif + { EAI_AGAIN, "Temporary failure in name resolution" }, + { EAI_BADFLAGS, "Bad value for ai_flags" }, + { EAI_FAIL, "Non-recoverable failure in name resolution" }, + { EAI_FAMILY, "ai_family not supported" }, + { EAI_MEMORY, "Memory allocation failure" }, +#ifdef EAI_NODATA + { EAI_NODATA, "No address associated with hostname" }, +#endif + { EAI_NONAME, "Name or service not known" }, + { EAI_SERVICE, "Servname not supported for ai_socktype" }, + { EAI_SOCKTYPE, "ai_socktype not supported" }, + { EAI_SYSTEM, "System error" }, + { 0, NULL } + }; + int i; + + for ( i = 0; values[i].msg != NULL; i++ ) { + if ( values[i].code == code ) { + return (char *) values[i].msg; + } + } + + return "Unknown error"; +} +#endif