]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-ip.c
ecaa8c81185b276a08573c800ecc931a0a4e18a9
[openldap] / libraries / libldap / os-ip.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 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         char                    *ha_buf=NULL, *p, *q;
332         int                     socktype;
333
334         
335         switch(proto) {
336         case LDAP_PROTO_TCP: socktype = SOCK_STREAM;
337                 osip_debug(ld, "ldap_connect_to_host: TCP %s:%d\n",host,port,0);
338                 break;
339         case LDAP_PROTO_UDP: socktype = SOCK_DGRAM;
340                 osip_debug(ld, "ldap_connect_to_host: UDP %s:%d\n",host,port,0);
341                 break;
342
343         default:
344                 osip_debug(ld, "ldap_connect_to_host: unknown proto: %d\n",
345                         proto, 0, 0);
346                 return -1;
347         }
348
349         if (host != NULL) {
350 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
351                 char serv[7];
352                 int err;
353                 struct addrinfo hints, *res, *sai;
354
355                 memset( &hints, '\0', sizeof(hints) );
356                 hints.ai_family = ldap_int_inet4or6;
357                 hints.ai_socktype = socktype;
358
359                 snprintf(serv, sizeof serv, "%d", port );
360
361 #ifdef LDAP_R_COMPILE
362                 /* most getaddrinfo(3) use non-threadsafe resolver libraries */
363                 ldap_pvt_thread_mutex_lock(&ldap_int_resolv_mutex);
364 #endif
365
366                 err = getaddrinfo( host, serv, &hints, &res );
367
368 #ifdef LDAP_R_COMPILE
369                 ldap_pvt_thread_mutex_unlock(&ldap_int_resolv_mutex);
370 #endif
371
372                 if ( err != 0 ) {
373                         osip_debug(ld, "ldap_connect_to_host: getaddrinfo failed: %s\n",
374                                 AC_GAI_STRERROR(err), 0, 0);
375                         return -1;
376                 }
377                 rc = -1;
378
379                 for( sai=res; sai != NULL; sai=sai->ai_next) {
380                         if( sai->ai_addr == NULL ) {
381                                 osip_debug(ld, "ldap_connect_to_host: getaddrinfo "
382                                         "ai_addr is NULL?\n", 0, 0, 0);
383                                 continue;
384                         }
385
386                         /* we assume AF_x and PF_x are equal for all x */
387                         s = ldap_int_socket( ld, sai->ai_family, socktype );
388                         if ( s == AC_SOCKET_INVALID ) {
389                                 continue;
390                         }
391
392                         if ( ldap_int_prepare_socket(ld, s, proto ) == -1 ) {
393                                 ldap_pvt_close_socket(ld, s);
394                                 break;
395                         }
396
397                         switch (sai->ai_family) {
398 #ifdef LDAP_PF_INET6
399                         case AF_INET6: {
400                                 char addr[INET6_ADDRSTRLEN];
401                                 inet_ntop( AF_INET6,
402                                         &((struct sockaddr_in6 *)sai->ai_addr)->sin6_addr,
403                                         addr, sizeof addr);
404                                 osip_debug(ld, "ldap_connect_to_host: Trying %s %s\n", 
405                                         addr, serv, 0);
406                         } break;
407 #endif
408                         case AF_INET: {
409                                 char addr[INET_ADDRSTRLEN];
410                                 inet_ntop( AF_INET,
411                                         &((struct sockaddr_in *)sai->ai_addr)->sin_addr,
412                                         addr, sizeof addr);
413                                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%s\n", 
414                                         addr, serv, 0);
415                         } break;
416                         }
417
418                         rc = ldap_pvt_connect(ld, s, sai->ai_addr, sai->ai_addrlen, async);
419                         if ( (rc == 0) || (rc == -2) ) {
420                                 ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
421                                 break;
422                         }
423                         ldap_pvt_close_socket(ld, s);
424                 }
425                 freeaddrinfo(res);
426                 return rc;
427
428 #else
429                 struct in_addr in;
430                 if (! inet_aton( host, &in) ) {
431                         int local_h_errno;
432                         struct hostent he_buf;
433                         rc = ldap_pvt_gethostbyname_a(host, &he_buf, &ha_buf,
434                                         &hp, &local_h_errno);
435
436                         if ( (rc < 0) || (hp == NULL) ) {
437 #ifdef HAVE_WINSOCK
438                                 ldap_pvt_set_errno( WSAGetLastError() );
439 #else
440                                 /* not exactly right, but... */
441                                 ldap_pvt_set_errno( EHOSTUNREACH );
442 #endif
443                                 if (ha_buf) LDAP_FREE(ha_buf);
444                                 return -1;
445                         }
446                         use_hp = 1;
447                 }
448                 address = in.s_addr;
449 #endif
450         }
451
452         rc = s = -1;
453         for ( i = 0; !use_hp || (hp->h_addr_list[i] != 0); ++i, rc = -1 ) {
454                 struct sockaddr_in      sin;
455
456                 s = ldap_int_socket( ld, PF_INET, socktype );
457                 if ( s == AC_SOCKET_INVALID ) {
458                         /* use_hp ? continue : break; */
459                         break;
460                 }
461            
462                 if ( ldap_int_prepare_socket( ld, s, proto ) == -1 ) {
463                         ldap_pvt_close_socket(ld, s);
464                         break;
465                 }
466
467                 (void)memset((char *)&sin, '\0', sizeof sin);
468                 sin.sin_family = AF_INET;
469                 sin.sin_port = htons((short) port);
470                 p = (char *)&sin.sin_addr;
471                 q = use_hp ? (char *)hp->h_addr_list[i] : (char *)&address;
472                 AC_MEMCPY(p, q, sizeof(sin.sin_addr) );
473
474                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%d\n", 
475                         inet_ntoa(sin.sin_addr),port,0);
476
477                 rc = ldap_pvt_connect(ld, s,
478                         (struct sockaddr *)&sin, sizeof(struct sockaddr_in),
479                         async);
480    
481                 if ( (rc == 0) || (rc == -2) ) {
482                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
483                         break;
484                 }
485
486                 ldap_pvt_close_socket(ld, s);
487
488                 if (!use_hp)
489                         break;
490         }
491         if (ha_buf) LDAP_FREE(ha_buf);
492         return rc;
493 }
494
495 #if defined( LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND ) || \
496         defined( HAVE_CYRUS_SASL )
497 char *
498 ldap_host_connected_to( Sockbuf *sb )
499 {
500         struct hostent  *hp;
501         socklen_t               len;
502 #ifdef LDAP_PF_INET6
503         struct sockaddr_storage sabuf;
504 #else
505         struct sockaddr sabuf;
506 #endif
507         struct sockaddr *sa = (struct sockaddr *) &sabuf;
508         char                    *addr;
509         char                    *host;
510
511         /* buffers for gethostbyaddr_r */
512         struct hostent  he_buf;
513         int                             local_h_errno;
514         char                    *ha_buf=NULL;
515         ber_socket_t    sd;
516
517         (void)memset( (char *)sa, '\0', sizeof sabuf );
518         len = sizeof sabuf;
519
520         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
521         if ( getpeername( sd, sa, &len ) == -1 ) {
522                 return( NULL );
523         }
524
525         /*
526          * do a reverse lookup on the addr to get the official hostname.
527          * this is necessary for kerberos to work right, since the official
528          * hostname is used as the kerberos instance.
529          */
530
531         switch (sa->sa_family) {
532 #ifdef LDAP_PF_LOCAL
533         case AF_LOCAL:
534                 return LDAP_STRDUP( ldap_int_hostname );
535 #endif
536 #ifdef LDAP_PF_INET6
537         case AF_INET6:
538                 addr = (char *) &((struct sockaddr_in6 *)sa)->sin6_addr;
539                 len = sizeof( struct in6_addr );
540                 break;
541 #endif
542         case AF_INET:
543                 addr = (char *) &((struct sockaddr_in *)sa)->sin_addr;
544                 len = sizeof( struct in_addr );
545
546                 {
547                         struct sockaddr_in localhost;
548                         localhost.sin_addr.s_addr = htonl( INADDR_ANY );
549
550                         if( memcmp ( &localhost.sin_addr,
551                                 &((struct sockaddr_in *)sa)->sin_addr,
552                                 sizeof(localhost.sin_addr) ) == 0 )
553                         {
554                                 return LDAP_STRDUP( ldap_int_hostname );
555                         }
556
557 #ifdef INADDR_LOOPBACK
558                         localhost.sin_addr.s_addr = htonl( INADDR_LOOPBACK );
559
560                         if( memcmp ( &localhost.sin_addr,
561                                 &((struct sockaddr_in *)sa)->sin_addr,
562                                 sizeof(localhost.sin_addr) ) == 0 )
563                         {
564                                 return LDAP_STRDUP( ldap_int_hostname );
565                         }
566 #endif
567                 }
568                 break;
569
570         default:
571                 return( NULL );
572                 break;
573         }
574
575         host = NULL;
576         if ((ldap_pvt_gethostbyaddr_a( addr, len, sa->sa_family,
577                 &he_buf, &ha_buf, &hp, &local_h_errno ) == 0 ) &&
578                 (hp != NULL) && ( hp->h_name != NULL ) )
579         {
580                 host = LDAP_STRDUP( hp->h_name );   
581         }
582
583         LDAP_FREE( ha_buf );
584         return host;
585 }
586 #endif
587
588
589 /* for UNIX */
590 struct selectinfo {
591         fd_set  si_readfds;
592         fd_set  si_writefds;
593         fd_set  si_use_readfds;
594         fd_set  si_use_writefds;
595 };
596
597
598 void
599 ldap_mark_select_write( LDAP *ld, Sockbuf *sb )
600 {
601         struct selectinfo       *sip;
602         ber_socket_t            sd;
603
604         sip = (struct selectinfo *)ld->ld_selectinfo;
605         
606         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
607         if ( !FD_ISSET( sd, &sip->si_writefds )) {
608                 FD_SET( sd, &sip->si_writefds );
609         }
610 }
611
612
613 void
614 ldap_mark_select_read( LDAP *ld, Sockbuf *sb )
615 {
616         struct selectinfo       *sip;
617         ber_socket_t            sd;
618
619         sip = (struct selectinfo *)ld->ld_selectinfo;
620
621         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
622         if ( !FD_ISSET( sd, &sip->si_readfds )) {
623                 FD_SET( sd, &sip->si_readfds );
624         }
625 }
626
627
628 void
629 ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
630 {
631         struct selectinfo       *sip;
632         ber_socket_t            sd;
633
634         sip = (struct selectinfo *)ld->ld_selectinfo;
635
636         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
637         FD_CLR( sd, &sip->si_writefds );
638         FD_CLR( sd, &sip->si_readfds );
639 }
640
641
642 int
643 ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
644 {
645         struct selectinfo       *sip;
646         ber_socket_t            sd;
647
648         sip = (struct selectinfo *)ld->ld_selectinfo;
649
650         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
651         return( FD_ISSET( sd, &sip->si_use_writefds ));
652 }
653
654
655 int
656 ldap_is_read_ready( LDAP *ld, Sockbuf *sb )
657 {
658         struct selectinfo       *sip;
659         ber_socket_t            sd;
660
661         sip = (struct selectinfo *)ld->ld_selectinfo;
662
663         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
664         return( FD_ISSET( sd, &sip->si_use_readfds ));
665 }
666
667
668 void *
669 ldap_new_select_info( void )
670 {
671         struct selectinfo       *sip;
672
673         if (( sip = (struct selectinfo *)LDAP_CALLOC( 1,
674             sizeof( struct selectinfo ))) != NULL ) {
675                 FD_ZERO( &sip->si_readfds );
676                 FD_ZERO( &sip->si_writefds );
677         }
678
679         return( (void *)sip );
680 }
681
682
683 void
684 ldap_free_select_info( void *sip )
685 {
686         LDAP_FREE( sip );
687 }
688
689
690 void
691 ldap_int_ip_init( void )
692 {
693         int tblsize;
694 #if defined( HAVE_SYSCONF )
695         tblsize = sysconf( _SC_OPEN_MAX );
696 #elif defined( HAVE_GETDTABLESIZE )
697         tblsize = getdtablesize();
698 #else
699         tblsize = FD_SETSIZE;
700 #endif /* !USE_SYSCONF */
701
702 #ifdef FD_SETSIZE
703         if( tblsize > FD_SETSIZE )
704                 tblsize = FD_SETSIZE;
705 #endif  /* FD_SETSIZE*/
706         ldap_int_tblsize = tblsize;
707 }
708
709
710 int
711 ldap_int_select( LDAP *ld, struct timeval *timeout )
712 {
713         struct selectinfo       *sip;
714
715 #ifdef NEW_LOGGING
716         LDAP_LOG ( CONNECTION, ENTRY, "ldap_int_select\n", 0, 0, 0 );
717 #else
718         Debug( LDAP_DEBUG_TRACE, "ldap_int_select\n", 0, 0, 0 );
719 #endif
720
721         if ( ldap_int_tblsize == 0 )
722                 ldap_int_ip_init();
723
724         sip = (struct selectinfo *)ld->ld_selectinfo;
725         sip->si_use_readfds = sip->si_readfds;
726         sip->si_use_writefds = sip->si_writefds;
727         
728         return( select( ldap_int_tblsize,
729                         &sip->si_use_readfds, &sip->si_use_writefds,
730                         NULL, timeout ));
731 }