]> git.sur5r.net Git - openldap/blob - libraries/libldap/util-int.c
ff002eb9f65d688ec7af555936ab30364cc95eb4
[openldap] / libraries / libldap / util-int.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * util-int.c   Various functions to replace missing threadsafe ones.
8  *                                Without the real *_r funcs, things will
9  *                                work, but might not be threadsafe. 
10  * 
11  * Written by Bart Hartgers.
12  *
13  * Copyright 1998, A. Hartgers, All rights reserved.
14  * This software is not subject to any license of Eindhoven University of
15  * Technology, since it was written in my spare time.
16  *                      
17  * Redistribution and use in source and binary forms are permitted only
18  * as authorized by the OpenLDAP Public License.  A copy of this
19  * license is available at http://www.OpenLDAP.org/license.html or
20  * in file LICENSE in the top-level directory of the distribution.
21  */ 
22
23
24 #include "portable.h"
25
26 #include <ac/stdlib.h>
27
28 #include <ac/errno.h>
29 #include <ac/socket.h>
30 #include <ac/string.h>
31 #include <ac/time.h>
32 #include <ac/unistd.h>
33
34 #include "ldap-int.h"
35
36 #if defined( LDAP_R_COMPILE )
37 # include <ldap_pvt_thread.h>
38 #else
39 # undef HAVE_REENTRANT_FUNCTIONS
40 #endif
41
42 #if (defined( HAVE_CTIME_R ) || defined( HAVE_REENTRANT_FUNCTIONS)) \
43         && defined( CTIME_R_NARGS )
44 #       define USE_CTIME_R
45 #endif
46
47 #if defined(HAVE_GETHOSTBYNAME_R) && \
48     (GETHOSTBYNAME_R_NARGS > 6 || GETHOSTBYNAME_R_NARGS < 5)
49         /* Don't know how to handle this version, pretend it's not there */
50 #       undef HAVE_GETHOSTBYNAME_R
51 #endif
52 #if defined(HAVE_GETHOSTBYADDR_R) && \
53     (GETHOSTBYADDR_R_NARGS > 8 || GETHOSTBYADDR_R_NARGS < 7)
54         /* Don't know how to handle this version, pretend it's not there */
55 #       undef HAVE_GETHOSTBYADDR_R
56 #endif
57
58 #ifdef LDAP_R_COMPILE
59 # ifndef USE_CTIME_R
60         static ldap_pvt_thread_mutex_t ldap_int_ctime_mutex;
61 # endif
62 # if !defined( HAVE_GETHOSTBYNAME_R ) || !defined( HAVE_GETHOSTBYADDR_R )
63         static ldap_pvt_thread_mutex_t ldap_int_gethostby_mutex;
64 # endif
65 # ifdef HAVE_RES_QUERY
66         ldap_pvt_thread_mutex_t ldap_int_resolv_mutex;
67 # endif
68 #endif /* LDAP_R_COMPILE */
69
70 char *ldap_pvt_ctime( const time_t *tp, char *buf )
71 {
72 #ifdef USE_CTIME_R
73 # if (CTIME_R_NARGS > 3) || (CTIME_R_NARGS < 2)
74 #       error "CTIME_R_NARGS should be 2 or 3"
75 # elif CTIME_R_NARGS > 2 && defined(CTIME_R_RETURNS_INT)
76         return( ctime_r(tp,buf,26) < 0 ? 0 : buf );
77 # elif CTIME_R_NARGS > 2
78         return ctime_r(tp,buf,26);
79 # else
80         return ctime_r(tp,buf);
81 # endif   
82
83 #else
84 # ifdef LDAP_R_COMPILE
85         ldap_pvt_thread_mutex_lock( &ldap_int_ctime_mutex );
86 # endif
87         AC_MEMCPY( buf, ctime(tp), 26 );
88 # ifdef LDAP_R_COMPILE
89         ldap_pvt_thread_mutex_unlock( &ldap_int_ctime_mutex );
90 # endif
91         return buf;
92 #endif  
93 }
94
95 #define BUFSTART 1024
96 #define BUFMAX (32*1024)
97
98 static char *safe_realloc( char **buf, int len );
99
100 #if !defined(HAVE_GETHOSTBYNAME_R) && defined(LDAP_R_COMPILE)
101 # define NEED_COPY_HOSTENT
102 static int copy_hostent( struct hostent *res, char **buf, struct hostent * src );
103 #endif
104
105 int ldap_pvt_gethostbyname_a(
106         const char *name, 
107         struct hostent *resbuf,
108         char **buf,
109         struct hostent **result,
110         int *herrno_ptr )
111 {
112 #if defined( HAVE_GETHOSTBYNAME_R )
113
114 # define NEED_SAFE_REALLOC 1   
115         int r=-1;
116         int buflen=BUFSTART;
117         *buf = NULL;
118         for(;buflen<BUFMAX;) {
119                 if (safe_realloc( buf, buflen )==NULL)
120                         return r;
121
122 #if (GETHOSTBYNAME_R_NARGS < 6)
123                 r = ((*result=gethostbyname_r( name, resbuf, *buf,
124                                                buflen, herrno_ptr ))== NULL) ?
125                     -1 : 0;
126 #else
127                 r = gethostbyname_r( name, resbuf, *buf,
128                         buflen, result, herrno_ptr );
129 #endif
130
131                 Debug( LDAP_DEBUG_TRACE, "ldap_pvt_gethostbyname_a: host=%s, r=%d\n",
132                        name, r, 0 );
133
134 #ifdef NETDB_INTERNAL
135                 if ((r<0) &&
136                         (*herrno_ptr==NETDB_INTERNAL) &&
137                         (errno==ERANGE))
138                 {
139                         buflen*=2;
140                         continue;
141                 }
142 #endif
143                 return r;
144         }
145         return -1;
146 #elif defined( LDAP_R_COMPILE )
147 # define NEED_COPY_HOSTENT   
148         struct hostent *he;
149         int     retval;
150         *buf = NULL;
151         
152         ldap_pvt_thread_mutex_lock( &ldap_int_gethostby_mutex );
153         
154         he = gethostbyname( name );
155         
156         if (he==NULL) {
157                 *herrno_ptr = h_errno;
158                 retval = -1;
159         } else if (copy_hostent( resbuf, buf, he )<0) {
160                 *herrno_ptr = -1;
161                 retval = -1;
162         } else {
163                 *result = resbuf;
164                 retval = 0;
165         }
166         
167         ldap_pvt_thread_mutex_unlock( &ldap_int_gethostby_mutex );
168         
169         return retval;
170 #else   
171         *buf = NULL;
172         *result = gethostbyname( name );
173
174         if (*result!=NULL) {
175                 return 0;
176         }
177
178         *herrno_ptr = h_errno;
179         
180         return -1;
181 #endif  
182 }
183          
184 int ldap_pvt_gethostbyaddr_a(
185         const char *addr,
186         int len,
187         int type,
188         struct hostent *resbuf,
189         char **buf,
190         struct hostent **result,
191         int *herrno_ptr )
192 {
193 #if defined( HAVE_GETHOSTBYADDR_R )
194
195 # undef NEED_SAFE_REALLOC
196 # define NEED_SAFE_REALLOC   
197         int r=-1;
198         int buflen=BUFSTART;
199         *buf = NULL;   
200         for(;buflen<BUFMAX;) {
201                 if (safe_realloc( buf, buflen )==NULL)
202                         return r;
203 #if (GETHOSTBYADDR_R_NARGS < 8)
204                 r = ((*result=gethostbyaddr_r( addr, len, type,
205                                                resbuf, *buf, buflen, 
206                                                herrno_ptr )) == NULL) ?
207                     -1 : 0;
208 #else
209                 r = gethostbyaddr_r( addr, len, type,
210                         resbuf, *buf, buflen, 
211                         result, herrno_ptr );
212 #endif
213
214 #ifdef NETDB_INTERNAL
215                 if ((r<0) &&
216                         (*herrno_ptr==NETDB_INTERNAL) &&
217                         (errno==ERANGE))
218                 {
219                         buflen*=2;
220                         continue;
221                 }
222 #endif
223                 return r;
224         }
225         return -1;
226 #elif defined( LDAP_R_COMPILE )
227 # undef NEED_COPY_HOSTENT
228 # define NEED_COPY_HOSTENT   
229         struct hostent *he;
230         int     retval;
231         *buf = NULL;   
232         
233         ldap_pvt_thread_mutex_lock( &ldap_int_gethostby_mutex );
234         
235         he = gethostbyaddr( addr, len, type );
236         
237         if (he==NULL) {
238                 *herrno_ptr = h_errno;
239                 retval = -1;
240         } else if (copy_hostent( resbuf, buf, he )<0) {
241                 *herrno_ptr = -1;
242                 retval = -1;
243         } else {
244                 *result = resbuf;
245                 retval = 0;
246         }
247         
248         ldap_pvt_thread_mutex_unlock( &ldap_int_gethostby_mutex );
249         
250         return retval;   
251 #else /* gethostbyaddr() */
252         *buf = NULL;   
253         *result = gethostbyaddr( addr, len, type );
254
255         if (*result!=NULL) {
256                 return 0;
257         }
258         return -1;
259 #endif  
260 }
261 /* 
262  * ldap_int_utils_init() should be called before any other function.
263  */
264
265 void ldap_int_utils_init( void )
266 {
267         static int done=0;
268         if (done)
269           return;
270         done=1;
271
272 #ifdef LDAP_R_COMPILE
273
274 #if !defined( USE_CTIME_R ) && !defined( HAVE_REENTRANT_FUNCTIONS )
275         ldap_pvt_thread_mutex_init( &ldap_int_ctime_mutex );
276 #endif
277
278 #if !defined( HAVE_GETHOSTBYNAME_R ) || !defined( HAVE_GETHOSTBYADDR_R )
279         ldap_pvt_thread_mutex_init( &ldap_int_gethostby_mutex );
280 #endif
281
282 #ifdef HAVE_RES_QUERY
283         ldap_pvt_thread_mutex_init( &ldap_int_resolv_mutex );
284 #endif
285
286         /* call other module init functions here... */
287 #endif
288 }
289
290 #if defined( NEED_COPY_HOSTENT )
291 # undef NEED_SAFE_REALLOC
292 #define NEED_SAFE_REALLOC
293
294 static char *cpy_aliases( char ***tgtio, char *buf, char **src )
295 {
296         int len;
297         char **tgt=*tgtio;
298         for( ; (*src) ; src++ ) {
299                 len = strlen( *src ) + 1;
300                 AC_MEMCPY( buf, *src, len );
301                 *tgt++=buf;
302                 buf+=len;
303         }
304         *tgtio=tgt;   
305         return buf;
306 }
307
308 static char *cpy_addresses( char ***tgtio, char *buf, char **src, int len )
309 {
310         char **tgt=*tgtio;
311         for( ; (*src) ; src++ ) {
312                 AC_MEMCPY( buf, *src, len );
313                 *tgt++=buf;
314                 buf+=len;
315         }
316         *tgtio=tgt;      
317         return buf;
318 }
319
320 static int copy_hostent( struct hostent *res, char **buf, struct hostent * src )
321 {
322         char    **p;
323         char    **tp;
324         char    *tbuf;
325         int     name_len;
326         int     n_alias=0;
327         int     total_alias_len=0;
328         int     n_addr=0;
329         int     total_addr_len;
330         int     total_len;
331           
332         /* calculate the size needed for the buffer */
333         name_len = strlen( src->h_name ) + 1;
334         
335         if( src->h_aliases != NULL ) {
336                 for( p = src->h_aliases; (*p) != NULL; p++ ) {
337                         total_alias_len += strlen( *p ) + 1;
338                         n_alias++; 
339                 }
340         }
341
342         if( src->h_addr_list != NULL ) {
343                 for( p = src->h_addr_list; (*p) != NULL; p++ ) {
344                         n_addr++;
345                 }
346                 total_addr_len = n_addr * src->h_length;
347         }
348         
349         total_len = (n_alias + n_addr + 2) * sizeof( char * ) +
350                 total_addr_len + total_alias_len + name_len;
351         
352         if (safe_realloc( buf, total_len )) {                    
353                 tp = (char **) *buf;
354                 tbuf = *buf + (n_alias + n_addr + 2) * sizeof( char * );
355                 AC_MEMCPY( res, src, sizeof( struct hostent ) );
356                 /* first the name... */
357                 AC_MEMCPY( tbuf, src->h_name, name_len );
358                 res->h_name = tbuf; tbuf+=name_len;
359                 /* now the aliases */
360                 res->h_aliases = tp;
361                 if ( src->h_aliases != NULL ) {
362                         tbuf = cpy_aliases( &tp, tbuf, src->h_aliases );
363                 }
364                 *tp++=NULL;
365                 /* finally the addresses */
366                 res->h_addr_list = tp;
367                 if ( src->h_addr_list != NULL ) {
368                         tbuf = cpy_addresses( &tp, tbuf, src->h_addr_list, src->h_length );
369                 }
370                 *tp++=NULL;
371                 return 0;
372         }
373         return -1;
374 }
375 #endif
376
377 #if defined( NEED_SAFE_REALLOC )
378 static char *safe_realloc( char **buf, int len )
379 {
380         char *tmpbuf;
381         tmpbuf = LDAP_REALLOC( *buf, len );
382         if (tmpbuf) {
383                 *buf=tmpbuf;
384         } 
385         return tmpbuf;
386 }
387 #endif
388
389 char * ldap_pvt_get_fqdn( char *name )
390 {
391         char *fqdn, *ha_buf;
392         char hostbuf[MAXHOSTNAMELEN+1];
393         struct hostent *hp, he_buf;
394         int rc, local_h_errno;
395
396         if( name == NULL ) {
397                 if( gethostname( hostbuf, MAXHOSTNAMELEN ) == 0 ) {
398                         hostbuf[MAXHOSTNAMELEN] = '\0';
399                         name = hostbuf;
400                 } else {
401                         name = "localhost";
402                 }
403         }
404
405         rc = ldap_pvt_gethostbyname_a( name,
406                 &he_buf, &ha_buf, &hp, &local_h_errno );
407
408         if( rc < 0 || hp == NULL || hp->h_name == NULL ) {
409                 fqdn = LDAP_STRDUP( name );
410         } else {
411                 fqdn = LDAP_STRDUP( hp->h_name );
412         }
413
414         LDAP_FREE( ha_buf );
415         return fqdn;
416 }