]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-ip.c
s/SAFEMEMCPY/AC_MEMCPY/
[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 = proto == LDAP_PROTO_UDP
304                         ? SOCK_DGRAM : SOCK_STREAM;
305
306                 snprintf(serv, sizeof serv, "%d", ntohs(port));
307                 if ( getaddrinfo(host, serv, &hints, &res) ) {
308                         osip_debug(ld, "ldap_connect_to_host:getaddrinfo failed\n",0,0,0);
309                         return -1;
310                 }
311                 sai = res;
312                 rc = -1;
313                 do {
314                         /* we assume AF_x and PF_x are equal for all x */
315                         s = ldap_int_socket( ld, sai->ai_family,
316                                 proto == LDAP_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM );
317                         if ( s == -1 ) {
318                                 continue;
319                         }
320
321                         if ( ldap_int_prepare_socket(ld, s, proto ) == -1 ) {
322                                 ldap_pvt_close_socket(ld, s);
323                                 break;
324                         }
325
326                         switch (sai->ai_family) {
327 #ifdef LDAP_PF_INET6
328                         case AF_INET6: {
329                                 char addr[INET6_ADDRSTRLEN];
330                                 inet_ntop( AF_INET6,
331                                         &((struct sockaddr_in6 *)sai->ai_addr)->sin6_addr,
332                                         addr, sizeof addr);
333                                 osip_debug(ld, "ldap_connect_to_host: Trying %s %s\n", 
334                                         addr, serv, 0);
335                         } break;
336 #endif
337                         case AF_INET: {
338                                 char addr[INET_ADDRSTRLEN];
339                                 inet_ntop( AF_INET,
340                                         &((struct sockaddr_in *)sai->ai_addr)->sin_addr,
341                                         addr, sizeof addr);
342                                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%s\n", 
343                                         addr, serv, 0);
344                         } break;
345                         }
346
347                         rc = ldap_pvt_connect(ld, s, sai->ai_addr, sai->ai_addrlen, async);
348                         if ( (rc == 0) || (rc == -2) ) {
349                                 ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
350                                 break;
351                         }
352                         ldap_pvt_close_socket(ld, s);
353                 } while ((sai = sai->ai_next) != NULL);
354                 freeaddrinfo(res);
355                 return rc;
356 #else
357                 if (! inet_aton( host, &in) ) {
358                         rc = ldap_pvt_gethostbyname_a(host, &he_buf, &ha_buf,
359                                         &hp, &local_h_errno);
360
361                         if ( (rc < 0) || (hp == NULL) ) {
362 #ifdef HAVE_WINSOCK
363                                 ldap_pvt_set_errno( WSAGetLastError() );
364 #else
365                                 /* not exactly right, but... */
366                                 ldap_pvt_set_errno( EHOSTUNREACH );
367 #endif
368                                 if (ha_buf) LDAP_FREE(ha_buf);
369                                 return -1;
370                         }
371                         use_hp = 1;
372                 }
373                 address = in.s_addr;
374 #endif
375         }
376
377         rc = s = -1;
378         for ( i = 0; !use_hp || (hp->h_addr_list[i] != 0); ++i, rc = -1 ) {
379
380                 s = ldap_int_socket( ld, PF_INET,
381                         proto == LDAP_PROTO_UDP ? SOCK_DGRAM : SOCK_STREAM );
382                 if ( s == -1 ) {
383                         /* use_hp ? continue : break; */
384                         break;
385                 }
386            
387                 if ( ldap_int_prepare_socket( ld, s, proto ) == -1 ) {
388                         ldap_pvt_close_socket(ld, s);
389                         break;
390                 }
391
392                 (void)memset((char *)&sin, '\0', sizeof(struct sockaddr_in));
393                 sin.sin_family = AF_INET;
394                 sin.sin_port = port;
395                 p = (char *)&sin.sin_addr;
396                 q = use_hp ? (char *)hp->h_addr_list[i] : (char *)&address;
397                 AC_MEMCPY(p, q, sizeof(sin.sin_addr) );
398
399                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%d\n", 
400                                 inet_ntoa(sin.sin_addr),ntohs(sin.sin_port),0);
401
402                 rc = ldap_pvt_connect(ld, s,
403                         (struct sockaddr *)&sin, sizeof(struct sockaddr_in),
404                         async);
405    
406                 if ( (rc == 0) || (rc == -2) ) {
407                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
408                         break;
409                 }
410
411                 ldap_pvt_close_socket(ld, s);
412
413                 if (!use_hp)
414                         break;
415         }
416         if (ha_buf) LDAP_FREE(ha_buf);
417         return rc;
418 }
419
420 #if defined( LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND ) \
421         || defined( HAVE_TLS ) || defined( HAVE_CYRUS_SASL )
422 char *
423 ldap_host_connected_to( Sockbuf *sb )
424 {
425         struct hostent  *hp;
426         socklen_t               len;
427         struct sockaddr sa;
428         char                    *addr;
429         char                    *host;
430
431         /* buffers for gethostbyaddr_r */
432         struct hostent  he_buf;
433         int                             local_h_errno;
434         char                    *ha_buf=NULL;
435         ber_socket_t    sd;
436
437         (void)memset( (char *)&sa, '\0', sizeof( struct sockaddr ));
438         len = sizeof( sa );
439
440         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
441         if ( getpeername( sd, &sa, &len ) == -1 ) {
442                 return( NULL );
443         }
444
445         /*
446          * do a reverse lookup on the addr to get the official hostname.
447          * this is necessary for kerberos to work right, since the official
448          * hostname is used as the kerberos instance.
449          */
450
451         switch (sa.sa_family) {
452 #ifdef LDAP_PF_LOCAL
453         case AF_LOCAL:
454                 return LDAP_STRDUP( ldap_int_hostname );
455 #endif
456 #ifdef LDAP_PF_INET6
457         case AF_INET6:
458                 addr = (char *) &((struct sockaddr_in6 *)&sa)->sin6_addr;
459                 len = sizeof( struct in6_addr );
460                 break;
461 #endif
462         case AF_INET:
463                 addr = (char *) &((struct sockaddr_in *)&sa)->sin_addr;
464                 len = sizeof( struct in_addr );
465
466                 {
467                         struct sockaddr_in localhost;
468                         localhost.sin_addr.s_addr = htonl( INADDR_ANY );
469
470                         if( memcmp ( &localhost.sin_addr,
471                                 &((struct sockaddr_in *)&sa)->sin_addr,
472                                 sizeof(localhost.sin_addr) ) == 0 )
473                         {
474                                 return LDAP_STRDUP( ldap_int_hostname );
475                         }
476                 }
477                 break;
478
479         default:
480                 return( NULL );
481                 break;
482         }
483
484         host = NULL;
485         if ((ldap_pvt_gethostbyaddr_a( addr, len,
486                 sa.sa_family, &he_buf, &ha_buf,
487                 &hp,&local_h_errno ) == 0 ) &&
488                 (hp != NULL) && ( hp->h_name != NULL ) )
489         {
490                 host = LDAP_STRDUP( hp->h_name );   
491         }
492
493         LDAP_FREE( ha_buf );
494         return host;
495 }
496 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND || HAVE_TLS */
497
498
499 /* for UNIX */
500 struct selectinfo {
501         fd_set  si_readfds;
502         fd_set  si_writefds;
503         fd_set  si_use_readfds;
504         fd_set  si_use_writefds;
505 };
506
507
508 void
509 ldap_mark_select_write( LDAP *ld, Sockbuf *sb )
510 {
511         struct selectinfo       *sip;
512         ber_socket_t            sd;
513
514         sip = (struct selectinfo *)ld->ld_selectinfo;
515         
516         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
517         if ( !FD_ISSET( sd, &sip->si_writefds )) {
518                 FD_SET( sd, &sip->si_writefds );
519         }
520 }
521
522
523 void
524 ldap_mark_select_read( LDAP *ld, Sockbuf *sb )
525 {
526         struct selectinfo       *sip;
527         ber_socket_t            sd;
528
529         sip = (struct selectinfo *)ld->ld_selectinfo;
530
531         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
532         if ( !FD_ISSET( sd, &sip->si_readfds )) {
533                 FD_SET( sd, &sip->si_readfds );
534         }
535 }
536
537
538 void
539 ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
540 {
541         struct selectinfo       *sip;
542         ber_socket_t            sd;
543
544         sip = (struct selectinfo *)ld->ld_selectinfo;
545
546         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
547         FD_CLR( sd, &sip->si_writefds );
548         FD_CLR( sd, &sip->si_readfds );
549 }
550
551
552 int
553 ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
554 {
555         struct selectinfo       *sip;
556         ber_socket_t            sd;
557
558         sip = (struct selectinfo *)ld->ld_selectinfo;
559
560         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
561         return( FD_ISSET( sd, &sip->si_use_writefds ));
562 }
563
564
565 int
566 ldap_is_read_ready( LDAP *ld, Sockbuf *sb )
567 {
568         struct selectinfo       *sip;
569         ber_socket_t            sd;
570
571         sip = (struct selectinfo *)ld->ld_selectinfo;
572
573         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
574         return( FD_ISSET( sd, &sip->si_use_readfds ));
575 }
576
577
578 void *
579 ldap_new_select_info( void )
580 {
581         struct selectinfo       *sip;
582
583         if (( sip = (struct selectinfo *)LDAP_CALLOC( 1,
584             sizeof( struct selectinfo ))) != NULL ) {
585                 FD_ZERO( &sip->si_readfds );
586                 FD_ZERO( &sip->si_writefds );
587         }
588
589         return( (void *)sip );
590 }
591
592
593 void
594 ldap_free_select_info( void *sip )
595 {
596         LDAP_FREE( sip );
597 }
598
599
600 void
601 ldap_int_ip_init( void )
602 {
603         int tblsize;
604 #if defined( HAVE_SYSCONF )
605         tblsize = sysconf( _SC_OPEN_MAX );
606 #elif defined( HAVE_GETDTABLESIZE )
607         tblsize = getdtablesize();
608 #else
609         tblsize = FD_SETSIZE;
610 #endif /* !USE_SYSCONF */
611
612 #ifdef FD_SETSIZE
613         if( tblsize > FD_SETSIZE )
614                 tblsize = FD_SETSIZE;
615 #endif  /* FD_SETSIZE*/
616         ldap_int_tblsize = tblsize;
617 }
618
619
620 int
621 do_ldap_select( LDAP *ld, struct timeval *timeout )
622 {
623         struct selectinfo       *sip;
624
625         Debug( LDAP_DEBUG_TRACE, "do_ldap_select\n", 0, 0, 0 );
626
627         if ( ldap_int_tblsize == 0 )
628                 ldap_int_ip_init();
629
630         sip = (struct selectinfo *)ld->ld_selectinfo;
631         sip->si_use_readfds = sip->si_readfds;
632         sip->si_use_writefds = sip->si_writefds;
633         
634         return( select( ldap_int_tblsize,
635                         &sip->si_use_readfds, &sip->si_use_writefds,
636                         NULL, timeout ));
637 }