]> git.sur5r.net Git - openldap/blob - libraries/libldap/os-ip.c
c1c75e894ba527b0b879eb2917330abf92fa9a3e
[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         SAFEMEMCPY( (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_pvt_socket(LDAP *ld)
99 {
100         ber_socket_t s = socket(AF_INET, SOCK_STREAM, 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_pvt_prepare_socket(LDAP *ld, int fd)
114 {
115         osip_debug(ld, "ldap_prepare_socket: %d\n",fd,0,0);
116
117 #ifdef TCP_NODELAY
118 {
119         int dummy = 1;
120         if ( setsockopt( fd, 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                         fd, 0, 0);
126         }
127 }
128 #endif
129         return 0;
130 }
131
132 #undef TRACE
133 #define TRACE do { \
134         osip_debug(ld, \
135                 "ldap_is_socket_ready: error on socket %d: errno: %d (%s)\n", \
136                 s, \
137                 errno, \
138                 sock_errstr(errno) ); \
139 } while( 0 )
140
141 /*
142  * check the socket for errors after select returned.
143  */
144 static int
145 ldap_pvt_is_socket_ready(LDAP *ld, int s)
146 {
147         osip_debug(ld, "ldap_is_sock_ready: %d\n",s,0,0);
148
149 #if defined( notyet ) /* && defined( SO_ERROR ) */
150 {
151         int so_errno;
152         int dummy = sizeof(so_errno);
153         if ( getsockopt( s, SOL_SOCKET, SO_ERROR, &so_errno, &dummy ) == -1 ) {
154                 return -1;
155         }
156         if ( so_errno ) {
157                 ldap_pvt_set_errno(so_errno);
158                 TRACE;
159                 return -1;
160         }
161         return 0;
162 }
163 #else
164 {
165         /* error slippery */
166         struct sockaddr_in sin;
167         char ch;
168         int dummy = sizeof(sin);
169         if ( getpeername( s, (struct sockaddr *) &sin, &dummy ) == -1 ) {
170                 /* XXX: needs to be replace with ber_stream_read() */
171                 read(s, &ch, 1);
172 #ifdef HAVE_WINSOCK
173                 ldap_pvt_set_errno( WSAGetLastError() );
174 #endif
175                 TRACE;
176                 return -1;
177         }
178         return 0;
179 }
180 #endif
181         return -1;
182 }
183 #undef TRACE
184
185 static int
186 ldap_pvt_connect(LDAP *ld, ber_socket_t s, struct sockaddr_in *sin, int async)
187 {
188         struct timeval  tv, *opt_tv=NULL;
189         fd_set          wfds, *z=NULL;
190 #ifdef HAVE_WINSOCK
191         fd_set          efds;
192 #endif
193
194         if ( (opt_tv = ld->ld_options.ldo_tm_net) != NULL ) {
195                 tv.tv_usec = opt_tv->tv_usec;
196                 tv.tv_sec = opt_tv->tv_sec;
197         }
198
199         osip_debug(ld, "ldap_connect_timeout: fd: %d tm: %ld async: %d\n",
200                         s, opt_tv ? tv.tv_sec : -1L, async);
201
202         if ( ldap_pvt_ndelay_on(ld, s) == -1 )
203                 return ( -1 );
204
205         if ( connect(s, (struct sockaddr *) sin, sizeof(struct sockaddr_in)) == 0 )
206         {
207                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
208                         return ( -1 );
209                 return ( 0 );
210         }
211
212 #ifdef HAVE_WINSOCK
213         ldap_pvt_set_errno( WSAGetLastError() );
214 #endif
215
216         if ( errno != EINPROGRESS && errno != EWOULDBLOCK ) {
217                 return ( -1 );
218         }
219         
220 #ifdef notyet
221         if ( async ) return ( -2 );
222 #endif
223
224         FD_ZERO(&wfds);
225         FD_SET(s, &wfds );
226
227 #ifdef HAVE_WINSOCK
228         FD_ZERO(&efds);
229         FD_SET(s, &efds );
230 #endif
231
232         if ( select(ldap_int_tblsize, z, &wfds,
233 #ifdef HAVE_WINSOCK
234                     &efds,
235 #else
236                     z,
237 #endif
238                     opt_tv ? &tv : NULL) == -1)
239                 return ( -1 );
240
241 #ifdef HAVE_WINSOCK
242         /* This means the connection failed */
243         if (FD_ISSET(s, &efds))
244         {
245             ldap_pvt_set_errno(WSAECONNREFUSED);
246             osip_debug(ld, "ldap_pvt_connect: error on socket %d: "
247                        "errno: %d (%s)\n", s, errno, sock_errstr(errno));
248             return -1;
249         }
250 #endif
251         if ( FD_ISSET(s, &wfds) ) {
252                 if ( ldap_pvt_is_socket_ready(ld, s) == -1 )
253                         return ( -1 );
254                 if ( ldap_pvt_ndelay_off(ld, s) == -1 )
255                         return ( -1 );
256                 return ( 0 );
257         }
258         osip_debug(ld, "ldap_connect_timeout: timed out\n",0,0,0);
259         ldap_pvt_set_errno( ETIMEDOUT );
260         return ( -1 );
261 }
262
263 #ifndef HAVE_INET_ATON
264 int
265 ldap_pvt_inet_aton( const char *host, struct in_addr *in)
266 {
267         unsigned long u = inet_addr( host );
268         if ( u != 0xffffffff || u != (unsigned long) -1 ) {
269                 in->s_addr = u;
270                 return 1;
271         }
272         return 0;
273 }
274 #endif
275
276
277 int
278 ldap_connect_to_host(LDAP *ld, Sockbuf *sb, const char *host,
279                 unsigned long address, int port, int async)
280 {
281         struct sockaddr_in      sin;
282         struct in_addr          in;
283         ber_socket_t            s = AC_SOCKET_INVALID;
284         int                     rc, i, use_hp = 0;
285         struct hostent          *hp, he_buf;
286         int                     local_h_errno;
287         char                    *ha_buf=NULL, *p, *q;
288
289         osip_debug(ld, "ldap_connect_to_host\n",0,0,0);
290         
291         if (host != NULL) {
292                 if (! inet_aton( host, &in) ) {
293                         rc = ldap_pvt_gethostbyname_a(host, &he_buf, &ha_buf,
294                                         &hp, &local_h_errno);
295
296                         if ( rc < 0 )
297                                 ; /*XXX NO MEMORY? */
298
299                         if ( (rc < 0) || (hp == NULL) ) {
300 #ifdef HAVE_WINSOCK
301                                 ldap_pvt_set_errno( WSAGetLastError() );
302 #else
303                                 /* not exactly right, but... */
304                                 ldap_pvt_set_errno( EHOSTUNREACH );
305 #endif
306                                 if (ha_buf) LDAP_FREE(ha_buf);
307                                 return -1;
308                         }
309                         use_hp = 1;
310                 }
311                 address = in.s_addr;
312         }
313
314         rc = s = -1;
315         for ( i = 0; !use_hp || (hp->h_addr_list[i] != 0); ++i, rc = -1 ) {
316
317                 if ( (s = ldap_pvt_socket( ld )) == -1 )
318                         /* use_hp ? continue : break; */
319                         break;
320            
321                 if ( ldap_pvt_prepare_socket(ld, s) == -1 ) {
322                         ldap_pvt_close_socket(ld, s);
323                         /* use_hp ? continue : break; */
324                         break;
325                 }
326
327                 (void)memset((char *)&sin, '\0', sizeof(struct sockaddr_in));
328                 sin.sin_family = AF_INET;
329                 sin.sin_port = port;
330                 p = (char *)&sin.sin_addr;
331                 q = use_hp ? (char *)hp->h_addr_list[i] : (char *)&address;
332                 SAFEMEMCPY(p, q, sizeof(sin.sin_addr) );
333
334                 osip_debug(ld, "ldap_connect_to_host: Trying %s:%d\n", 
335                                 inet_ntoa(sin.sin_addr),ntohs(sin.sin_port),0);
336
337                 rc = ldap_pvt_connect(ld, s, &sin, async);
338    
339                 if ( (rc == 0) || (rc == -2) ) {
340                         ber_sockbuf_ctrl( sb, LBER_SB_OPT_SET_FD, &s );
341                         break;
342                 }
343
344                 ldap_pvt_close_socket(ld, s);
345
346                 if (!use_hp)
347                         break;
348         }
349         if (ha_buf) LDAP_FREE(ha_buf);
350         return rc;
351 }
352
353 #if defined( LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND ) || defined( HAVE_TLS ) || defined( HAVE_CYRUS_SASL )
354 char *
355 ldap_host_connected_to( Sockbuf *sb )
356 {
357         struct hostent          *hp;
358         socklen_t               len;
359         struct sockaddr_in      sin;
360
361         /* buffers for gethostbyaddr_r */
362         struct hostent          he_buf;
363         int                     local_h_errno;
364         char                    *ha_buf=NULL;
365         ber_socket_t            sd;
366 #define DO_RETURN(x) if (ha_buf) LDAP_FREE(ha_buf); return (x);
367    
368         (void)memset( (char *)&sin, '\0', sizeof( struct sockaddr_in ));
369         len = sizeof( sin );
370
371         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
372         if ( getpeername( sd, (struct sockaddr *)&sin, &len ) == -1 ) {
373                 return( NULL );
374         }
375
376         /*
377          * do a reverse lookup on the addr to get the official hostname.
378          * this is necessary for kerberos to work right, since the official
379          * hostname is used as the kerberos instance.
380          */
381         if ((ldap_pvt_gethostbyaddr_a( (char *) &sin.sin_addr,
382                 sizeof( sin.sin_addr ), 
383                 AF_INET, &he_buf, &ha_buf,
384                 &hp,&local_h_errno ) ==0 ) && (hp != NULL) )
385         {
386                 if ( hp->h_name != NULL ) {
387                         char *host = LDAP_STRDUP( hp->h_name );   
388                         DO_RETURN( host );
389                 }
390         }
391
392         DO_RETURN( NULL );
393 }
394 #undef DO_RETURN   
395    
396 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND || HAVE_TLS */
397
398
399 /* for UNIX */
400 struct selectinfo {
401         fd_set  si_readfds;
402         fd_set  si_writefds;
403         fd_set  si_use_readfds;
404         fd_set  si_use_writefds;
405 };
406
407
408 void
409 ldap_mark_select_write( LDAP *ld, Sockbuf *sb )
410 {
411         struct selectinfo       *sip;
412         ber_socket_t            sd;
413
414         sip = (struct selectinfo *)ld->ld_selectinfo;
415         
416         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
417         if ( !FD_ISSET( sd, &sip->si_writefds )) {
418                 FD_SET( sd, &sip->si_writefds );
419         }
420 }
421
422
423 void
424 ldap_mark_select_read( LDAP *ld, Sockbuf *sb )
425 {
426         struct selectinfo       *sip;
427         ber_socket_t            sd;
428
429         sip = (struct selectinfo *)ld->ld_selectinfo;
430
431         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
432         if ( !FD_ISSET( sd, &sip->si_readfds )) {
433                 FD_SET( sd, &sip->si_readfds );
434         }
435 }
436
437
438 void
439 ldap_mark_select_clear( LDAP *ld, Sockbuf *sb )
440 {
441         struct selectinfo       *sip;
442         ber_socket_t            sd;
443
444         sip = (struct selectinfo *)ld->ld_selectinfo;
445
446         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
447         FD_CLR( sd, &sip->si_writefds );
448         FD_CLR( sd, &sip->si_readfds );
449 }
450
451
452 int
453 ldap_is_write_ready( LDAP *ld, Sockbuf *sb )
454 {
455         struct selectinfo       *sip;
456         ber_socket_t            sd;
457
458         sip = (struct selectinfo *)ld->ld_selectinfo;
459
460         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
461         return( FD_ISSET( sd, &sip->si_use_writefds ));
462 }
463
464
465 int
466 ldap_is_read_ready( LDAP *ld, Sockbuf *sb )
467 {
468         struct selectinfo       *sip;
469         ber_socket_t            sd;
470
471         sip = (struct selectinfo *)ld->ld_selectinfo;
472
473         ber_sockbuf_ctrl( sb, LBER_SB_OPT_GET_FD, &sd );
474         return( FD_ISSET( sd, &sip->si_use_readfds ));
475 }
476
477
478 void *
479 ldap_new_select_info( void )
480 {
481         struct selectinfo       *sip;
482
483         if (( sip = (struct selectinfo *)LDAP_CALLOC( 1,
484             sizeof( struct selectinfo ))) != NULL ) {
485                 FD_ZERO( &sip->si_readfds );
486                 FD_ZERO( &sip->si_writefds );
487         }
488
489         return( (void *)sip );
490 }
491
492
493 void
494 ldap_free_select_info( void *sip )
495 {
496         LDAP_FREE( sip );
497 }
498
499
500 void
501 ldap_int_ip_init( void )
502 {
503         int tblsize;
504 #if defined( HAVE_SYSCONF )
505         tblsize = sysconf( _SC_OPEN_MAX );
506 #elif defined( HAVE_GETDTABLESIZE )
507         tblsize = getdtablesize();
508 #else
509         tblsize = FD_SETSIZE;
510 #endif /* !USE_SYSCONF */
511
512 #ifdef FD_SETSIZE
513         if( tblsize > FD_SETSIZE )
514                 tblsize = FD_SETSIZE;
515 #endif  /* FD_SETSIZE*/
516         ldap_int_tblsize = tblsize;
517 }
518
519
520 int
521 do_ldap_select( LDAP *ld, struct timeval *timeout )
522 {
523         struct selectinfo       *sip;
524
525         Debug( LDAP_DEBUG_TRACE, "do_ldap_select\n", 0, 0, 0 );
526
527         if ( ldap_int_tblsize == 0 )
528                 ldap_int_ip_init();
529
530         sip = (struct selectinfo *)ld->ld_selectinfo;
531         sip->si_use_readfds = sip->si_readfds;
532         sip->si_use_writefds = sip->si_writefds;
533         
534         return( select( ldap_int_tblsize,
535                         &sip->si_use_readfds, &sip->si_use_writefds,
536                         NULL, timeout ));
537 }