1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
1998-12-29 04:53:15 +08:00
|
|
|
/*
|
2002-01-05 05:17:25 +08:00
|
|
|
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
1998-12-29 04:53:15 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1998-12-19 09:27:20 +08:00
|
|
|
/*
|
|
|
|
* util-int.c Various functions to replace missing threadsafe ones.
|
1999-02-25 21:07:27 +08:00
|
|
|
* Without the real *_r funcs, things will
|
|
|
|
* work, but might not be threadsafe.
|
1998-12-19 09:27:20 +08:00
|
|
|
*
|
|
|
|
* Written by Bart Hartgers.
|
|
|
|
*
|
|
|
|
* Copyright 1998, A. Hartgers, All rights reserved.
|
|
|
|
* This software is not subject to any license of Eindhoven University of
|
|
|
|
* Technology, since it was written in my spare time.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
1999-02-25 21:07:27 +08:00
|
|
|
|
1998-12-19 09:27:20 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
1999-06-03 08:37:44 +08:00
|
|
|
#include <ac/stdlib.h>
|
1998-12-19 09:27:20 +08:00
|
|
|
|
|
|
|
#include <ac/errno.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/time.h>
|
2000-09-15 11:06:18 +08:00
|
|
|
#include <ac/unistd.h>
|
1998-12-19 09:27:20 +08:00
|
|
|
|
|
|
|
#include "ldap-int.h"
|
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
#if defined( LDAP_R_COMPILE )
|
|
|
|
# include <ldap_pvt_thread.h>
|
1999-01-28 12:34:55 +08:00
|
|
|
#else
|
|
|
|
# undef HAVE_REENTRANT_FUNCTIONS
|
1999-01-15 22:49:03 +08:00
|
|
|
#endif
|
1999-01-28 12:34:55 +08:00
|
|
|
|
|
|
|
#if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \
|
|
|
|
&& defined( CTIME_R_NARGS )
|
|
|
|
# define USE_CTIME_R
|
1999-01-15 22:49:03 +08:00
|
|
|
#endif
|
|
|
|
|
1999-03-04 05:34:49 +08:00
|
|
|
#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
|
|
|
|
|
1999-02-21 02:33:24 +08:00
|
|
|
#ifdef LDAP_R_COMPILE
|
1999-01-28 12:34:55 +08:00
|
|
|
# ifndef USE_CTIME_R
|
|
|
|
static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex;
|
|
|
|
# endif
|
2000-06-06 08:23:50 +08:00
|
|
|
# if !defined( HAVE_GETHOSTBYNAME_R ) || !defined( HAVE_GETHOSTBYADDR_R )
|
|
|
|
static ldap_pvt_thread_mutex_t ldap_int_gethostby_mutex;
|
1999-01-28 12:34:55 +08:00
|
|
|
# endif
|
2000-06-06 07:56:26 +08:00
|
|
|
# ifdef HAVE_RES_QUERY
|
2000-01-03 10:33:22 +08:00
|
|
|
ldap_pvt_thread_mutex_t ldap_int_resolv_mutex;
|
|
|
|
# endif
|
1999-01-28 12:34:55 +08:00
|
|
|
#endif /* LDAP_R_COMPILE */
|
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
char *ldap_pvt_ctime( const time_t *tp, char *buf )
|
1998-12-19 09:27:20 +08:00
|
|
|
{
|
1999-01-28 12:34:55 +08:00
|
|
|
#ifdef USE_CTIME_R
|
1999-01-03 07:40:31 +08:00
|
|
|
# if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2)
|
1999-05-31 13:34:13 +08:00
|
|
|
# error "CTIME_R_NARGS should be 2 or 3"
|
1999-03-06 12:23:17 +08:00
|
|
|
# elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT)
|
|
|
|
return( ctime_r(tp,buf,26) < 0 ? 0 : buf );
|
1999-01-03 07:40:31 +08:00
|
|
|
# elif CTIME_R_NARGS > 2
|
1999-01-02 08:56:45 +08:00
|
|
|
return ctime_r(tp,buf,26);
|
|
|
|
# else
|
1999-01-03 07:40:31 +08:00
|
|
|
return ctime_r(tp,buf);
|
1999-01-02 08:56:45 +08:00
|
|
|
# endif
|
1999-01-28 12:34:55 +08:00
|
|
|
|
1998-12-19 09:27:20 +08:00
|
|
|
#else
|
1999-02-21 02:33:24 +08:00
|
|
|
# ifdef LDAP_R_COMPILE
|
1999-01-15 22:49:03 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &ldap_int_ctime_mutex );
|
1999-01-28 12:34:55 +08:00
|
|
|
# endif
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( buf, ctime(tp), 26 );
|
1999-02-21 02:33:24 +08:00
|
|
|
# ifdef LDAP_R_COMPILE
|
1999-01-15 22:49:03 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &ldap_int_ctime_mutex );
|
1999-01-28 12:34:55 +08:00
|
|
|
# endif
|
1999-01-14 23:19:29 +08:00
|
|
|
return buf;
|
1998-12-19 09:27:20 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2002-01-03 01:38:46 +08:00
|
|
|
#define BUFSTART (1024-32)
|
2002-01-03 01:06:56 +08:00
|
|
|
#define BUFMAX (32*1024-32)
|
1998-12-19 09:27:20 +08:00
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
static char *safe_realloc( char **buf, int len );
|
2000-09-15 11:06:18 +08:00
|
|
|
|
|
|
|
#if !defined(HAVE_GETHOSTBYNAME_R) && defined(LDAP_R_COMPILE)
|
1999-01-15 22:49:03 +08:00
|
|
|
static int copy_hostent( struct hostent *res, char **buf, struct hostent * src );
|
2000-09-15 11:06:18 +08:00
|
|
|
#endif
|
1999-01-14 23:19:29 +08:00
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
int ldap_pvt_gethostbyname_a(
|
1998-12-19 09:27:20 +08:00
|
|
|
const char *name,
|
|
|
|
struct hostent *resbuf,
|
|
|
|
char **buf,
|
|
|
|
struct hostent **result,
|
|
|
|
int *herrno_ptr )
|
|
|
|
{
|
1999-01-28 12:34:55 +08:00
|
|
|
#if defined( HAVE_GETHOSTBYNAME_R )
|
1999-02-25 21:07:27 +08:00
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
# define NEED_SAFE_REALLOC 1
|
1999-01-14 23:19:29 +08:00
|
|
|
int r=-1;
|
1998-12-19 09:27:20 +08:00
|
|
|
int buflen=BUFSTART;
|
1999-01-14 23:19:29 +08:00
|
|
|
*buf = NULL;
|
|
|
|
for(;buflen<BUFMAX;) {
|
|
|
|
if (safe_realloc( buf, buflen )==NULL)
|
|
|
|
return r;
|
1999-02-25 21:07:27 +08:00
|
|
|
|
|
|
|
#if (GETHOSTBYNAME_R_NARGS < 6)
|
1999-04-30 14:39:19 +08:00
|
|
|
r = ((*result=gethostbyname_r( name, resbuf, *buf,
|
|
|
|
buflen, herrno_ptr ))== NULL) ?
|
1999-02-25 21:07:27 +08:00
|
|
|
-1 : 0;
|
|
|
|
#else
|
1999-01-14 23:19:29 +08:00
|
|
|
r = gethostbyname_r( name, resbuf, *buf,
|
|
|
|
buflen, result, herrno_ptr );
|
1999-02-25 21:07:27 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-30 14:39:19 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "ldap_pvt_gethostbyname_a: host=%s, r=%d\n",
|
1999-02-25 21:07:27 +08:00
|
|
|
name, r, 0 );
|
|
|
|
|
1998-12-19 09:27:20 +08:00
|
|
|
#ifdef NETDB_INTERNAL
|
1999-01-14 23:19:29 +08:00
|
|
|
if ((r<0) &&
|
|
|
|
(*herrno_ptr==NETDB_INTERNAL) &&
|
|
|
|
(errno==ERANGE))
|
|
|
|
{
|
|
|
|
buflen*=2;
|
|
|
|
continue;
|
|
|
|
}
|
1998-12-19 09:27:20 +08:00
|
|
|
#endif
|
1999-01-14 23:19:29 +08:00
|
|
|
return r;
|
1998-12-19 09:27:20 +08:00
|
|
|
}
|
1999-01-14 23:19:29 +08:00
|
|
|
return -1;
|
1999-02-21 02:33:24 +08:00
|
|
|
#elif defined( LDAP_R_COMPILE )
|
1999-01-15 22:49:03 +08:00
|
|
|
# define NEED_COPY_HOSTENT
|
|
|
|
struct hostent *he;
|
|
|
|
int retval;
|
2000-08-15 09:55:43 +08:00
|
|
|
*buf = NULL;
|
1999-01-15 22:49:03 +08:00
|
|
|
|
2000-06-06 08:23:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &ldap_int_gethostby_mutex );
|
1999-01-15 22:49:03 +08:00
|
|
|
|
|
|
|
he = gethostbyname( name );
|
|
|
|
|
|
|
|
if (he==NULL) {
|
|
|
|
*herrno_ptr = h_errno;
|
|
|
|
retval = -1;
|
|
|
|
} else if (copy_hostent( resbuf, buf, he )<0) {
|
|
|
|
*herrno_ptr = -1;
|
|
|
|
retval = -1;
|
|
|
|
} else {
|
|
|
|
*result = resbuf;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
|
2000-06-06 08:23:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &ldap_int_gethostby_mutex );
|
1999-01-15 22:49:03 +08:00
|
|
|
|
|
|
|
return retval;
|
1999-01-14 23:19:29 +08:00
|
|
|
#else
|
2000-08-15 09:55:43 +08:00
|
|
|
*buf = NULL;
|
1998-12-19 09:27:20 +08:00
|
|
|
*result = gethostbyname( name );
|
|
|
|
|
|
|
|
if (*result!=NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*herrno_ptr = h_errno;
|
1999-01-14 23:19:29 +08:00
|
|
|
|
1998-12-19 09:27:20 +08:00
|
|
|
return -1;
|
1999-01-14 23:19:29 +08:00
|
|
|
#endif
|
1998-12-19 09:27:20 +08:00
|
|
|
}
|
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
int ldap_pvt_gethostbyaddr_a(
|
1998-12-19 09:27:20 +08:00
|
|
|
const char *addr,
|
|
|
|
int len,
|
|
|
|
int type,
|
|
|
|
struct hostent *resbuf,
|
|
|
|
char **buf,
|
|
|
|
struct hostent **result,
|
|
|
|
int *herrno_ptr )
|
|
|
|
{
|
1999-01-28 12:34:55 +08:00
|
|
|
#if defined( HAVE_GETHOSTBYADDR_R )
|
1999-02-25 21:07:27 +08:00
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
# undef NEED_SAFE_REALLOC
|
|
|
|
# define NEED_SAFE_REALLOC
|
1999-01-14 23:19:29 +08:00
|
|
|
int r=-1;
|
1998-12-19 09:27:20 +08:00
|
|
|
int buflen=BUFSTART;
|
1999-01-14 23:19:29 +08:00
|
|
|
*buf = NULL;
|
|
|
|
for(;buflen<BUFMAX;) {
|
|
|
|
if (safe_realloc( buf, buflen )==NULL)
|
1998-12-19 09:27:20 +08:00
|
|
|
return r;
|
1999-02-25 21:07:27 +08:00
|
|
|
#if (GETHOSTBYADDR_R_NARGS < 8)
|
|
|
|
r = ((*result=gethostbyaddr_r( addr, len, type,
|
|
|
|
resbuf, *buf, buflen,
|
1999-04-30 14:39:19 +08:00
|
|
|
herrno_ptr )) == NULL) ?
|
1999-02-25 21:07:27 +08:00
|
|
|
-1 : 0;
|
|
|
|
#else
|
1999-01-14 23:19:29 +08:00
|
|
|
r = gethostbyaddr_r( addr, len, type,
|
|
|
|
resbuf, *buf, buflen,
|
|
|
|
result, herrno_ptr );
|
1999-02-25 21:07:27 +08:00
|
|
|
#endif
|
|
|
|
|
1999-01-14 23:19:29 +08:00
|
|
|
#ifdef NETDB_INTERNAL
|
|
|
|
if ((r<0) &&
|
|
|
|
(*herrno_ptr==NETDB_INTERNAL) &&
|
|
|
|
(errno==ERANGE))
|
|
|
|
{
|
|
|
|
buflen*=2;
|
|
|
|
continue;
|
1998-12-19 09:27:20 +08:00
|
|
|
}
|
1999-01-14 23:19:29 +08:00
|
|
|
#endif
|
|
|
|
return r;
|
1998-12-19 09:27:20 +08:00
|
|
|
}
|
1999-01-14 23:19:29 +08:00
|
|
|
return -1;
|
1999-02-21 02:33:24 +08:00
|
|
|
#elif defined( LDAP_R_COMPILE )
|
1999-01-15 22:49:03 +08:00
|
|
|
# undef NEED_COPY_HOSTENT
|
|
|
|
# define NEED_COPY_HOSTENT
|
|
|
|
struct hostent *he;
|
|
|
|
int retval;
|
2000-08-15 09:55:43 +08:00
|
|
|
*buf = NULL;
|
1999-01-15 22:49:03 +08:00
|
|
|
|
2000-06-06 08:23:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &ldap_int_gethostby_mutex );
|
1999-01-15 22:49:03 +08:00
|
|
|
|
|
|
|
he = gethostbyaddr( addr, len, type );
|
|
|
|
|
|
|
|
if (he==NULL) {
|
|
|
|
*herrno_ptr = h_errno;
|
|
|
|
retval = -1;
|
|
|
|
} else if (copy_hostent( resbuf, buf, he )<0) {
|
|
|
|
*herrno_ptr = -1;
|
|
|
|
retval = -1;
|
|
|
|
} else {
|
|
|
|
*result = resbuf;
|
|
|
|
retval = 0;
|
|
|
|
}
|
|
|
|
|
2000-06-06 08:23:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &ldap_int_gethostby_mutex );
|
1999-01-15 22:49:03 +08:00
|
|
|
|
|
|
|
return retval;
|
1998-12-19 09:27:20 +08:00
|
|
|
#else /* gethostbyaddr() */
|
2000-08-15 09:55:43 +08:00
|
|
|
*buf = NULL;
|
1998-12-19 09:27:20 +08:00
|
|
|
*result = gethostbyaddr( addr, len, type );
|
|
|
|
|
|
|
|
if (*result!=NULL) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
1999-01-14 23:19:29 +08:00
|
|
|
#endif
|
1998-12-19 09:27:20 +08:00
|
|
|
}
|
1999-01-15 22:49:03 +08:00
|
|
|
/*
|
1999-05-28 06:25:55 +08:00
|
|
|
* ldap_int_utils_init() should be called before any other function.
|
1999-01-15 22:49:03 +08:00
|
|
|
*/
|
|
|
|
|
1999-05-28 06:25:55 +08:00
|
|
|
void ldap_int_utils_init( void )
|
1999-01-15 22:49:03 +08:00
|
|
|
{
|
|
|
|
static int done=0;
|
|
|
|
if (done)
|
|
|
|
return;
|
|
|
|
done=1;
|
1999-01-28 12:34:55 +08:00
|
|
|
|
1999-02-21 02:33:24 +08:00
|
|
|
#ifdef LDAP_R_COMPILE
|
1999-01-28 12:34:55 +08:00
|
|
|
|
|
|
|
#if !defined( USE_CTIME_R ) && !defined( HAVE_REENTRANT_FUNCTIONS )
|
1999-02-21 02:33:24 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &ldap_int_ctime_mutex );
|
1999-01-28 12:34:55 +08:00
|
|
|
#endif
|
|
|
|
|
2000-06-06 08:23:50 +08:00
|
|
|
#if !defined( HAVE_GETHOSTBYNAME_R ) || !defined( HAVE_GETHOSTBYADDR_R )
|
|
|
|
ldap_pvt_thread_mutex_init( &ldap_int_gethostby_mutex );
|
1999-01-15 22:49:03 +08:00
|
|
|
#endif
|
1999-01-28 12:34:55 +08:00
|
|
|
|
2000-06-06 07:56:26 +08:00
|
|
|
#ifdef HAVE_RES_QUERY
|
2000-01-03 10:33:22 +08:00
|
|
|
ldap_pvt_thread_mutex_init( &ldap_int_resolv_mutex );
|
|
|
|
#endif
|
|
|
|
|
1999-01-15 22:49:03 +08:00
|
|
|
/* call other module init functions here... */
|
1999-01-28 12:34:55 +08:00
|
|
|
#endif
|
1999-01-15 22:49:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#if defined( NEED_COPY_HOSTENT )
|
|
|
|
# undef NEED_SAFE_REALLOC
|
|
|
|
#define NEED_SAFE_REALLOC
|
|
|
|
|
|
|
|
static char *cpy_aliases( char ***tgtio, char *buf, char **src )
|
|
|
|
{
|
|
|
|
int len;
|
|
|
|
char **tgt=*tgtio;
|
|
|
|
for( ; (*src) ; src++ ) {
|
|
|
|
len = strlen( *src ) + 1;
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( buf, *src, len );
|
1999-01-15 22:49:03 +08:00
|
|
|
*tgt++=buf;
|
|
|
|
buf+=len;
|
|
|
|
}
|
|
|
|
*tgtio=tgt;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *cpy_addresses( char ***tgtio, char *buf, char **src, int len )
|
|
|
|
{
|
|
|
|
char **tgt=*tgtio;
|
|
|
|
for( ; (*src) ; src++ ) {
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( buf, *src, len );
|
1999-01-15 22:49:03 +08:00
|
|
|
*tgt++=buf;
|
|
|
|
buf+=len;
|
|
|
|
}
|
|
|
|
*tgtio=tgt;
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int copy_hostent( struct hostent *res, char **buf, struct hostent * src )
|
|
|
|
{
|
|
|
|
char **p;
|
|
|
|
char **tp;
|
|
|
|
char *tbuf;
|
|
|
|
int name_len;
|
2000-04-25 18:43:15 +08:00
|
|
|
int n_alias=0;
|
|
|
|
int total_alias_len=0;
|
|
|
|
int n_addr=0;
|
1999-01-15 22:49:03 +08:00
|
|
|
int total_addr_len;
|
|
|
|
int total_len;
|
|
|
|
|
|
|
|
/* calculate the size needed for the buffer */
|
|
|
|
name_len = strlen( src->h_name ) + 1;
|
|
|
|
|
2000-04-25 18:43:15 +08:00
|
|
|
if( src->h_aliases != NULL ) {
|
|
|
|
for( p = src->h_aliases; (*p) != NULL; p++ ) {
|
|
|
|
total_alias_len += strlen( *p ) + 1;
|
|
|
|
n_alias++;
|
|
|
|
}
|
1999-01-15 22:49:03 +08:00
|
|
|
}
|
|
|
|
|
2000-04-25 18:43:15 +08:00
|
|
|
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;
|
1999-01-15 22:49:03 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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 * );
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( res, src, sizeof( struct hostent ) );
|
1999-01-15 22:49:03 +08:00
|
|
|
/* first the name... */
|
2000-07-28 09:07:07 +08:00
|
|
|
AC_MEMCPY( tbuf, src->h_name, name_len );
|
1999-01-15 22:49:03 +08:00
|
|
|
res->h_name = tbuf; tbuf+=name_len;
|
|
|
|
/* now the aliases */
|
|
|
|
res->h_aliases = tp;
|
2000-04-25 18:43:15 +08:00
|
|
|
if ( src->h_aliases != NULL ) {
|
|
|
|
tbuf = cpy_aliases( &tp, tbuf, src->h_aliases );
|
|
|
|
}
|
1999-01-15 22:49:03 +08:00
|
|
|
*tp++=NULL;
|
|
|
|
/* finally the addresses */
|
|
|
|
res->h_addr_list = tp;
|
2000-04-25 18:43:15 +08:00
|
|
|
if ( src->h_addr_list != NULL ) {
|
|
|
|
tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length );
|
|
|
|
}
|
1999-01-15 22:49:03 +08:00
|
|
|
*tp++=NULL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined( NEED_SAFE_REALLOC )
|
|
|
|
static char *safe_realloc( char **buf, int len )
|
|
|
|
{
|
|
|
|
char *tmpbuf;
|
1999-05-29 09:19:14 +08:00
|
|
|
tmpbuf = LDAP_REALLOC( *buf, len );
|
1999-01-15 22:49:03 +08:00
|
|
|
if (tmpbuf) {
|
|
|
|
*buf=tmpbuf;
|
|
|
|
}
|
|
|
|
return tmpbuf;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-08-15 09:55:43 +08:00
|
|
|
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 );
|
|
|
|
}
|
1999-01-15 22:49:03 +08:00
|
|
|
|
2000-08-15 09:55:43 +08:00
|
|
|
LDAP_FREE( ha_buf );
|
|
|
|
return fqdn;
|
|
|
|
}
|
2000-10-19 01:25:30 +08:00
|
|
|
|
|
|
|
#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
|