X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Futil-int.c;h=c5d17fc4dd825610d39bec7db7f7b2cb42e61606;hb=64d5725662d33a168055df6db2ea06c366a1d0f1;hp=cdf99790c3cca1a94776ba7a4cfd38adf8986a12;hpb=0024cf2f4b10b0b61c57450aeb27adaea376d259;p=openldap diff --git a/libraries/libldap/util-int.c b/libraries/libldap/util-int.c index cdf99790c3..c5d17fc4dd 100644 --- a/libraries/libldap/util-int.c +++ b/libraries/libldap/util-int.c @@ -1,7 +1,11 @@ +/* + * Copyright 1998-1999 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. * @@ -15,9 +19,10 @@ * in file LICENSE in the top-level directory of the distribution. */ + #include "portable.h" -#include +#include #include #include @@ -26,67 +31,136 @@ #include "ldap-int.h" -char *ldap_int_strtok( char *str, const char *delim, char **pos ) -{ -#ifdef HAVE_STRTOK_R - return strtok_r(str, delim, pos); +#if defined( LDAP_R_COMPILE ) +# include #else - return strtok(str, delim); +# undef HAVE_REENTRANT_FUNCTIONS +#endif + +#if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \ + && defined( CTIME_R_NARGS ) +# define USE_CTIME_R #endif -} -char *ldap_int_ctime( const time_t *tp, char *buf ) +#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 +# ifndef HAVE_GETHOSTBYNAME_R + static ldap_pvt_thread_mutex_t ldap_int_gethostbyname_mutex; +# endif +# ifndef HAVE_GETHOSTBYADDR_R + static ldap_pvt_thread_mutex_t ldap_int_gethostbyaddr_mutex; +# endif +#endif /* LDAP_R_COMPILE */ + +char *ldap_pvt_ctime( const time_t *tp, char *buf ) { -#ifdef HAVE_CTIME_R +#ifdef USE_CTIME_R +# if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2) +# 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 - return ctime(tp); +# ifdef LDAP_R_COMPILE + ldap_pvt_thread_mutex_lock( &ldap_int_ctime_mutex ); +# endif + memcpy( buf, ctime(tp), 26 ); +# ifdef LDAP_R_COMPILE + ldap_pvt_thread_mutex_unlock( &ldap_int_ctime_mutex ); +# endif + return buf; #endif } #define BUFSTART 1024 #define BUFMAX (32*1024) -static char *safe_realloc( char **buf, int len ) -{ - char *tmpbuf; - tmpbuf = realloc( *buf, len ); - if (tmpbuf) { - *buf=tmpbuf; - } - return tmpbuf; -} - -int ldap_int_gethostbyname_a( +static char *safe_realloc( char **buf, int len ); +static int copy_hostent( struct hostent *res, char **buf, struct hostent * src ); + +int ldap_pvt_gethostbyname_a( const char *name, struct hostent *resbuf, char **buf, struct hostent **result, int *herrno_ptr ) { -#ifdef HAVE_GETHOSTBYNAME_R - int r; +#if defined( HAVE_GETHOSTBYNAME_R ) + +# define NEED_SAFE_REALLOC 1 + int r=-1; int buflen=BUFSTART; + *buf = NULL; + 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++; + } + + for( n_addr=0, p=src->h_addr_list; (*p) ; p++ ) { + n_addr++; + } + 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; + + if (safe_realloc( buf, total_len )) { + tp = (char **) *buf; + tbuf = *buf + (n_alias + n_addr + 2) * sizeof( char * ); + memcpy( res, src, sizeof( struct hostent ) ); + /* first the name... */ + 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 ); + *tp++=NULL; + /* finally the addresses */ + res->h_addr_list = tp; + tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length ); + *tp++=NULL; + return 0; + } return -1; } +#endif + +#if defined( NEED_SAFE_REALLOC ) +static char *safe_realloc( char **buf, int len ) +{ + char *tmpbuf; + tmpbuf = LDAP_REALLOC( *buf, len ); + if (tmpbuf) { + *buf=tmpbuf; + } + return tmpbuf; +} +#endif + +