]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-ip.c
Remove dead code and lint
[openldap] / libraries / libldap / os-ip.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1995 Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  os-ip.c -- platform-specific TCP & UDP related code
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16
17 #include <ac/stdlib.h>
18
19 #include <ac/errno.h>
20 #include <ac/socket.h>
21 #include <ac/string.h>
22 #include <ac/time.h>
23 #include <ac/unistd.h>
24
25 #ifdef HAVE_IO_H
26 #include <io.h>
27 #endif /* HAVE_IO_H */
28
29 #include "ldap-int.h"
30
31 int ldap_int_tblsize = 0;
32
33 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
34 #  ifdef LDAP_PF_INET6
35 int ldap_int_inet4or6 = AF_UNSPEC;
36 #  else
37 int ldap_int_inet4or6 = AF_INET;
38 #  endif
39 #endif
40
41 /*
42  * nonblock connect code
43  * written by Lars Uffmann, <lars.uffmann@mediaway.net>.
44  *
45  * Copyright 1999, Lars Uffmann, All rights reserved.
46  * This software is not subject to any license of my employer
47  * mediaWays GmbH.
48  *
49  * OpenLDAP COPYING RESTRICTIONS APPLY, see COPYRIGHT file
50  *
51  * Read about the rationale in ldap_connect_timeout: 
52  * ftp://koobera.math.uic.edu/www/docs/connect.html.
53  */
54
55 #define osip_debug(ld,fmt,arg1,arg2,arg3) \
56 do { \
57         ldap_log_printf(NULL, LDAP_DEBUG_TRACE, fmt, arg1, arg2, arg3); \
58 } while(0)
59
60 static void
61 ldap_pvt_set_errno(int err)
62 {
63         errno = err;
64 }
65
66 int
67 ldap_int_timeval_dup( struct timeval **dest, const struct timeval *src )
68 {
69         struct timeval *new;
70
71         assert( dest != NULL );
72
73         if (src == NULL) {
74                 *dest = NULL;
75                 return 0;
76         }
77
78         new = (struct timeval *) LDAP_MALLOC(sizeof(struct timeval));
79
80         if( new == NULL ) {
81                 *dest = NULL;
82                 return 1;
83         }
84
85         AC_MEMCPY( (char *) new, (const char *) src, sizeof(struct timeval));
86
87         *dest = new;
88         return 0;
89 }
90
91 static int
92 ldap_pvt_ndelay_on(LDAP *ld, int fd)
93 {
94         osip_debug(ld, "ldap_ndelay_on: %d\n",fd,0,0);
95         return ber_pvt_socket_set_nonblock( fd, 1 );
96 }
97    
98 static int
99 ldap_pvt_ndelay_off(LDAP *ld, int fd)
100 {
101         osip_debug(ld, "ldap_ndelay_off: %d\n",fd,0,0);
102         return ber_pvt_socket_set_nonblock( fd, 0 );
103 }
104
105 static ber_socket_t
106 ldap_int_socket(LDAP *ld, int family, int type )
107 {
108         ber_socket_t s = socket(family, type, 0);
109         osip_debug(ld, "ldap_new_socket: %d\n",s,0,0);
110         return ( s );
111 }
112
113 static int
114 ldap_pvt_close_socket(LDAP *ld, int s)
115 {
116         osip_debug(ld, "ldap_close_socket: %d\n",s,0,0);
117         return tcp_close(s);
118 }
119
120 static int
121 ldap_int_prepare_socket(LDAP *ld, int s, int proto )
122 {
123         osip_debug(ld, "ldap_prepare_socket: %d\n", s,0,0);
124
125 #ifdef TCP_NODELAY
126         if( proto == LDAP_PROTO_TCP ) {
127                 int dummy = 1;
128                 if ( setsockopt( s, IPPROTO_TCP, TCP_NODELAY,
129                         (char*) &dummy, sizeof(dummy) ) == AC_SOCKET_ERROR )
130                 {
131                         osip_debug(ld, "ldap_prepare_socket: "
132                                 "setsockopt(%d, TCP_NODELAY) failed (ignored).\n",
133                                 s, 0, 0);
134                 }
135         }
136 #endif
137
138         return 0;
139 }
140
141 #ifndef HAVE_WINSOCK
142
143 #undef TRACE
144 #define TRACE do { \
145         osip_debug(ld, \
146                 "ldap_is_socket_ready: error on socket %d: errno: %d (%s)\n", \
147                 s, \
148                 errno, \
149                 sock_errstr(errno) ); \
150 } while( 0 )
151
152 /*
153  * check the socket for errors after select returned.
154  */
155 static int
156 ldap_pvt_is_socket_ready(LDAP *ld, int s)
157 {
158         osip_debug(ld, "ldap_is_sock_ready: %d\n",s,0,0);
159
160 #if defined( notyet ) /* && defined( SO_ERROR ) */
161 {
162         int so_errno;
163         socklen_t dummy = sizeof(so_errno);
164         if ( getsockopt( s, SOL_SOCKET, SO_ERROR, &so_errno, &dummy )
165                 == AC_SOCKET_ERROR )
166         {
167                 return -1;
168         }
169         if ( so_errno ) {
170                 ldap_pvt_set_errno(so_errno);
171                 TRACE;
172                 return -1;
173         }
174         return 0;
175 }
176 #else
177 {
178         /* error slippery */
179 #ifdef LDAP_PF_INET6
180         struct sockaddr_storage sin;
181 #else
182         struct sockaddr_in sin;
183 #endif
184         char ch;
185         socklen_t dummy = sizeof(sin);
186         if ( getpeername( s, (struct sockaddr *) &sin, &dummy )
187                 == AC_SOCKET_ERROR )
188         {
189                 /* XXX: needs to be replace with ber_stream_read() */
190                 read(s, &ch, 1);
191                 TRACE;
192                 return -1;
193         }
194         return 0;
195 }
196 #endif
197         return -1;
198 }
199 #undef TRACE
200
201 #endif /* HAVE_WINSOCK */
202
203 static int
204 ldap_pvt_connect(LDAP *ld, ber_socket_t s,
205         struct sockaddr *sin, socklen_t addrlen,
206         int async)
207 {
208         int rc;
209         struct timeval  tv, *opt_tv=NULL;
210         fd_set          wfds, *z=NULL;
211 #ifdef HAVE_WINSOCK
212         fd_set          efds;
213 #endif
214
215 #ifdef LDAP_CONNECTIONLESS
216         /* We could do a connect() but that would interfere with
217          * attempts to poll a broadcast address
218          */
219         if (LDAP_IS_UDP(ld)) {
220                 if (ld->ld_options.ldo_peer)
221                         ldap_memfree(ld->ld_options.ldo_peer);
222                 ld->ld_options.ldo_peer=ldap_memalloc(sizeof(struct sockaddr));
223                 AC_MEMCPY(ld->ld_options.ldo_peer,sin,sizeof(struct sockaddr));
224                 return ( 0 );
225         }
226 #endif
227         if ( (opt_tv = ld->ld_options.ldo_tm_net) != NULL ) {
228                 tv.tv_usec = opt_tv->tv_usec;
229                 tv.tv_sec = opt_tv->tv_sec;
230         }
231
232         osip_debug(ld, "ldap_connect_timeout: fd: %d tm: %ld async: %d\n",
233                         s, opt_tv ? tv.tv_sec : -1L, async);
234
235         if ( ldap_pvt_ndelay_on(ld, s) == -1 )
236                 return ( -1 );
237
238         if ( connect(s, sin, addrlen) != AC_SOCKET_ERROR ) {
239                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
240                         return ( -1 );
241                 return ( 0 );
242         }
243
244 #ifdef HAVE_WINSOCK
245         ldap_pvt_set_errno( WSAGetLastError() );
246 #endif
247
248         if ( errno != EINPROGRESS && errno != EWOULDBLOCK ) {
249                 return ( -1 );
250         }
251         
252 #ifdef notyet
253         if ( async ) return ( -2 );
254 #endif
255
256         FD_ZERO(&wfds);
257         FD_SET(s, &wfds );
258
259 #ifdef HAVE_WINSOCK
260         FD_ZERO(&efds);
261         FD_SET(s, &efds );
262 #endif
263
264         do {
265                 rc = select(ldap_int_tblsize, z, &wfds,
266 #ifdef HAVE_WINSOCK
267                         &efds,
268 #else
269                         z,
270 #endif
271                         opt_tv ? &tv : NULL);
272         } while( rc == AC_SOCKET_ERROR && errno == EINTR &&
273                 LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_RESTART ));
274
275         if( rc == AC_SOCKET_ERROR ) return rc;
276
277 #ifdef HAVE_WINSOCK
278         /* This means the connection failed */
279         if ( FD_ISSET(s, &efds) ) {
280             int so_errno;
281             int dummy = sizeof(so_errno);
282             if ( getsockopt( s, SOL_SOCKET, SO_ERROR,
283                         (char *) &so_errno, &dummy ) == AC_SOCKET_ERROR || !so_errno )
284             {
285                 /* impossible */
286                 so_errno = WSAGetLastError();
287             }
288             ldap_pvt_set_errno(so_errno);
289             osip_debug(ld, "ldap_pvt_connect: error on socket %d: "
290                        "errno: %d (%s)\n", s, errno, sock_errstr(errno));
291             return -1;
292         }
293 #endif
294         if ( FD_ISSET(s, &wfds) ) {
295 #ifndef HAVE_WINSOCK
296                 if ( ldap_pvt_is_socket_ready(ld, s) == -1 )
297                         return ( -1 );
298 #endif
299                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
300                         return ( -1 );
301                 return ( 0 );
302         }
303         osip_debug(ld, "ldap_connect_timeout: timed out\n",0,0,0);
304         ldap_pvt_set_errno( ETIMEDOUT );
305         return ( -1 );
306 }
307
308 #ifndef HAVE_INET_ATON
309 int
310 ldap_pvt_inet_aton( const char *host, struct in_addr *in)
311 {
312         unsigned long u = inet_addr( host );
313         if ( u != 0xffffffff || u != (unsigned long) -1 ) {
314                 in->s_addr = u;
315                 return 1;
316         }
317         return 0;
318 }
319 #endif
320
321
322 int
323 ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
324         int proto,
325         const char *host,
326         unsigned long address, int port, int async )
327 {
328         ber_socket_t            s = AC_SOCKET_INVALID;
329         int                     rc, i, use_hp = 0;
330         struct hostent          *hp = NULL;
331 #if !defined( HAVE_GETADDRINFO ) || !defined( HAVE_INET_NTOP )
332         struct hostent he_buf;
333 #endif
334         char                    *ha_buf=NULL, *p, *q;
335         int                     socktype;
336
337         
338         switch(proto) {
339         case LDAP_PROTO_TCP: socktype = SOCK_STREAM;
340                 osip_debug(ld, "ldap_connect_to_host: TCP %s:%d\n",host,port,0);
341                 break;
342         case LDAP_PROTO_UDP: socktype = SOCK_DGRAM;
343                 osip_debug(ld, "ldap_connect_to_host: UDP %s:%d\n",host,port,0);
344                 break;
345
346         default:
347                 osip_debug(ld, "ldap_connect_to_host: unknown proto: %d\n",
348                         proto, 0, 0);
349                 return -1;
350         }
351
352         if (host != NULL) {
353 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
354                 char serv[7];
355                 int err;
356                 struct addrinfo hints, *res, *sai;
357
358                 memset( &hints, '\0', sizeof(hints) );
359                 hints.ai_family = ldap_int_inet4or6;
360                 hints.ai_socktype = socktype;
361
362                 snprintf(serv, sizeof serv, "%d", port );
363
364 #ifdef LDAP_R_COMPILE
365                 /* most getaddrinfo(3) use non-threadsafe resolver libraries */
366                 ldap_pvt_thread_mutex_lock(&ldap_int_resolv_mutex);
367 #endif
368
369                 err = getaddrinfo( host, serv, &hints, &res );
370
371 #ifdef LDAP_R_COMPILE
372                 ldap_pvt_thread_mutex_unlock(&ldap_int_resolv_mutex);
373 #endif
374
375                 if ( err != 0 ) {
376                         osip_debug(ld, "ldap_connect_to_host: getaddrinfo failed: %s\n",
377                                 AC_GAI_STRERROR(err), 0, 0);
378                         return -1;
379                 }
380                 rc = -1;
381
382                 for( sai=res; sai != NULL; sai=sai->ai_next) {
383                         if( sai->ai_addr == NULL ) {
384                                 osip_debug(ld, "ldap_connect_to_host: getaddrinfo "
385                                         "ai_addr is NULL?\n", 0, 0, 0);
386                                 continue;
387                         }
388
389                         /* we assume AF_x and PF_x are equal for all x */
390                         s = ldap_int_socket( ld, sai->ai_family, socktype );
391                         if ( s == AC_SOCKET_INVALID ) {
392                                 continue;
393                         }
394
395                         if ( ldap_int_prepare_socket(ld, s, proto ) == -1 ) {
396                                 ldap_pvt_close_socket(ld, s);
397                                 break;
398                         }
399
400                         switch (sai->ai_family) {
401 #ifdef LDAP_PF_INET6
402                         case AF_INET6: {
403                                 char addr[INET6_ADDRSTRLEN];
404                                 inet_ntop( AF_INET6,
405                                         &((struct sockaddr_in6 *)sai->ai_addr)->sin6_addr,
406                                         addr, sizeof addr);
407                                 osip_debug(ld, "ldap_connect_to_host: Trying %s %s\n", 
408                                         addr, serv, 0);
409                         } break;
410 #endif
411                         case AF_INET: {
412                                 char addr[INET_ADDRSTRLEN];
413                                 inet_ntop( AF_INET,
414                                         &((struct sockaddr_in *)sai->ai_addr)->sin_addr,
415                                         addr, sizeof addr);
416                                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%s\n", 
417                                         addr, serv, 0);
418                         } break;
419                         }
420
421                         rc = ldap_pvt_connect(ld, s, sai->ai_addr, sai->ai_addrlen, async);
422                         if ( (rc == 0) || (rc == -2) ) {
423                                 ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
424                                 break;
425                         }
426                         ldap_pvt_close_socket(ld, s);
427                 }
428                 freeaddrinfo(res);
429                 return rc;
430
431 #else
432                 struct in_addr in;
433                 if (! inet_aton( host, &in) ) {
434                         int local_h_errno;
435                         rc = ldap_pvt_gethostbyname_a(host, &he_buf, &ha_buf,
436                                         &hp, &local_h_errno);
437
438                         if ( (rc < 0) || (hp == NULL) ) {
439 #ifdef HAVE_WINSOCK
440                                 ldap_pvt_set_errno( WSAGetLastError() );
441 #else
442                                 /* not exactly right, but... */
443                                 ldap_pvt_set_errno( EHOSTUNREACH );
444 #endif
445                                 if (ha_buf) LDAP_FREE(ha_buf);
446                                 return -1;
447                         }
448                         use_hp = 1;
449                 }
450                 address = in.s_addr;
451 #endif
452         }
453
454         rc = s = -1;
455         for ( i = 0; !use_hp || (hp->h_addr_list[i] != 0); ++i, rc = -1 ) {
456                 struct sockaddr_in      sin;
457
458                 s = ldap_int_socket( ld, PF_INET, socktype );
459                 if ( s == AC_SOCKET_INVALID ) {
460                         /* use_hp ? continue : break; */
461                         break;
462                 }
463            
464                 if ( ldap_int_prepare_socket( ld, s, proto ) == -1 ) {
465                         ldap_pvt_close_socket(ld, s);
466                         break;
467                 }
468
469                 (void)memset((char *)&sin, '\0', sizeof sin);
470                 sin.sin_family = AF_INET;
471                 sin.sin_port = htons((short) port);
472                 p = (char *)&sin.sin_addr;
473                 q = use_hp ? (char *)hp->h_addr_list[i] : (char *)&address;
474                 AC_MEMCPY(p, q, sizeof(sin.sin_addr) );
475
476                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%d\n", 
477                         inet_ntoa(sin.sin_addr),port,0);
478
479                 rc = ldap_pvt_connect(ld, s,
480                         (struct sockaddr *)&sin, sizeof(struct sockaddr_in),
481                         async);
482    
483                 if ( (rc == 0) || (rc == -2) ) {
484                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
485                         break;
486                 }
487
488                 ldap_pvt_close_socket(ld, s);
489
490                 if (!use_hp)
491                         break;
492         }
493         if (ha_buf) LDAP_FREE(ha_buf);
494         return rc;
495 }
496
497 #if defined( LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND ) || \
498         defined( HAVE_CYRUS_SASL )
499 char *
500 ldap_host_connected_to( Sockbuf *sb )
501 {
502         struct hostent  *hp;
503         socklen_t               len;
504 #ifdef LDAP_PF_INET6
505         struct sockaddr_storage sabuf;
506 #else
507         struct sockaddr sabuf;
508 #endif
509         struct sockaddr *sa = (struct sockaddr *) &sabuf;
510         char                    *addr;
511         char                    *host;
512
513         /* buffers for gethostbyaddr_r */
514         struct hostent  he_buf;
515         int                             local_h_errno;
516         char                    *ha_buf=NULL;
517         ber_socket_t    sd;
518
519         (void)memset( (char *)sa, '\0', sizeof sabuf );
520         len = sizeof sabuf;
521
522         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
523         if ( getpeername( sd, sa, &len ) == -1 ) {
524                 return( NULL );
525         }
526
527         /*
528          * do a reverse lookup on the addr to get the official hostname.
529          * this is necessary for kerberos to work right, since the official
530          * hostname is used as the kerberos instance.
531          */
532
533         switch (sa->sa_family) {
534 #ifdef LDAP_PF_LOCAL
535         case AF_LOCAL:
536                 return LDAP_STRDUP( ldap_int_hostname );
537 #endif
538 #ifdef LDAP_PF_INET6
539         case AF_INET6:
540                 addr = (char *) &((struct sockaddr_in6 *)sa)->sin6_addr;
541                 len = sizeof( struct in6_addr );
542                 break;
543 #endif
544         case AF_INET:
545                 addr = (char *) &((struct sockaddr_in *)sa)->sin_addr;
546                 len = sizeof( struct in_addr );
547
548                 {
549                         struct sockaddr_in localhost;
550                         localhost.sin_addr.s_addr = htonl( INADDR_ANY );
551
552                         if( memcmp ( &localhost.sin_addr,
553                                 &((struct sockaddr_in *)sa)->sin_addr,
554                                 sizeof(localhost.sin_addr) ) == 0 )
555                         {
556                                 return LDAP_STRDUP( ldap_int_hostname );
557                         }
558
559 #ifdef INADDR_LOOPBACK
560                         localhost.sin_addr.s_addr = htonl( INADDR_LOOPBACK );
561
562                         if( memcmp ( &localhost.sin_addr,
563                                 &((struct sockaddr_in *)sa)->sin_addr,
564                                 sizeof(localhost.sin_addr) ) == 0 )
565                         {
566                                 return LDAP_STRDUP( ldap_int_hostname );
567                         }
568 #endif
569                 }
570                 break;
571
572         default:
573                 return( NULL );
574                 break;
575         }
576
577         host = NULL;
578         if ((ldap_pvt_gethostbyaddr_a( addr, len, sa->sa_family,
579                 &he_buf, &ha_buf, &hp, &local_h_errno ) == 0 ) &&
580                 (hp != NULL) && ( hp->h_name != NULL ) )
581         {
582                 host = LDAP_STRDUP( hp->h_name );   
583         }
584
585         LDAP_FREE( ha_buf );
586         return host;
587 }
588 #endif
589
590
591 /* for UNIX */
592 struct selectinfo {
593         fd_set  si_readfds;
594         fd_set  si_writefds;
595         fd_set  si_use_readfds;
596         fd_set  si_use_writefds;
597 };
598
599
600 void
601 ldap_mark_select_write( LDAP *ld, Sockbuf *sb )
602 {
603         struct selectinfo       *sip;
604         ber_socket_t            sd;
605
606         sip = (struct selectinfo *)ld->ld_selectinfo;
607         
608         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
609         if ( !FD_ISSET( sd, &sip->si_writefds )) {
610                 FD_SET( sd, &sip->si_writefds );
611         }
612 }
613
614
615 void
616 ldap_mark_select_read( LDAP *ld, Sockbuf *sb )
617 {
618         struct selectinfo       *sip;
619         ber_socket_t            sd;
620
621         sip = (struct selectinfo *)ld->ld_selectinfo;
622
623         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
624         if ( !FD_ISSET( sd, &sip->si_readfds )) {
625                 FD_SET( sd, &sip->si_readfds );
626         }
627 }
628
629
630 void
631 ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
632 {
633         struct selectinfo       *sip;
634         ber_socket_t            sd;
635
636         sip = (struct selectinfo *)ld->ld_selectinfo;
637
638         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
639         FD_CLR( sd, &sip->si_writefds );
640         FD_CLR( sd, &sip->si_readfds );
641 }
642
643
644 int
645 ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
646 {
647         struct selectinfo       *sip;
648         ber_socket_t            sd;
649
650         sip = (struct selectinfo *)ld->ld_selectinfo;
651
652         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
653         return( FD_ISSET( sd, &sip->si_use_writefds ));
654 }
655
656
657 int
658 ldap_is_read_ready( LDAP *ld, Sockbuf *sb )
659 {
660         struct selectinfo       *sip;
661         ber_socket_t            sd;
662
663         sip = (struct selectinfo *)ld->ld_selectinfo;
664
665         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
666         return( FD_ISSET( sd, &sip->si_use_readfds ));
667 }
668
669
670 void *
671 ldap_new_select_info( void )
672 {
673         struct selectinfo       *sip;
674
675         if (( sip = (struct selectinfo *)LDAP_CALLOC( 1,
676             sizeof( struct selectinfo ))) != NULL ) {
677                 FD_ZERO( &sip->si_readfds );
678                 FD_ZERO( &sip->si_writefds );
679         }
680
681         return( (void *)sip );
682 }
683
684
685 void
686 ldap_free_select_info( void *sip )
687 {
688         LDAP_FREE( sip );
689 }
690
691
692 void
693 ldap_int_ip_init( void )
694 {
695         int tblsize;
696 #if defined( HAVE_SYSCONF )
697         tblsize = sysconf( _SC_OPEN_MAX );
698 #elif defined( HAVE_GETDTABLESIZE )
699         tblsize = getdtablesize();
700 #else
701         tblsize = FD_SETSIZE;
702 #endif /* !USE_SYSCONF */
703
704 #ifdef FD_SETSIZE
705         if( tblsize > FD_SETSIZE )
706                 tblsize = FD_SETSIZE;
707 #endif  /* FD_SETSIZE*/
708         ldap_int_tblsize = tblsize;
709 }
710
711
712 int
713 ldap_int_select( LDAP *ld, struct timeval *timeout )
714 {
715         struct selectinfo       *sip;
716
717 #ifdef NEW_LOGGING
718         LDAP_LOG ( CONNECTION, ENTRY, "ldap_int_select\n", 0, 0, 0 );
719 #else
720         Debug( LDAP_DEBUG_TRACE, "ldap_int_select\n", 0, 0, 0 );
721 #endif
722
723         if ( ldap_int_tblsize == 0 )
724                 ldap_int_ip_init();
725
726         sip = (struct selectinfo *)ld->ld_selectinfo;
727         sip->si_use_readfds = sip->si_readfds;
728         sip->si_use_writefds = sip->si_writefds;
729         
730         return( select( ldap_int_tblsize,
731                         &sip->si_use_readfds, &sip->si_use_writefds,
732                         NULL, timeout ));
733 }