2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2015 The OpenLDAP Foundation.
5 * Portions Copyright 1998 A. Hartgers.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
17 * This work was initially developed by Bart Hartgers for inclusion in
22 * util-int.c Various functions to replace missing threadsafe ones.
23 * Without the real *_r funcs, things will
24 * work, but might not be threadsafe.
29 #include <ac/stdlib.h>
32 #include <ac/socket.h>
33 #include <ac/string.h>
35 #include <ac/unistd.h>
40 /* newer systems declare this in <netdb.h> for you, older ones don't.
41 * harmless to declare it again (unless defined by a macro).
47 # define HSTRERROR(e) hstrerror(e)
49 # define HSTRERROR(e) hp_strerror(e)
52 #ifndef LDAP_R_COMPILE
53 # undef HAVE_REENTRANT_FUNCTIONS
55 # undef HAVE_GETHOSTBYNAME_R
56 # undef HAVE_GETHOSTBYADDR_R
59 # include <ldap_pvt_thread.h>
60 ldap_pvt_thread_mutex_t ldap_int_resolv_mutex;
61 ldap_pvt_thread_mutex_t ldap_int_hostname_mutex;
62 static ldap_pvt_thread_mutex_t ldap_int_gettime_mutex;
64 # if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \
65 && defined( CTIME_R_NARGS )
68 static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex;
71 /* USE_GMTIME_R and USE_LOCALTIME_R defined in ldap_pvt.h */
73 #if !defined( USE_GMTIME_R ) || !defined( USE_LOCALTIME_R )
74 /* we use the same mutex for gmtime(3) and localtime(3)
75 * because implementations may use the same buffer
76 * for both functions */
77 static ldap_pvt_thread_mutex_t ldap_int_gmtime_mutex;
80 # if defined(HAVE_GETHOSTBYNAME_R) && \
81 (GETHOSTBYNAME_R_NARGS < 5) || (6 < GETHOSTBYNAME_R_NARGS)
82 /* Don't know how to handle this version, pretend it's not there */
83 # undef HAVE_GETHOSTBYNAME_R
85 # if defined(HAVE_GETHOSTBYADDR_R) && \
86 (GETHOSTBYADDR_R_NARGS < 7) || (8 < GETHOSTBYADDR_R_NARGS)
87 /* Don't know how to handle this version, pretend it's not there */
88 # undef HAVE_GETHOSTBYADDR_R
90 #endif /* LDAP_R_COMPILE */
92 char *ldap_pvt_ctime( const time_t *tp, char *buf )
95 # if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2)
96 # error "CTIME_R_NARGS should be 2 or 3"
97 # elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT)
98 return( ctime_r(tp,buf,26) < 0 ? 0 : buf );
99 # elif CTIME_R_NARGS > 2
100 return ctime_r(tp,buf,26);
102 return ctime_r(tp,buf);
107 LDAP_MUTEX_LOCK( &ldap_int_ctime_mutex );
108 AC_MEMCPY( buf, ctime(tp), 26 );
109 LDAP_MUTEX_UNLOCK( &ldap_int_ctime_mutex );
115 #if !defined( USE_GMTIME_R ) || !defined( USE_LOCALTIME_R )
117 ldap_pvt_gmtime_lock( void )
119 # ifndef LDAP_R_COMPILE
121 # else /* LDAP_R_COMPILE */
122 return ldap_pvt_thread_mutex_lock( &ldap_int_gmtime_mutex );
123 # endif /* LDAP_R_COMPILE */
127 ldap_pvt_gmtime_unlock( void )
129 # ifndef LDAP_R_COMPILE
131 # else /* LDAP_R_COMPILE */
132 return ldap_pvt_thread_mutex_unlock( &ldap_int_gmtime_mutex );
133 # endif /* LDAP_R_COMPILE */
135 #endif /* !USE_GMTIME_R || !USE_LOCALTIME_R */
139 ldap_pvt_gmtime( const time_t *timep, struct tm *result )
143 LDAP_MUTEX_LOCK( &ldap_int_gmtime_mutex );
144 tm_ptr = gmtime( timep );
145 if ( tm_ptr == NULL ) {
151 LDAP_MUTEX_UNLOCK( &ldap_int_gmtime_mutex );
155 #endif /* !USE_GMTIME_R */
157 #ifndef USE_LOCALTIME_R
159 ldap_pvt_localtime( const time_t *timep, struct tm *result )
163 LDAP_MUTEX_LOCK( &ldap_int_gmtime_mutex );
164 tm_ptr = localtime( timep );
165 if ( tm_ptr == NULL ) {
171 LDAP_MUTEX_UNLOCK( &ldap_int_gmtime_mutex );
175 #endif /* !USE_LOCALTIME_R */
177 /* return a broken out time, with microseconds
180 /* Windows SYSTEMTIME only has 10 millisecond resolution, so we
181 * also need to use a high resolution timer to get microseconds.
182 * This is pretty clunky.
185 ldap_pvt_gettime( struct lutil_tm *tm )
187 static LARGE_INTEGER cFreq;
188 static LARGE_INTEGER prevCount;
194 GetSystemTime( &st );
195 QueryPerformanceCounter( &count );
197 /* It shouldn't ever go backwards, but multiple CPUs might
198 * be able to hit in the same tick.
200 LDAP_MUTEX_LOCK( &ldap_int_gettime_mutex );
201 if ( count.QuadPart <= prevCount.QuadPart ) {
207 LDAP_MUTEX_UNLOCK( &ldap_int_gettime_mutex );
209 /* We assume Windows has at least a vague idea of
210 * when a second begins. So we align our microsecond count
211 * with the Windows millisecond count using this offset.
212 * We retain the submillisecond portion of our own count.
214 * Note - this also assumes that the relationship between
215 * the PerformanceCouunter and SystemTime stays constant;
216 * that assumption breaks if the SystemTime is adjusted by
217 * an external action.
219 if ( !cFreq.QuadPart ) {
222 QueryPerformanceFrequency( &cFreq );
224 /* just get sub-second portion of counter */
225 t = count.QuadPart % cFreq.QuadPart;
227 /* convert to microseconds */
229 usec = t / cFreq.QuadPart;
231 offset = usec - st.wMilliseconds * 1000;
236 /* convert to microseconds */
237 count.QuadPart %= cFreq.QuadPart;
238 count.QuadPart *= 1000000;
239 count.QuadPart /= cFreq.QuadPart;
240 count.QuadPart -= offset;
242 tm->tm_usec = count.QuadPart % 1000000;
243 if ( tm->tm_usec < 0 )
244 tm->tm_usec += 1000000;
246 /* any difference larger than microseconds is
247 * already reflected in st
250 tm->tm_sec = st.wSecond;
251 tm->tm_min = st.wMinute;
252 tm->tm_hour = st.wHour;
253 tm->tm_mday = st.wDay;
254 tm->tm_mon = st.wMonth - 1;
255 tm->tm_year = st.wYear - 1900;
259 ldap_pvt_gettime( struct lutil_tm *ltm )
262 static struct timeval prevTv;
268 gettimeofday( &tv, NULL );
271 LDAP_MUTEX_LOCK( &ldap_int_gettime_mutex );
272 if ( tv.tv_sec < prevTv.tv_sec
273 || ( tv.tv_sec == prevTv.tv_sec && tv.tv_usec <= prevTv.tv_usec )) {
279 LDAP_MUTEX_UNLOCK( &ldap_int_gettime_mutex );
283 ldap_pvt_gmtime( &t, &tm );
285 ltm->tm_sec = tm.tm_sec;
286 ltm->tm_min = tm.tm_min;
287 ltm->tm_hour = tm.tm_hour;
288 ltm->tm_mday = tm.tm_mday;
289 ltm->tm_mon = tm.tm_mon;
290 ltm->tm_year = tm.tm_year;
291 ltm->tm_usec = tv.tv_usec;
296 ldap_pvt_csnstr(char *buf, size_t len, unsigned int replica, unsigned int mod)
301 ldap_pvt_gettime( &tm );
303 n = snprintf( buf, len,
304 "%4d%02d%02d%02d%02d%02d.%06dZ#%06x#%03x#%06x",
305 tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday, tm.tm_hour,
306 tm.tm_min, tm.tm_sec, tm.tm_usec, tm.tm_usub, replica, mod );
308 if( n < 0 ) return 0;
309 return ( (size_t) n < len ) ? n : 0;
312 #define BUFSTART (1024-32)
313 #define BUFMAX (32*1024-32)
315 #if defined(LDAP_R_COMPILE)
316 static char *safe_realloc( char **buf, int len );
318 #if !(defined(HAVE_GETHOSTBYNAME_R) && defined(HAVE_GETHOSTBYADDR_R))
319 static int copy_hostent( struct hostent *res,
320 char **buf, struct hostent * src );
324 int ldap_pvt_gethostbyname_a(
326 struct hostent *resbuf,
328 struct hostent **result,
331 #if defined( HAVE_GETHOSTBYNAME_R )
333 # define NEED_SAFE_REALLOC 1
337 for(;buflen<BUFMAX;) {
338 if (safe_realloc( buf, buflen )==NULL)
341 #if (GETHOSTBYNAME_R_NARGS < 6)
342 *result=gethostbyname_r( name, resbuf, *buf, buflen, herrno_ptr );
343 r = (*result == NULL) ? -1 : 0;
345 r = gethostbyname_r( name, resbuf, *buf,
346 buflen, result, herrno_ptr );
349 Debug( LDAP_DEBUG_TRACE, "ldap_pvt_gethostbyname_a: host=%s, r=%d\n",
352 #ifdef NETDB_INTERNAL
354 (*herrno_ptr==NETDB_INTERNAL) &&
364 #elif defined( LDAP_R_COMPILE )
365 # define NEED_COPY_HOSTENT
370 LDAP_MUTEX_LOCK( &ldap_int_resolv_mutex );
372 he = gethostbyname( name );
375 *herrno_ptr = h_errno;
377 } else if (copy_hostent( resbuf, buf, he )<0) {
385 LDAP_MUTEX_UNLOCK( &ldap_int_resolv_mutex );
390 *result = gethostbyname( name );
396 *herrno_ptr = h_errno;
402 #if !defined( HAVE_GETNAMEINFO ) && !defined( HAVE_HSTRERROR )
404 hp_strerror( int err )
407 case HOST_NOT_FOUND: return _("Host not found (authoritative)");
408 case TRY_AGAIN: return _("Host not found (server fail?)");
409 case NO_RECOVERY: return _("Non-recoverable failure");
410 case NO_DATA: return _("No data of requested type");
411 #ifdef NETDB_INTERNAL
412 case NETDB_INTERNAL: return STRERROR( errno );
415 return _("Unknown resolver error");
419 int ldap_pvt_get_hname(
420 const struct sockaddr *sa,
427 #if defined( HAVE_GETNAMEINFO )
429 LDAP_MUTEX_LOCK( &ldap_int_resolv_mutex );
430 rc = getnameinfo( sa, len, name, namelen, NULL, 0, 0 );
431 LDAP_MUTEX_UNLOCK( &ldap_int_resolv_mutex );
432 if ( rc ) *err = (char *)AC_GAI_STRERROR( rc );
435 #else /* !HAVE_GETNAMEINFO */
438 struct hostent *hp = NULL;
439 #ifdef HAVE_GETHOSTBYADDR_R
441 int buflen=BUFSTART, h_errno;
446 if (sa->sa_family == AF_INET6) {
447 struct sockaddr_in6 *sin = (struct sockaddr_in6 *)sa;
448 addr = (char *)&sin->sin6_addr;
449 alen = sizeof(sin->sin6_addr);
452 if (sa->sa_family == AF_INET) {
453 struct sockaddr_in *sin = (struct sockaddr_in *)sa;
454 addr = (char *)&sin->sin_addr;
455 alen = sizeof(sin->sin_addr);
458 *err = (char *)HSTRERROR( rc );
461 #if defined( HAVE_GETHOSTBYADDR_R )
462 for(;buflen<BUFMAX;) {
463 if (safe_realloc( &buf, buflen )==NULL) {
464 *err = (char *)STRERROR( ENOMEM );
467 #if (GETHOSTBYADDR_R_NARGS < 8)
468 hp=gethostbyaddr_r( addr, alen, sa->sa_family,
469 &hb, buf, buflen, &h_errno );
470 rc = (hp == NULL) ? -1 : 0;
472 rc = gethostbyaddr_r( addr, alen, sa->sa_family,
476 #ifdef NETDB_INTERNAL
478 (h_errno==NETDB_INTERNAL) &&
488 strncpy( name, hp->h_name, namelen );
490 *err = (char *)HSTRERROR( h_errno );
493 #else /* HAVE_GETHOSTBYADDR_R */
495 LDAP_MUTEX_LOCK( &ldap_int_resolv_mutex );
496 hp = gethostbyaddr( addr, alen, sa->sa_family );
498 strncpy( name, hp->h_name, namelen );
502 *err = (char *)HSTRERROR( h_errno );
504 LDAP_MUTEX_UNLOCK( &ldap_int_resolv_mutex );
506 #endif /* !HAVE_GETHOSTBYADDR_R */
508 #endif /* !HAVE_GETNAMEINFO */
511 int ldap_pvt_gethostbyaddr_a(
515 struct hostent *resbuf,
517 struct hostent **result,
520 #if defined( HAVE_GETHOSTBYADDR_R )
522 # undef NEED_SAFE_REALLOC
523 # define NEED_SAFE_REALLOC
527 for(;buflen<BUFMAX;) {
528 if (safe_realloc( buf, buflen )==NULL)
530 #if (GETHOSTBYADDR_R_NARGS < 8)
531 *result=gethostbyaddr_r( addr, len, type,
532 resbuf, *buf, buflen, herrno_ptr );
533 r = (*result == NULL) ? -1 : 0;
535 r = gethostbyaddr_r( addr, len, type,
536 resbuf, *buf, buflen,
537 result, herrno_ptr );
540 #ifdef NETDB_INTERNAL
542 (*herrno_ptr==NETDB_INTERNAL) &&
552 #elif defined( LDAP_R_COMPILE )
553 # undef NEED_COPY_HOSTENT
554 # define NEED_COPY_HOSTENT
559 LDAP_MUTEX_LOCK( &ldap_int_resolv_mutex );
560 he = gethostbyaddr( addr, len, type );
563 *herrno_ptr = h_errno;
565 } else if (copy_hostent( resbuf, buf, he )<0) {
572 LDAP_MUTEX_UNLOCK( &ldap_int_resolv_mutex );
576 #else /* gethostbyaddr() */
578 *result = gethostbyaddr( addr, len, type );
587 * ldap_int_utils_init() should be called before any other function.
590 void ldap_int_utils_init( void )
597 #ifdef LDAP_R_COMPILE
598 #if !defined( USE_CTIME_R ) && !defined( HAVE_REENTRANT_FUNCTIONS )
599 ldap_pvt_thread_mutex_init( &ldap_int_ctime_mutex );
601 #if !defined( USE_GMTIME_R ) && !defined( USE_LOCALTIME_R )
602 ldap_pvt_thread_mutex_init( &ldap_int_gmtime_mutex );
604 ldap_pvt_thread_mutex_init( &ldap_int_resolv_mutex );
606 ldap_pvt_thread_mutex_init( &ldap_int_hostname_mutex );
608 ldap_pvt_thread_mutex_init( &ldap_int_gettime_mutex );
611 ldap_pvt_thread_mutex_init( &ldap_int_gssapi_mutex );
615 /* call other module init functions here... */
618 #if defined( NEED_COPY_HOSTENT )
619 # undef NEED_SAFE_REALLOC
620 #define NEED_SAFE_REALLOC
622 static char *cpy_aliases(
629 for( ; (*src) ; src++ ) {
630 len = strlen( *src ) + 1;
631 AC_MEMCPY( buf, *src, len );
639 static char *cpy_addresses(
646 for( ; (*src) ; src++ ) {
647 AC_MEMCPY( buf, *src, len );
655 static int copy_hostent(
658 struct hostent * src )
665 int total_alias_len=0;
667 int total_addr_len=0;
670 /* calculate the size needed for the buffer */
671 name_len = strlen( src->h_name ) + 1;
673 if( src->h_aliases != NULL ) {
674 for( p = src->h_aliases; (*p) != NULL; p++ ) {
675 total_alias_len += strlen( *p ) + 1;
680 if( src->h_addr_list != NULL ) {
681 for( p = src->h_addr_list; (*p) != NULL; p++ ) {
684 total_addr_len = n_addr * src->h_length;
687 total_len = (n_alias + n_addr + 2) * sizeof( char * ) +
688 total_addr_len + total_alias_len + name_len;
690 if (safe_realloc( buf, total_len )) {
692 tbuf = *buf + (n_alias + n_addr + 2) * sizeof( char * );
693 AC_MEMCPY( res, src, sizeof( struct hostent ) );
694 /* first the name... */
695 AC_MEMCPY( tbuf, src->h_name, name_len );
696 res->h_name = tbuf; tbuf+=name_len;
697 /* now the aliases */
699 if ( src->h_aliases != NULL ) {
700 tbuf = cpy_aliases( &tp, tbuf, src->h_aliases );
703 /* finally the addresses */
704 res->h_addr_list = tp;
705 if ( src->h_addr_list != NULL ) {
706 tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length );
715 #if defined( NEED_SAFE_REALLOC )
716 static char *safe_realloc( char **buf, int len )
719 tmpbuf = LDAP_REALLOC( *buf, len );
727 char * ldap_pvt_get_fqdn( char *name )
730 char hostbuf[MAXHOSTNAMELEN+1];
731 struct hostent *hp, he_buf;
732 int rc, local_h_errno;
735 if( gethostname( hostbuf, MAXHOSTNAMELEN ) == 0 ) {
736 hostbuf[MAXHOSTNAMELEN] = '\0';
743 rc = ldap_pvt_gethostbyname_a( name,
744 &he_buf, &ha_buf, &hp, &local_h_errno );
746 if( rc < 0 || hp == NULL || hp->h_name == NULL ) {
747 fqdn = LDAP_STRDUP( name );
749 fqdn = LDAP_STRDUP( hp->h_name );
756 #if ( defined( HAVE_GETADDRINFO ) || defined( HAVE_GETNAMEINFO ) ) \
757 && !defined( HAVE_GAI_STRERROR )
758 char *ldap_pvt_gai_strerror (int code) {
763 #ifdef EAI_ADDRFAMILY
764 { EAI_ADDRFAMILY, N_("Address family for hostname not supported") },
766 { EAI_AGAIN, N_("Temporary failure in name resolution") },
767 { EAI_BADFLAGS, N_("Bad value for ai_flags") },
768 { EAI_FAIL, N_("Non-recoverable failure in name resolution") },
769 { EAI_FAMILY, N_("ai_family not supported") },
770 { EAI_MEMORY, N_("Memory allocation failure") },
772 { EAI_NODATA, N_("No address associated with hostname") },
774 { EAI_NONAME, N_("Name or service not known") },
775 { EAI_SERVICE, N_("Servname not supported for ai_socktype") },
776 { EAI_SOCKTYPE, N_("ai_socktype not supported") },
778 { EAI_SYSTEM, N_("System error") },
785 for ( i = 0; values[i].msg != NULL; i++ ) {
786 if ( values[i].code == code ) {
787 return (char *) _(values[i].msg);
791 return _("Unknown error");