]> git.sur5r.net Git - openldap/blob - libraries/libldap/open.c
a3a4144e452a6bf336035991d060d4ce08a779d4
[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         *ldp = ld;
164         return LDAP_SUCCESS;
165 }
166
167 /*
168  * ldap_init - initialize the LDAP library.  A magic cookie to be used for
169  * future communication is returned on success, NULL on failure.
170  * "host" may be a space-separated list of hosts or IP addresses
171  *
172  * Example:
173  *      LDAP    *ld;
174  *      ld = ldap_init( host, port );
175  */
176 LDAP *
177 ldap_init( LDAP_CONST char *defhost, int defport )
178 {
179         LDAP *ld;
180         int rc;
181
182         rc = ldap_create(&ld);
183         if ( rc != LDAP_SUCCESS )
184                 return NULL;
185
186         if (defport != 0)
187                 ld->ld_options.ldo_defport = defport;
188
189         if (defhost != NULL) {
190                 rc = ldap_set_option(ld, LDAP_OPT_HOST_NAME, defhost);
191                 if ( rc != LDAP_SUCCESS ) {
192                         ldap_ld_free(ld, 1, NULL, NULL);
193                         return NULL;
194                 }
195         }
196
197         return( ld );
198 }
199
200
201 int
202 ldap_initialize( LDAP **ldp, LDAP_CONST char *url )
203 {
204         int rc;
205         LDAP *ld;
206
207         *ldp = NULL;
208         rc = ldap_create(&ld);
209         if ( rc != LDAP_SUCCESS )
210                 return rc;
211
212         if (url != NULL) {
213                 rc = ldap_set_option(ld, LDAP_OPT_URI, url);
214                 if ( rc != LDAP_SUCCESS ) {
215                         ldap_ld_free(ld, 1, NULL, NULL);
216                         return rc;
217                 }
218 #ifdef LDAP_CONNECTIONLESS
219                 if (ldap_is_ldapc_url(url))
220                         LDAP_IS_UDP(ld) = 1;
221 #endif
222         }
223
224         *ldp = ld;
225         return LDAP_SUCCESS;
226 }
227
228 int
229 ldap_int_open_connection(
230         LDAP *ld,
231         LDAPConn *conn,
232         LDAPURLDesc *srv,
233         int async )
234 {
235         int rc = -1;
236 #ifdef HAVE_CYRUS_SASL
237         char *sasl_host = NULL;
238 #endif
239         char *host;
240         int port, proto;
241         long addr;
242
243 #ifdef NEW_LOGGING
244         LDAP_LOG ( CONNECTION, ENTRY, "ldap_int_open_connection\n", 0, 0, 0 );
245 #else
246         Debug( LDAP_DEBUG_TRACE, "ldap_int_open_connection\n", 0, 0, 0 );
247 #endif
248
249         switch ( proto = ldap_pvt_url_scheme2proto( srv->lud_scheme ) ) {
250                 case LDAP_PROTO_TCP:
251                         port = srv->lud_port;
252
253                         addr = 0;
254                         if ( srv->lud_host == NULL || *srv->lud_host == 0 ) {
255                                 host = NULL;
256                                 addr = htonl( INADDR_LOOPBACK );
257                         } else {
258                                 host = srv->lud_host;
259                         }
260
261                         if( !port ) {
262                                 if( strcmp(srv->lud_scheme, "ldaps") == 0 ) {
263                                         port = LDAPS_PORT;
264                                 } else {
265                                         port = LDAP_PORT;
266                                 }
267                         }
268
269                         rc = ldap_connect_to_host( ld, conn->lconn_sb,
270                                 proto, host, addr, port, async );
271
272                         if ( rc == -1 ) return rc;
273
274 #ifdef LDAP_DEBUG
275                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
276                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"tcp_" );
277 #endif
278                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_tcp,
279                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
280
281 #ifdef HAVE_CYRUS_SASL
282                         sasl_host = ldap_host_connected_to( conn->lconn_sb );
283 #endif
284                         break;
285 #ifdef LDAP_CONNECTIONLESS
286
287                 case LDAP_PROTO_UDP:
288                         port = srv->lud_port;
289
290                         addr = 0;
291                         if ( srv->lud_host == NULL || *srv->lud_host == 0 ) {
292                                 host = NULL;
293                                 addr = htonl( INADDR_LOOPBACK );
294                         } else {
295                                 host = srv->lud_host;
296                         }
297
298                         if( !port ) port = LDAP_PORT;
299
300                         LDAP_IS_UDP(ld) = 1;
301                         rc = ldap_connect_to_host( ld, conn->lconn_sb,
302                                 proto, host, addr, port, async );
303
304                         if ( rc == -1 ) return rc;
305 #ifdef LDAP_DEBUG
306                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
307                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"udp_" );
308 #endif
309                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_udp,
310                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
311                         break;
312 #endif
313                 case LDAP_PROTO_IPC:
314 #ifdef LDAP_PF_LOCAL
315                         /* only IPC mechanism supported is PF_LOCAL (PF_UNIX) */
316                         rc = ldap_connect_to_path( ld, conn->lconn_sb,
317                                 srv->lud_host, async );
318                         if ( rc == -1 ) return rc;
319 #ifdef LDAP_DEBUG
320                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
321                                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"ipc_" );
322 #endif
323                         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_fd,
324                                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
325
326 #ifdef HAVE_CYRUS_SASL
327                         sasl_host = ldap_host_connected_to( conn->lconn_sb );
328 #endif
329                         break;
330 #endif /* LDAP_PF_LOCAL */
331                 default:
332                         return -1;
333                         break;
334         }
335
336         ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_readahead,
337                 LBER_SBIOD_LEVEL_PROVIDER, NULL );
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 )
346                 return 0;
347 #endif
348
349 #ifdef HAVE_CYRUS_SASL
350         /* establish Cyrus SASL context prior to starting TLS so
351                 that SASL EXTERNAL might be used */
352         if( sasl_host != NULL ) {
353                 ldap_int_sasl_open( ld, conn, sasl_host );
354                 LDAP_FREE( sasl_host );
355         }
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                         geteuid(), getegid() );
362                 ldap_int_sasl_external( ld, conn, authid, LDAP_PVT_SASL_LOCAL_SSF);
363         }
364 #endif
365
366 #ifdef HAVE_TLS
367         if (ld->ld_options.ldo_tls_mode == LDAP_OPT_X_TLS_HARD ||
368                 strcmp( srv->lud_scheme, "ldaps" ) == 0 )
369         {
370                 ++conn->lconn_refcnt;   /* avoid premature free */
371
372                 rc = ldap_int_tls_start( ld, conn, srv );
373
374                 --conn->lconn_refcnt;
375
376                 if (rc != LDAP_SUCCESS) {
377                         return -1;
378                 }
379         }
380 #endif
381
382 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
383         if ( conn->lconn_krbinstance == NULL ) {
384                 char *c;
385                 conn->lconn_krbinstance = ldap_host_connected_to( conn->lconn_sb );
386
387                 if( conn->lconn_krbinstance != NULL && 
388                     ( c = strchr( conn->lconn_krbinstance, '.' )) != NULL ) {
389                         *c = '\0';
390                 }
391         }
392 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
393
394         return( 0 );
395 }
396
397
398 int ldap_open_internal_connection( LDAP **ldp, ber_socket_t *fdp )
399 {
400         int rc;
401         LDAPConn *c;
402         LDAPRequest *lr;
403
404         rc = ldap_create( ldp );
405         if( rc != LDAP_SUCCESS ) {
406                 *ldp = NULL;
407                 return( rc );
408         }
409
410         /* Make it appear that a search request, msgid 0, was sent */
411         lr = (LDAPRequest *)LDAP_CALLOC( 1, sizeof( LDAPRequest ));
412         if( lr == NULL ) {
413                 ldap_unbind( *ldp );
414                 *ldp = NULL;
415                 return( LDAP_NO_MEMORY );
416         }
417         memset(lr, 0, sizeof( LDAPRequest ));
418         lr->lr_msgid = 0;
419         lr->lr_status = LDAP_REQST_INPROGRESS;
420         lr->lr_res_errno = LDAP_SUCCESS;
421         (*ldp)->ld_requests = lr;
422
423         /* Attach the passed socket as the *LDAP's connection */
424         c = ldap_new_connection( *ldp, NULL, 1, 0, NULL);
425         if( c == NULL ) {
426                 ldap_unbind( *ldp );
427                 *ldp = NULL;
428                 return( LDAP_NO_MEMORY );
429         }
430         ber_sockbuf_ctrl( c->lconn_sb, LBER_SB_OPT_SET_FD, fdp );
431 #ifdef LDAP_DEBUG
432         ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_debug,
433                 LBER_SBIOD_LEVEL_PROVIDER, (void *)"int_" );
434 #endif
435         ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_tcp,
436           LBER_SBIOD_LEVEL_PROVIDER, NULL );
437         (*ldp)->ld_defconn = c;
438
439         /* Add the connection to the *LDAP's select pool */
440         ldap_mark_select_read( *ldp, c->lconn_sb );
441         ldap_mark_select_write( *ldp, c->lconn_sb );
442
443         /* Make this connection an LDAP V3 protocol connection */
444         rc = LDAP_VERSION3;
445         ldap_set_option( *ldp, LDAP_OPT_PROTOCOL_VERSION, &rc );
446
447         return( LDAP_SUCCESS );
448 }