]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-ip.c
02eb7828aa55cd73c98f109681fbe636a5268f37
[openldap] / libraries / libldap / os-ip.c
1 /* os-ip.c -- platform-specific TCP & UDP related code */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2005 The OpenLDAP Foundation.
6  * Portions Copyright 1999 Lars Uffmann.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
18  * All rights reserved.
19  */
20 /* Significant additional contributors include:
21  *    Lars Uffman
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/stdlib.h>
29
30 #include <ac/errno.h>
31 #include <ac/socket.h>
32 #include <ac/string.h>
33 #include <ac/time.h>
34 #include <ac/unistd.h>
35
36 #ifdef HAVE_IO_H
37 #include <io.h>
38 #endif /* HAVE_IO_H */
39
40 #include "ldap-int.h"
41
42 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
43 #  ifdef LDAP_PF_INET6
44 int ldap_int_inet4or6 = AF_UNSPEC;
45 #  else
46 int ldap_int_inet4or6 = AF_INET;
47 #  endif
48 #endif
49
50 #ifdef LDAP_DEBUG
51
52 #define osip_debug(ld,fmt,arg1,arg2,arg3) \
53 do { \
54         ldap_log_printf(NULL, LDAP_DEBUG_TRACE, fmt, arg1, arg2, arg3); \
55 } while(0)
56
57 #else
58
59 #define osip_debug(ld,fmt,arg1,arg2,arg3) ((void)0)
60
61 #endif /* LDAP_DEBUG */
62
63 static void
64 ldap_pvt_set_errno(int err)
65 {
66         errno = err;
67 }
68
69 int
70 ldap_int_timeval_dup( struct timeval **dest, const struct timeval *src )
71 {
72         struct timeval *new;
73
74         assert( dest != NULL );
75
76         if (src == NULL) {
77                 *dest = NULL;
78                 return 0;
79         }
80
81         new = (struct timeval *) LDAP_MALLOC(sizeof(struct timeval));
82
83         if( new == NULL ) {
84                 *dest = NULL;
85                 return 1;
86         }
87
88         AC_MEMCPY( (char *) new, (const char *) src, sizeof(struct timeval));
89
90         *dest = new;
91         return 0;
92 }
93
94 static int
95 ldap_pvt_ndelay_on(LDAP *ld, int fd)
96 {
97         osip_debug(ld, "ldap_ndelay_on: %d\n",fd,0,0);
98         return ber_pvt_socket_set_nonblock( fd, 1 );
99 }
100    
101 static int
102 ldap_pvt_ndelay_off(LDAP *ld, int fd)
103 {
104         osip_debug(ld, "ldap_ndelay_off: %d\n",fd,0,0);
105         return ber_pvt_socket_set_nonblock( fd, 0 );
106 }
107
108 static ber_socket_t
109 ldap_int_socket(LDAP *ld, int family, int type )
110 {
111         ber_socket_t s = socket(family, type, 0);
112         osip_debug(ld, "ldap_new_socket: %d\n",s,0,0);
113         return ( s );
114 }
115
116 static int
117 ldap_pvt_close_socket(LDAP *ld, int s)
118 {
119         osip_debug(ld, "ldap_close_socket: %d\n",s,0,0);
120         return tcp_close(s);
121 }
122
123 static int
124 ldap_int_prepare_socket(LDAP *ld, int s, int proto )
125 {
126         osip_debug(ld, "ldap_prepare_socket: %d\n", s,0,0);
127
128 #ifdef TCP_NODELAY
129         if( proto == LDAP_PROTO_TCP ) {
130                 int dummy = 1;
131                 if ( setsockopt( s, IPPROTO_TCP, TCP_NODELAY,
132                         (char*) &dummy, sizeof(dummy) ) == AC_SOCKET_ERROR )
133                 {
134                         osip_debug(ld, "ldap_prepare_socket: "
135                                 "setsockopt(%d, TCP_NODELAY) failed (ignored).\n",
136                                 s, 0, 0);
137                 }
138         }
139 #endif
140
141         return 0;
142 }
143
144 #ifndef HAVE_WINSOCK
145
146 #undef TRACE
147 #define TRACE do { \
148         osip_debug(ld, \
149                 "ldap_is_socket_ready: error on socket %d: errno: %d (%s)\n", \
150                 s, \
151                 errno, \
152                 sock_errstr(errno) ); \
153 } while( 0 )
154
155 /*
156  * check the socket for errors after select returned.
157  */
158 static int
159 ldap_pvt_is_socket_ready(LDAP *ld, int s)
160 {
161         osip_debug(ld, "ldap_is_sock_ready: %d\n",s,0,0);
162
163 #if defined( notyet ) /* && defined( SO_ERROR ) */
164 {
165         int so_errno;
166         socklen_t dummy = sizeof(so_errno);
167         if ( getsockopt( s, SOL_SOCKET, SO_ERROR, &so_errno, &dummy )
168                 == AC_SOCKET_ERROR )
169         {
170                 return -1;
171         }
172         if ( so_errno ) {
173                 ldap_pvt_set_errno(so_errno);
174                 TRACE;
175                 return -1;
176         }
177         return 0;
178 }
179 #else
180 {
181         /* error slippery */
182 #ifdef LDAP_PF_INET6
183         struct sockaddr_storage sin;
184 #else
185         struct sockaddr_in sin;
186 #endif
187         char ch;
188         socklen_t dummy = sizeof(sin);
189         if ( getpeername( s, (struct sockaddr *) &sin, &dummy )
190                 == AC_SOCKET_ERROR )
191         {
192                 /* XXX: needs to be replace with ber_stream_read() */
193                 read(s, &ch, 1);
194                 TRACE;
195                 return -1;
196         }
197         return 0;
198 }
199 #endif
200         return -1;
201 }
202 #undef TRACE
203
204 #endif /* HAVE_WINSOCK */
205
206 static int
207 ldap_pvt_connect(LDAP *ld, ber_socket_t s,
208         struct sockaddr *sin, socklen_t addrlen,
209         int async)
210 {
211         int rc;
212         struct timeval  tv = { 0 },
213                         *opt_tv = NULL;
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         opt_tv = ld->ld_options.ldo_tm_net;
228         if ( opt_tv != NULL ) {
229                 tv = *opt_tv;
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 #ifdef HAVE_POLL
257         {
258                 struct pollfd fd;
259                 int timeout = INFTIM;
260
261                 if( opt_tv != NULL ) timeout = TV2MILLISEC( &tv );
262
263                 fd.fd = s;
264                 fd.events = POLL_WRITE;
265
266                 do {
267                         fd.revents = 0;
268                         rc = poll( &fd, 1, timeout );
269                 } while( rc == AC_SOCKET_ERROR && errno == EINTR &&
270                         LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_RESTART ));
271
272                 if( rc == AC_SOCKET_ERROR ) return rc;
273
274                 if( fd.revents & POLL_WRITE ) {
275                         if ( ldap_pvt_is_socket_ready(ld, s) == -1 ) return -1;
276                         if ( ldap_pvt_ndelay_off(ld, s) == -1 ) return -1;
277                         return ( 0 );
278                 }
279         }
280 #else
281         {
282                 fd_set          wfds, *z=NULL;
283 #ifdef HAVE_WINSOCK
284                 fd_set          efds;
285 #endif
286
287 #if defined( FD_SETSIZE ) && !defined( HAVE_WINSOCK )
288                 if ( s >= FD_SETSIZE ) {
289                         rc = AC_SOCKET_ERROR;
290                         tcp_close( s );
291                         ldap_pvt_set_errno( EMFILE );
292                         return rc;
293                 }
294 #endif
295
296                 do {
297                         FD_ZERO(&wfds);
298                         FD_SET(s, &wfds );
299
300 #ifdef HAVE_WINSOCK
301                         FD_ZERO(&efds);
302                         FD_SET(s, &efds );
303 #endif
304
305                         rc = select(ldap_int_tblsize, z, &wfds,
306 #ifdef HAVE_WINSOCK
307                                 &efds,
308 #else
309                                 z,
310 #endif
311                                 opt_tv ? &tv : NULL);
312                 } while( rc == AC_SOCKET_ERROR && errno == EINTR &&
313                         LDAP_BOOL_GET(&ld->ld_options, LDAP_BOOL_RESTART ));
314
315                 if( rc == AC_SOCKET_ERROR ) return rc;
316
317 #ifdef HAVE_WINSOCK
318                 /* This means the connection failed */
319                 if ( FD_ISSET(s, &efds) ) {
320                     int so_errno;
321                     int dummy = sizeof(so_errno);
322                     if ( getsockopt( s, SOL_SOCKET, SO_ERROR,
323                                 (char *) &so_errno, &dummy ) == AC_SOCKET_ERROR || !so_errno )
324                     {
325                         /* impossible */
326                         so_errno = WSAGetLastError();
327                     }
328                     ldap_pvt_set_errno(so_errno);
329                     osip_debug(ld, "ldap_pvt_connect: error on socket %d: "
330                                "errno: %d (%s)\n", s, errno, sock_errstr(errno));
331                     return -1;
332                 }
333 #endif
334                 if ( FD_ISSET(s, &wfds) ) {
335 #ifndef HAVE_WINSOCK
336                         if ( ldap_pvt_is_socket_ready(ld, s) == -1 ) return -1;
337 #endif
338                         if ( ldap_pvt_ndelay_off(ld, s) == -1 ) return -1;
339                         return 0;
340                 }
341         }
342 #endif
343
344         osip_debug(ld, "ldap_connect_timeout: timed out\n",0,0,0);
345         ldap_pvt_set_errno( ETIMEDOUT );
346         return -1;
347 }
348
349 #ifndef HAVE_INET_ATON
350 int
351 ldap_pvt_inet_aton( const char *host, struct in_addr *in)
352 {
353         unsigned long u = inet_addr( host );
354
355 #ifdef INADDR_NONE
356         if ( u == INADDR_NONE ) return 0;
357 #endif
358         if ( u == 0xffffffffUL || u == (unsigned long) -1L ) return 0;
359
360         in->s_addr = u;
361         return 1;
362 }
363 #endif
364
365
366 int
367 ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
368         int proto,
369         const char *host, int port,
370         int async )
371 {
372         int     rc;
373         int     socktype;
374         ber_socket_t            s = AC_SOCKET_INVALID;
375
376 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
377         char serv[7];
378         int err;
379         struct addrinfo hints, *res, *sai;
380 #else
381         int i;
382         int use_hp = 0;
383         struct hostent *hp = NULL;
384         struct hostent he_buf;
385         struct in_addr in;
386         char *ha_buf=NULL;
387 #endif
388
389         if( host == NULL ) host = "localhost";
390         
391         switch(proto) {
392         case LDAP_PROTO_TCP: socktype = SOCK_STREAM;
393                 osip_debug( ld,
394                         "ldap_connect_to_host: TCP %s:%d\n",
395                         host, port, 0);
396                 break;
397         case LDAP_PROTO_UDP: socktype = SOCK_DGRAM;
398                 osip_debug( ld,
399                         "ldap_connect_to_host: UDP %s:%d\n",
400                         host, port, 0);
401                 break;
402         default:
403                 osip_debug( ld, "ldap_connect_to_host: unknown proto: %d\n",
404                         proto, 0, 0 );
405                 return -1;
406         }
407
408 #if defined( HAVE_GETADDRINFO ) && defined( HAVE_INET_NTOP )
409         memset( &hints, '\0', sizeof(hints) );
410 #ifdef USE_AI_ATTRCONFIG /* FIXME: configure test needed */
411         /* Use AI_ATTRCONFIG only on systems where its known to be needed. */
412         hints.ai_flags = AI_ATTRCONFIG;
413 #endif
414         hints.ai_family = ldap_int_inet4or6;
415         hints.ai_socktype = socktype;
416         snprintf(serv, sizeof serv, "%d", port );
417
418 #ifdef LDAP_R_COMPILE
419         /* most getaddrinfo(3) use non-threadsafe resolver libraries */
420         ldap_pvt_thread_mutex_lock(&ldap_int_resolv_mutex);
421 #endif
422
423         err = getaddrinfo( host, serv, &hints, &res );
424
425 #ifdef LDAP_R_COMPILE
426         ldap_pvt_thread_mutex_unlock(&ldap_int_resolv_mutex);
427 #endif
428
429         if ( err != 0 ) {
430                 osip_debug(ld, "ldap_connect_to_host: getaddrinfo failed: %s\n",
431                         AC_GAI_STRERROR(err), 0, 0);
432                 return -1;
433         }
434         rc = -1;
435
436         for( sai=res; sai != NULL; sai=sai->ai_next) {
437                 if( sai->ai_addr == NULL ) {
438                         osip_debug(ld, "ldap_connect_to_host: getaddrinfo "
439                                 "ai_addr is NULL?\n", 0, 0, 0);
440                         continue;
441                 }
442
443                 /* we assume AF_x and PF_x are equal for all x */
444                 s = ldap_int_socket( ld, sai->ai_family, socktype );
445                 if ( s == AC_SOCKET_INVALID ) {
446                         continue;
447                 }
448
449                 if ( ldap_int_prepare_socket(ld, s, proto ) == -1 ) {
450                         ldap_pvt_close_socket(ld, s);
451                         break;
452                 }
453
454                 switch (sai->ai_family) {
455 #ifdef LDAP_PF_INET6
456                         case AF_INET6: {
457                                 char addr[INET6_ADDRSTRLEN];
458                                 inet_ntop( AF_INET6,
459                                         &((struct sockaddr_in6 *)sai->ai_addr)->sin6_addr,
460                                         addr, sizeof addr);
461                                 osip_debug(ld, "ldap_connect_to_host: Trying %s %s\n", 
462                                         addr, serv, 0);
463                         } break;
464 #endif
465                         case AF_INET: {
466                                 char addr[INET_ADDRSTRLEN];
467                                 inet_ntop( AF_INET,
468                                         &((struct sockaddr_in *)sai->ai_addr)->sin_addr,
469                                         addr, sizeof addr);
470                                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%s\n", 
471                                         addr, serv, 0);
472                         } break;
473                 }
474
475                 rc = ldap_pvt_connect( ld, s,
476                         sai->ai_addr, sai->ai_addrlen, async );
477                 if ( (rc == 0) || (rc == -2) ) {
478                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
479                         break;
480                 }
481                 ldap_pvt_close_socket(ld, s);
482         }
483         freeaddrinfo(res);
484
485 #else
486         if (! inet_aton( host, &in ) ) {
487                 int local_h_errno;
488                 rc = ldap_pvt_gethostbyname_a( host, &he_buf, &ha_buf,
489                         &hp, &local_h_errno );
490
491                 if ( (rc < 0) || (hp == NULL) ) {
492 #ifdef HAVE_WINSOCK
493                         ldap_pvt_set_errno( WSAGetLastError() );
494 #else
495                         /* not exactly right, but... */
496                         ldap_pvt_set_errno( EHOSTUNREACH );
497 #endif
498                         if (ha_buf) LDAP_FREE(ha_buf);
499                         return -1;
500                 }
501
502                 use_hp = 1;
503         }
504
505         rc = s = -1;
506         for ( i = 0; !use_hp || (hp->h_addr_list[i] != 0); ++i, rc = -1 ) {
507                 struct sockaddr_in      sin;
508
509                 s = ldap_int_socket( ld, PF_INET, socktype );
510                 if ( s == AC_SOCKET_INVALID ) {
511                         /* use_hp ? continue : break; */
512                         break;
513                 }
514            
515                 if ( ldap_int_prepare_socket( ld, s, proto ) == -1 ) {
516                         ldap_pvt_close_socket(ld, s);
517                         break;
518                 }
519
520                 (void)memset((char *)&sin, '\0', sizeof sin);
521                 sin.sin_family = AF_INET;
522                 sin.sin_port = htons((short) port);
523
524                 if( use_hp ) {
525                         AC_MEMCPY( &sin.sin_addr, hp->h_addr_list[i],
526                                 sizeof(sin.sin_addr) );
527                 } else {
528                         AC_MEMCPY( &sin.sin_addr, &in.s_addr,
529                                 sizeof(sin.sin_addr) );
530                 }
531
532                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%d\n", 
533                         inet_ntoa(sin.sin_addr), port, 0);
534
535                 rc = ldap_pvt_connect(ld, s,
536                         (struct sockaddr *)&sin, sizeof(sin),
537                         async);
538    
539                 if ( (rc == 0) || (rc == -2) ) {
540                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
541                         break;
542                 }
543
544                 ldap_pvt_close_socket(ld, s);
545
546                 if (!use_hp) break;
547         }
548         if (ha_buf) LDAP_FREE(ha_buf);
549 #endif
550
551         return rc;
552 }
553
554 #if defined( LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND ) || \
555         defined( HAVE_CYRUS_SASL )
556 char *
557 ldap_host_connected_to( Sockbuf *sb, const char *host )
558 {
559         socklen_t               len;
560 #ifdef LDAP_PF_INET6
561         struct sockaddr_storage sabuf;
562 #else
563         struct sockaddr sabuf;
564 #endif
565         struct sockaddr *sa = (struct sockaddr *) &sabuf;
566         ber_socket_t    sd;
567
568         (void)memset( (char *)sa, '\0', sizeof sabuf );
569         len = sizeof sabuf;
570
571         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
572         if ( getpeername( sd, sa, &len ) == -1 ) {
573                 return( NULL );
574         }
575
576         /*
577          * do a reverse lookup on the addr to get the official hostname.
578          * this is necessary for kerberos to work right, since the official
579          * hostname is used as the kerberos instance.
580          */
581
582         switch (sa->sa_family) {
583 #ifdef LDAP_PF_LOCAL
584         case AF_LOCAL:
585                 return LDAP_STRDUP( ldap_int_hostname );
586 #endif
587 #ifdef LDAP_PF_INET6
588         case AF_INET6:
589                 {
590                         struct in6_addr localhost = IN6ADDR_LOOPBACK_INIT;
591                         if( memcmp ( &((struct sockaddr_in6 *)sa)->sin6_addr,
592                                 &localhost, sizeof(localhost)) == 0 )
593                         {
594                                 return LDAP_STRDUP( ldap_int_hostname );
595                         }
596                 }
597                 break;
598 #endif
599         case AF_INET:
600                 {
601                         struct in_addr localhost;
602                         localhost.s_addr = htonl( INADDR_ANY );
603
604                         if( memcmp ( &((struct sockaddr_in *)sa)->sin_addr,
605                                 &localhost, sizeof(localhost) ) == 0 )
606                         {
607                                 return LDAP_STRDUP( ldap_int_hostname );
608                         }
609
610 #ifdef INADDR_LOOPBACK
611                         localhost.s_addr = htonl( INADDR_LOOPBACK );
612
613                         if( memcmp ( &((struct sockaddr_in *)sa)->sin_addr,
614                                 &localhost, sizeof(localhost) ) == 0 )
615                         {
616                                 return LDAP_STRDUP( ldap_int_hostname );
617                         }
618 #endif
619                 }
620                 break;
621
622         default:
623                 return( NULL );
624                 break;
625         }
626
627         {
628                 char *herr;
629 #ifdef NI_MAXHOST
630                 char hbuf[NI_MAXHOST];
631 #elif defined( MAXHOSTNAMELEN
632                 char hbuf[MAXHOSTNAMELEN];
633 #else
634                 char hbuf[256];
635 #endif
636                 hbuf[0] = 0;
637
638                 if (ldap_pvt_get_hname( sa, len, hbuf, sizeof(hbuf), &herr ) == 0
639                         && hbuf[0] ) 
640                 {
641                         return LDAP_STRDUP( hbuf );   
642                 }
643         }
644
645         return host ? LDAP_STRDUP( host ) : NULL;
646 }
647 #endif
648
649
650 struct selectinfo {
651 #ifdef HAVE_POLL
652         /* for UNIX poll(2) */
653         int si_maxfd;
654         struct pollfd si_fds[FD_SETSIZE];
655 #else
656         /* for UNIX select(2) */
657         fd_set  si_readfds;
658         fd_set  si_writefds;
659         fd_set  si_use_readfds;
660         fd_set  si_use_writefds;
661 #endif
662 };
663
664 void
665 ldap_mark_select_write( LDAP *ld, Sockbuf *sb )
666 {
667         struct selectinfo       *sip;
668         ber_socket_t            sd;
669
670         sip = (struct selectinfo *)ld->ld_selectinfo;
671         
672         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
673
674 #ifdef HAVE_POLL
675         /* for UNIX poll(2) */
676         {
677                 int empty=-1;
678                 int i;
679                 for(i=0; i < sip->si_maxfd; i++) {
680                         if( sip->si_fds[i].fd == sd ) {
681                                 sip->si_fds[i].events |= POLL_WRITE;
682                                 return;
683                         }
684                         if( empty==-1 && sip->si_fds[i].fd == -1 ) {
685                                 empty=i;
686                         }
687                 }
688
689                 if( empty == -1 ) {
690                         if( sip->si_maxfd >= FD_SETSIZE ) {
691                                 /* FIXME */
692                                 return;
693                         }
694                         empty = sip->si_maxfd++;
695                 }
696
697                 sip->si_fds[empty].fd = sd;
698                 sip->si_fds[empty].events = POLL_WRITE;
699         }
700 #else
701         /* for UNIX select(2) */
702         if ( !FD_ISSET( sd, &sip->si_writefds )) {
703                 FD_SET( sd, &sip->si_writefds );
704         }
705 #endif
706 }
707
708
709 void
710 ldap_mark_select_read( LDAP *ld, Sockbuf *sb )
711 {
712         struct selectinfo       *sip;
713         ber_socket_t            sd;
714
715         sip = (struct selectinfo *)ld->ld_selectinfo;
716
717         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
718
719 #ifdef HAVE_POLL
720         /* for UNIX poll(2) */
721         {
722                 int empty=-1;
723                 int i;
724                 for(i=0; i < sip->si_maxfd; i++) {
725                         if( sip->si_fds[i].fd == sd ) {
726                                 sip->si_fds[i].events |= POLL_READ;
727                                 return;
728                         }
729                         if( empty==-1 && sip->si_fds[i].fd == -1 ) {
730                                 empty=i;
731                         }
732                 }
733
734                 if( empty == -1 ) {
735                         if( sip->si_maxfd >= FD_SETSIZE ) {
736                                 /* FIXME */
737                                 return;
738                         }
739                         empty = sip->si_maxfd++;
740                 }
741
742                 sip->si_fds[empty].fd = sd;
743                 sip->si_fds[empty].events = POLL_READ;
744         }
745 #else
746         /* for UNIX select(2) */
747         if ( !FD_ISSET( sd, &sip->si_readfds )) {
748                 FD_SET( sd, &sip->si_readfds );
749         }
750 #endif
751 }
752
753
754 void
755 ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
756 {
757         struct selectinfo       *sip;
758         ber_socket_t            sd;
759
760         sip = (struct selectinfo *)ld->ld_selectinfo;
761
762         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
763
764 #ifdef HAVE_POLL
765         /* for UNIX poll(2) */
766         {
767                 int i;
768                 for(i=0; i < sip->si_maxfd; i++) {
769                         if( sip->si_fds[i].fd == sd ) {
770                                 sip->si_fds[i].fd = -1;
771                         }
772                 }
773         }
774 #else
775         /* for UNIX select(2) */
776         FD_CLR( sd, &sip->si_writefds );
777         FD_CLR( sd, &sip->si_readfds );
778 #endif
779 }
780
781
782 int
783 ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
784 {
785         struct selectinfo       *sip;
786         ber_socket_t            sd;
787
788         sip = (struct selectinfo *)ld->ld_selectinfo;
789
790         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
791
792 #ifdef HAVE_POLL
793         /* for UNIX poll(2) */
794         {
795                 int i;
796                 for(i=0; i < sip->si_maxfd; i++) {
797                         if( sip->si_fds[i].fd == sd ) {
798                                 return sip->si_fds[i].revents & POLL_WRITE;
799                         }
800                 }
801
802                 return 0;
803         }
804 #else
805         /* for UNIX select(2) */
806         return( FD_ISSET( sd, &sip->si_use_writefds ));
807 #endif
808 }
809
810
811 int
812 ldap_is_read_ready( LDAP *ld, Sockbuf *sb )
813 {
814         struct selectinfo       *sip;
815         ber_socket_t            sd;
816
817         sip = (struct selectinfo *)ld->ld_selectinfo;
818
819         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
820
821 #ifdef HAVE_POLL
822         /* for UNIX poll(2) */
823         {
824                 int i;
825                 for(i=0; i < sip->si_maxfd; i++) {
826                         if( sip->si_fds[i].fd == sd ) {
827                                 return sip->si_fds[i].revents & POLL_READ;
828                         }
829                 }
830
831                 return 0;
832         }
833 #else
834         /* for UNIX select(2) */
835         return( FD_ISSET( sd, &sip->si_use_readfds ));
836 #endif
837 }
838
839
840 void *
841 ldap_new_select_info( void )
842 {
843         struct selectinfo       *sip;
844
845         sip = (struct selectinfo *)LDAP_CALLOC( 1, sizeof( struct selectinfo ));
846
847         if ( sip == NULL ) return NULL;
848
849 #ifdef HAVE_POLL
850         /* for UNIX poll(2) */
851         /* sip->si_maxfd=0 */
852 #else
853         /* for UNIX select(2) */
854         FD_ZERO( &sip->si_readfds );
855         FD_ZERO( &sip->si_writefds );
856 #endif
857
858         return( (void *)sip );
859 }
860
861
862 void
863 ldap_free_select_info( void *sip )
864 {
865         LDAP_FREE( sip );
866 }
867
868
869 #ifndef HAVE_POLL
870 int ldap_int_tblsize = 0;
871
872 void
873 ldap_int_ip_init( void )
874 {
875 #if defined( HAVE_SYSCONF )
876         long tblsize = sysconf( _SC_OPEN_MAX );
877         if( tblsize > INT_MAX ) tblsize = INT_MAX;
878
879 #elif defined( HAVE_GETDTABLESIZE )
880         int tblsize = getdtablesize();
881 #else
882         int tblsize = FD_SETSIZE;
883 #endif /* !USE_SYSCONF */
884
885 #ifdef FD_SETSIZE
886         if( tblsize > FD_SETSIZE ) tblsize = FD_SETSIZE;
887 #endif  /* FD_SETSIZE */
888
889         ldap_int_tblsize = tblsize;
890 }
891 #endif
892
893
894 int
895 ldap_int_select( LDAP *ld, struct timeval *timeout )
896 {
897         int rc;
898         struct selectinfo       *sip;
899
900         Debug( LDAP_DEBUG_TRACE, "ldap_int_select\n", 0, 0, 0 );
901
902 #ifndef HAVE_POLL
903         if ( ldap_int_tblsize == 0 ) ldap_int_ip_init();
904 #endif
905
906         sip = (struct selectinfo *)ld->ld_selectinfo;
907         assert( sip != NULL );
908
909 #ifdef HAVE_POLL
910         {
911                 int to = timeout ? TV2MILLISEC( timeout ) : INFTIM;
912                 rc = poll( sip->si_fds, sip->si_maxfd, to );
913         }
914 #else
915         sip->si_use_readfds = sip->si_readfds;
916         sip->si_use_writefds = sip->si_writefds;
917         
918         rc = select( ldap_int_tblsize,
919                 &sip->si_use_readfds, &sip->si_use_writefds,
920                 NULL, timeout );
921 #endif
922
923         return rc;
924 }