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