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