]> git.sur5r.net Git - openldap/blob - libraries/libldap/open.c
ea51f91c0a55b49fff47e1c140c0a85b0a9749b5
[openldap] / libraries / libldap / open.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  *  open.c
11  */
12
13 #include "portable.h"
14
15 #include <stdio.h>
16 #include <limits.h>
17
18 #include <ac/stdlib.h>
19
20 #include <ac/param.h>
21 #include <ac/socket.h>
22 #include <ac/string.h>
23 #include <ac/time.h>
24
25 #include <ac/unistd.h>
26
27 #include "ldap-int.h"
28 #include "ldap_log.h"
29
30 int ldap_open_defconn( LDAP *ld )
31 {
32         ld->ld_defconn = ldap_new_connection( ld,
33                 ld->ld_options.ldo_defludp, 1, 1, NULL );
34
35         if( ld->ld_defconn == NULL ) {
36                 ld->ld_errno = LDAP_SERVER_DOWN;
37                 return -1;
38         }
39
40         ++ld->ld_defconn->lconn_refcnt; /* so it never gets closed/freed */
41         return 0;
42 }
43
44 /*
45  * ldap_open - initialize and connect to an ldap server.  A magic cookie to
46  * be used for future communication is returned on success, NULL on failure.
47  * "host" may be a space-separated list of hosts or IP addresses
48  *
49  * Example:
50  *      LDAP    *ld;
51  *      ld = ldap_open( hostname, port );
52  */
53
54 LDAP *
55 ldap_open( LDAP_CONST char *host, int port )
56 {
57         int rc;
58         LDAP            *ld;
59
60 #ifdef NEW_LOGGING
61         LDAP_LOG ( CONNECTION, ARGS, "ldap_open(%s, %d)\n", host, port, 0 );
62 #else
63         Debug( LDAP_DEBUG_TRACE, "ldap_open(%s, %d)\n",
64                 host, port, 0 );
65 #endif
66
67         ld = ldap_init( host, port );
68         if ( ld == NULL ) {
69                 return( NULL );
70         }
71
72         rc = ldap_open_defconn( ld );
73
74         if( rc < 0 ) {
75                 ldap_ld_free( ld, 0, NULL, NULL );
76                 ld = NULL;
77         }
78
79 #ifdef NEW_LOGGING
80         LDAP_LOG ( CONNECTION, RESULTS, "ldap_open: %s\n",
81                 ld == NULL ? "succeeded" : "failed", 0, 0 );
82 #else
83         Debug( LDAP_DEBUG_TRACE, "ldap_open: %s\n",
84                 ld == NULL ? "succeeded" : "failed", 0, 0 );
85 #endif
86
87         return ld;
88 }
89
90
91
92 int
93 ldap_create( LDAP **ldp )
94 {
95         LDAP                    *ld;
96         struct ldapoptions      *gopts;
97
98         *ldp = NULL;
99         /* Get pointer to global option structure */
100         if ( (gopts = LDAP_INT_GLOBAL_OPT()) == NULL) {
101                 return LDAP_NO_MEMORY;
102         }
103
104         /* Initialize the global options, if not already done. */
105         if( gopts->ldo_valid != LDAP_INITIALIZED ) {
106                 ldap_int_initialize(gopts, NULL);
107                 if ( gopts->ldo_valid != LDAP_INITIALIZED )
108                         return LDAP_LOCAL_ERROR;
109         }
110
111 #ifdef NEW_LOGGING
112         LDAP_LOG ( CONNECTION, ENTRY, "ldap_create\n", 0, 0, 0 );
113 #else
114         Debug( LDAP_DEBUG_TRACE, "ldap_create\n", 0, 0, 0 );
115 #endif
116
117         if ( (ld = (LDAP *) LDAP_CALLOC( 1, sizeof(LDAP) )) == NULL ) {
118                 return( LDAP_NO_MEMORY );
119         }
120    
121         /* copy the global options */
122         AC_MEMCPY(&ld->ld_options, gopts, sizeof(ld->ld_options));
123
124         ld->ld_valid = LDAP_VALID_SESSION;
125
126         /* but not pointers to malloc'ed items */
127         ld->ld_options.ldo_sctrls = NULL;
128         ld->ld_options.ldo_cctrls = NULL;
129
130 #ifdef HAVE_CYRUS_SASL
131         ld->ld_options.ldo_def_sasl_mech = gopts->ldo_def_sasl_mech
132                 ? LDAP_STRDUP( gopts->ldo_def_sasl_mech ) : NULL;
133         ld->ld_options.ldo_def_sasl_realm = gopts->ldo_def_sasl_realm
134                 ? LDAP_STRDUP( gopts->ldo_def_sasl_realm ) : NULL;
135         ld->ld_options.ldo_def_sasl_authcid = gopts->ldo_def_sasl_authcid
136                 ? LDAP_STRDUP( gopts->ldo_def_sasl_authcid ) : NULL;
137         ld->ld_options.ldo_def_sasl_authzid = gopts->ldo_def_sasl_authzid
138                 ? LDAP_STRDUP( gopts->ldo_def_sasl_authzid ) : NULL;
139 #endif
140
141         ld->ld_options.ldo_defludp = ldap_url_duplist(gopts->ldo_defludp);
142
143         if ( ld->ld_options.ldo_defludp == NULL ) {
144                 LDAP_FREE( (char*)ld );
145                 return LDAP_NO_MEMORY;
146         }
147
148         if (( ld->ld_selectinfo = ldap_new_select_info()) == NULL ) {
149                 ldap_free_urllist( ld->ld_options.ldo_defludp );
150                 LDAP_FREE( (char*) ld );
151                 return LDAP_NO_MEMORY;
152         }
153
154         ld->ld_lberoptions = LBER_USE_DER;
155
156         ld->ld_sb = ber_sockbuf_alloc( );
157         if ( ld->ld_sb == NULL ) {
158                 ldap_free_urllist( ld->ld_options.ldo_defludp );
159                 LDAP_FREE( (char*) ld );
160                 return LDAP_NO_MEMORY;
161         }
162
163 #ifdef LDAP_R_COMPILE
164         ldap_pvt_thread_mutex_init( &ld->ld_req_mutex );
165         ldap_pvt_thread_mutex_init( &ld->ld_res_mutex );
166 #endif
167         *ldp = ld;
168         return LDAP_SUCCESS;
169 }
170
171 /*
172  * ldap_init - initialize the LDAP library.  A magic cookie to be used for
173  * future communication is returned on success, NULL on failure.
174  * "host" may be a space-separated list of hosts or IP addresses
175  *
176  * Example:
177  *      LDAP    *ld;
178  *      ld = ldap_init( host, port );
179  */
180 LDAP *
181 ldap_init( LDAP_CONST char *defhost, int defport )
182 {
183         LDAP *ld;
184         int rc;
185
186         rc = ldap_create(&ld);
187         if ( rc != LDAP_SUCCESS )
188                 return NULL;
189
190         if (defport != 0)
191                 ld->ld_options.ldo_defport = defport;
192
193         if (defhost != NULL) {
194                 rc = ldap_set_option(ld, LDAP_OPT_HOST_NAME, defhost);
195                 if ( rc != LDAP_SUCCESS ) {
196                         ldap_ld_free(ld, 1, NULL, NULL);
197                         return NULL;
198                 }
199         }
200
201         return( ld );
202 }
203
204
205 int
206 ldap_initialize( LDAP **ldp, LDAP_CONST char *url )
207 {
208         int rc;
209         LDAP *ld;
210
211         *ldp = NULL;
212         rc = ldap_create(&ld);
213         if ( rc != LDAP_SUCCESS )
214                 return rc;
215
216         if (url != NULL) {
217                 rc = ldap_set_option(ld, LDAP_OPT_URI, url);
218                 if ( rc != LDAP_SUCCESS ) {
219                         ldap_ld_free(ld, 1, NULL, NULL);
220                         return rc;
221                 }
222 #ifdef LDAP_CONNECTIONLESS
223                 if (ldap_is_ldapc_url(url))
224                         LDAP_IS_UDP(ld) = 1;
225 #endif
226         }
227
228         *ldp = ld;
229         return LDAP_SUCCESS;
230 }
231
232 int
233 ldap_int_open_connection(
234         LDAP *ld,
235         LDAPConn *conn,
236         LDAPURLDesc *srv,
237         int async )
238 {
239         int rc = -1;
240 #ifdef HAVE_CYRUS_SASL
241         char *sasl_host = NULL;
242 #endif
243         char *host;
244         int port, proto;
245
246 #ifdef NEW_LOGGING
247         LDAP_LOG ( CONNECTION, ENTRY, "ldap_int_open_connection\n", 0, 0, 0 );
248 #else
249         Debug( LDAP_DEBUG_TRACE, "ldap_int_open_connection\n", 0, 0, 0 );
250 #endif
251
252         switch ( proto = ldap_pvt_url_scheme2proto( srv->lud_scheme ) ) {
253                 case LDAP_PROTO_TCP:
254                         port = srv->lud_port;
255
256                         if ( srv->lud_host == NULL || *srv->lud_host == 0 ) {
257                                 host = NULL;
258                         } else {
259                                 host = srv->lud_host;
260                         }
261
262                         if( !port ) {
263                                 if( strcmp(srv->lud_scheme, "ldaps") == 0 ) {
264                                         port = LDAPS_PORT;
265                                 } else {
266                                         port = LDAP_PORT;
267                                 }
268                         }
269
270                         rc = ldap_connect_to_host( ld, conn->lconn_sb,
271                                 proto, host, port, async );
272
273                         if ( rc == -1 ) return rc;
274
275 #ifdef LDAP_DEBUG
276                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
277                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"tcp_" );
278 #endif
279                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_tcp,
280                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
281
282 #ifdef HAVE_CYRUS_SASL
283                         sasl_host = ldap_host_connected_to( conn->lconn_sb );
284 #endif
285                         break;
286
287 #ifdef LDAP_CONNECTIONLESS
288                 case LDAP_PROTO_UDP:
289                         port = srv->lud_port;
290
291                         if ( srv->lud_host == NULL || *srv->lud_host == 0 ) {
292                                 host = NULL;
293                         } else {
294                                 host = srv->lud_host;
295                         }
296
297                         if( !port ) port = LDAP_PORT;
298
299                         LDAP_IS_UDP(ld) = 1;
300                         rc = ldap_connect_to_host( ld, conn->lconn_sb,
301                                 proto, host, port, async );
302
303                         if ( rc == -1 ) return rc;
304 #ifdef LDAP_DEBUG
305                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
306                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"udp_" );
307 #endif
308                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_udp,
309                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
310
311                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_readahead,
312                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
313
314                         break;
315 #endif
316                 case LDAP_PROTO_IPC:
317 #ifdef LDAP_PF_LOCAL
318                         /* only IPC mechanism supported is PF_LOCAL (PF_UNIX) */
319                         rc = ldap_connect_to_path( ld, conn->lconn_sb,
320                                 srv->lud_host, async );
321                         if ( rc == -1 ) return rc;
322 #ifdef LDAP_DEBUG
323                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
324                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"ipc_" );
325 #endif
326                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_fd,
327                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
328
329 #ifdef HAVE_CYRUS_SASL
330                         sasl_host = ldap_host_connected_to( conn->lconn_sb );
331 #endif
332                         break;
333 #endif /* LDAP_PF_LOCAL */
334                 default:
335                         return -1;
336                         break;
337         }
338
339 #ifdef LDAP_DEBUG
340         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
341                 INT_MAX, (void *)"ldap_" );
342 #endif
343
344 #ifdef LDAP_CONNECTIONLESS
345         if( proto == LDAP_PROTO_UDP ) return 0;
346 #endif
347
348 #ifdef HAVE_CYRUS_SASL
349         /* establish Cyrus SASL context prior to starting TLS so
350                 that SASL EXTERNAL might be used */
351         if( sasl_host != NULL ) {
352                 ldap_int_sasl_open( ld, conn, sasl_host );
353                 LDAP_FREE( sasl_host );
354         }
355 #ifdef LDAP_PF_LOCAL
356         if( proto == LDAP_PROTO_IPC ) {
357                 char authid[sizeof("uidNumber=4294967295+gidNumber=4294967295,"
358                         "cn=peercred,cn=external,cn=auth")];
359                 sprintf( authid, "uidNumber=%d+gidNumber=%d,"
360                         "cn=peercred,cn=external,cn=auth",
361                         (int) geteuid(), (int) getegid() );
362                 ldap_int_sasl_external( ld, conn, authid, LDAP_PVT_SASL_LOCAL_SSF );
363         }
364 #endif
365 #endif
366
367 #ifdef HAVE_TLS
368         if (ld->ld_options.ldo_tls_mode == LDAP_OPT_X_TLS_HARD ||
369                 strcmp( srv->lud_scheme, "ldaps" ) == 0 )
370         {
371                 ++conn->lconn_refcnt;   /* avoid premature free */
372
373                 rc = ldap_int_tls_start( ld, conn, srv );
374
375                 --conn->lconn_refcnt;
376
377                 if (rc != LDAP_SUCCESS) {
378                         return -1;
379                 }
380         }
381 #endif
382
383 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
384         if ( conn->lconn_krbinstance == NULL ) {
385                 char *c;
386                 conn->lconn_krbinstance = ldap_host_connected_to( conn->lconn_sb );
387
388                 if( conn->lconn_krbinstance != NULL && 
389                     ( c = strchr( conn->lconn_krbinstance, '.' )) != NULL ) {
390                         *c = '\0';
391                 }
392         }
393 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
394
395         return( 0 );
396 }
397
398
399 int ldap_open_internal_connection( LDAP **ldp, ber_socket_t *fdp )
400 {
401         int rc;
402         LDAPConn *c;
403         LDAPRequest *lr;
404
405         rc = ldap_create( ldp );
406         if( rc != LDAP_SUCCESS ) {
407                 *ldp = NULL;
408                 return( rc );
409         }
410
411         /* Make it appear that a search request, msgid 0, was sent */
412         lr = (LDAPRequest *)LDAP_CALLOC( 1, sizeof( LDAPRequest ));
413         if( lr == NULL ) {
414                 ldap_unbind( *ldp );
415                 *ldp = NULL;
416                 return( LDAP_NO_MEMORY );
417         }
418         memset(lr, 0, sizeof( LDAPRequest ));
419         lr->lr_msgid = 0;
420         lr->lr_status = LDAP_REQST_INPROGRESS;
421         lr->lr_res_errno = LDAP_SUCCESS;
422         /* no mutex lock needed, we just created this ld here */
423         (*ldp)->ld_requests = lr;
424
425         /* Attach the passed socket as the *LDAP's connection */
426         c = ldap_new_connection( *ldp, NULL, 1, 0, NULL);
427         if( c == NULL ) {
428                 ldap_unbind( *ldp );
429                 *ldp = NULL;
430                 return( LDAP_NO_MEMORY );
431         }
432         ber_sockbuf_ctrl( c->lconn_sb, LBER_SB_OPT_SET_FD, fdp );
433 #ifdef LDAP_DEBUG
434         ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_debug,
435                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"int_" );
436 #endif
437         ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_tcp,
438           LBER_SBIOD_LEVEL_PROVIDER, NULL );
439         (*ldp)->ld_defconn = c;
440
441         /* Add the connection to the *LDAP's select pool */
442         ldap_mark_select_read( *ldp, c->lconn_sb );
443         ldap_mark_select_write( *ldp, c->lconn_sb );
444
445         /* Make this connection an LDAP V3 protocol connection */
446         rc = LDAP_VERSION3;
447         ldap_set_option( *ldp, LDAP_OPT_PROTOCOL_VERSION, &rc );
448
449         return( LDAP_SUCCESS );
450 }