]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/open.c
Sync with 2.x
[openldap] / libraries / libldap / open.c
index 41d4f1ceda9a1a534eb442ca31cd6c102de6b161..904fb0af087478e275a370a040f07fe70ed5fdc3 100644 (file)
 
 int ldap_open_defconn( LDAP *ld )
 {
-       if (( ld->ld_defconn = ldap_new_connection( ld, ld->ld_options.ldo_defludp, 1,1,NULL )) == NULL )
-       {
+       ld->ld_defconn = ldap_new_connection( ld,
+               ld->ld_options.ldo_defludp, 1, 1, NULL );
+
+       if( ld->ld_defconn == NULL ) {
                ld->ld_errno = LDAP_SERVER_DOWN;
                return -1;
        }
 
        ++ld->ld_defconn->lconn_refcnt; /* so it never gets closed/freed */
-
        return 0;
 }
 
@@ -91,7 +92,7 @@ ldap_create( LDAP **ldp )
                ldap_int_initialize(gopts, NULL);
        }
 
-       Debug( LDAP_DEBUG_TRACE, "ldap_init\n", 0, 0, 0 );
+       Debug( LDAP_DEBUG_TRACE, "ldap_create\n", 0, 0, 0 );
 
 #ifdef HAVE_WINSOCK2
 {      WORD wVersionRequested;
@@ -134,15 +135,25 @@ ldap_create( LDAP **ldp )
        }
    
        /* copy the global options */
-       memcpy(&ld->ld_options, gopts, sizeof(ld->ld_options));
+       AC_MEMCPY(&ld->ld_options, gopts, sizeof(ld->ld_options));
 
        ld->ld_valid = LDAP_VALID_SESSION;
 
        /* but not pointers to malloc'ed items */
-       ld->ld_options.ldo_defludp = NULL;
        ld->ld_options.ldo_sctrls = NULL;
        ld->ld_options.ldo_cctrls = NULL;
 
+#ifdef HAVE_CYRUS_SASL
+       ld->ld_options.ldo_def_sasl_mech = gopts->ldo_def_sasl_mech
+               ? LDAP_STRDUP( gopts->ldo_def_sasl_mech ) : NULL;
+       ld->ld_options.ldo_def_sasl_realm = gopts->ldo_def_sasl_realm
+               ? LDAP_STRDUP( gopts->ldo_def_sasl_realm ) : NULL;
+       ld->ld_options.ldo_def_sasl_authcid = gopts->ldo_def_sasl_authcid
+               ? LDAP_STRDUP( gopts->ldo_def_sasl_authcid ) : NULL;
+       ld->ld_options.ldo_def_sasl_authzid = gopts->ldo_def_sasl_authzid
+               ? LDAP_STRDUP( gopts->ldo_def_sasl_authzid ) : NULL;
+#endif
+
        ld->ld_options.ldo_defludp = ldap_url_duplist(gopts->ldo_defludp);
 
        if ( ld->ld_options.ldo_defludp == NULL ) {
@@ -179,7 +190,7 @@ ldap_create( LDAP **ldp )
  *
  * Example:
  *     LDAP    *ld;
- *     ld = ldap_open( host, port );
+ *     ld = ldap_init( host, port );
  */
 LDAP *
 ldap_init( LDAP_CONST char *defhost, int defport )
@@ -230,87 +241,69 @@ ldap_initialize( LDAP **ldp, LDAP_CONST char *url )
 }
 
 int
-ldap_start_tls ( LDAP *ld,
-                               LDAPControl **serverctrls,
-                               LDAPControl **clientctrls )
-{
-#ifdef HAVE_TLS
-       LDAPConn *lc;
-       int rc;
-       char *rspoid = NULL;
-       struct berval *rspdata = NULL;
-
-       if (ld->ld_conns == NULL) {
-               rc = ldap_open_defconn( ld );
-               if (rc != LDAP_SUCCESS)
-                       return(rc);
-       }
-
-       for (lc = ld->ld_conns; lc != NULL; lc = lc->lconn_next) {
-               if (ldap_pvt_tls_inplace(lc->lconn_sb) != 0)
-                       return LDAP_OPERATIONS_ERROR;
-               rc = ldap_extended_operation_s(ld, LDAP_EXOP_START_TLS,
-                                                       NULL, serverctrls, clientctrls, &rspoid, &rspdata);
-               if (rc != LDAP_SUCCESS)
-                       return rc;
-               if (rspoid != NULL)
-                       LDAP_FREE(rspoid);
-               if (rspdata != NULL)
-                       ber_bvfree(rspdata);
-               rc = ldap_pvt_tls_start( ld, lc->lconn_sb, ld->ld_options.ldo_tls_ctx );
-               if (rc != LDAP_SUCCESS)
-                       return rc;
-       }
-       return LDAP_SUCCESS;
-#else
-       return LDAP_NOT_SUPPORTED;
-#endif
-}
-
-int
-open_ldap_connection( LDAP *ld, Sockbuf *sb, LDAPURLDesc *srv,
-       char **krbinstancep, int async )
+ldap_int_open_connection(
+       LDAP *ld,
+       LDAPConn *conn,
+       LDAPURLDesc *srv,
+       int async )
 {
        int rc = -1;
+#ifdef HAVE_CYRUS_SASL
+       char *sasl_host = NULL;
+       int sasl_ssf = 0;
+#endif
+       char *host;
        int port;
        long addr;
 
-       Debug( LDAP_DEBUG_TRACE, "open_ldap_connection\n", 0, 0, 0 );
-
-       port = srv->lud_port;
-       if (port == 0)
-               port = ld->ld_options.ldo_defport;
-       port = htons( (short) port );
-
-       addr = 0;
-       if ( srv->lud_host == NULL || *srv->lud_host == 0 )
-               addr = htonl( INADDR_LOOPBACK );
+       Debug( LDAP_DEBUG_TRACE, "ldap_int_open_connection\n", 0, 0, 0 );
 
        switch ( ldap_pvt_url_scheme2proto( srv->lud_scheme ) ) {
                case LDAP_PROTO_TCP:
-                       rc = ldap_connect_to_host( ld, sb, srv->lud_host,
-                               addr, port, async );
-                       if ( rc == -1 )
-                               return rc;
-                       ber_sockbuf_add_io( sb, &ber_sockbuf_io_tcp,
-                               LBER_SBIOD_LEVEL_PROVIDER, NULL );
-                       break;
-               case LDAP_PROTO_UDP:
-                       rc = ldap_connect_to_host( ld, sb, srv->lud_host,
-                               addr, port, async );
-                       if ( rc == -1 )
-                               return rc;
-                       ber_sockbuf_add_io( sb, &ber_sockbuf_io_udp,
+                       port = htons( (short) srv->lud_port );
+
+                       addr = 0;
+                       if ( srv->lud_host == NULL || *srv->lud_host == 0 ) {
+                               host = NULL;
+                               addr = htonl( INADDR_LOOPBACK );
+                       } else {
+                               host = srv->lud_host;
+                       }
+
+                       rc = ldap_connect_to_host( ld, conn->lconn_sb, 0,
+                               host, addr, port, async );
+
+                       if ( rc == -1 ) return rc;
+
+#ifdef LDAP_DEBUG
+                       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
+                               LBER_SBIOD_LEVEL_PROVIDER, (void *)"tcp_" );
+#endif
+                       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_tcp,
                                LBER_SBIOD_LEVEL_PROVIDER, NULL );
+
+#ifdef HAVE_CYRUS_SASL
+                       sasl_host = ldap_host_connected_to( conn->lconn_sb );
+#endif
                        break;
+               case LDAP_PROTO_IPC:
 #ifdef LDAP_PF_LOCAL
-               case LDAP_PROTO_LOCAL:
-                       rc = ldap_connect_to_path( ld, sb, srv->lud_host,
-                               async );
-                       if ( rc == -1 )
-                               return rc;
-                       ber_sockbuf_add_io( sb, &ber_sockbuf_io_fd,
+                       /* only IPC mechanism supported is PF_LOCAL (PF_UNIX) */
+                       rc = ldap_connect_to_path( ld, conn->lconn_sb,
+                               srv->lud_host, async );
+                       if ( rc == -1 ) return rc;
+
+#ifdef LDAP_DEBUG
+                       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
+                               LBER_SBIOD_LEVEL_PROVIDER, (void *)"ipc_" );
+#endif
+                       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_fd,
                                LBER_SBIOD_LEVEL_PROVIDER, NULL );
+
+#ifdef HAVE_CYRUS_SASL
+                       sasl_host = ldap_host_connected_to( conn->lconn_sb );
+                       sasl_ssf = LDAP_PVT_SASL_LOCAL_SSF;
+#endif
                        break;
 #endif /* LDAP_PF_LOCAL */
                default:
@@ -318,33 +311,104 @@ open_ldap_connection( LDAP *ld, Sockbuf *sb, LDAPURLDesc *srv,
                        break;
        }
 
-       ber_sockbuf_add_io( sb, &ber_sockbuf_io_readahead,
+#ifdef HAVE_CYRUS_SASL
+       if( sasl_host != NULL ) {
+               ldap_int_sasl_open( ld, conn, sasl_host, sasl_ssf );
+       }
+#endif
+
+       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_readahead,
                LBER_SBIOD_LEVEL_PROVIDER, NULL );
+
 #ifdef LDAP_DEBUG
-       ber_sockbuf_add_io( sb, &ber_sockbuf_io_debug, INT_MAX, NULL );
+       ber_sockbuf_add_io( conn->lconn_sb, &ber_sockbuf_io_debug,
+               INT_MAX, (void *)"ldap_" );
 #endif
 
 #ifdef HAVE_TLS
        if (ld->ld_options.ldo_tls_mode == LDAP_OPT_X_TLS_HARD ||
                strcmp( srv->lud_scheme, "ldaps" ) == 0 )
        {
-               rc = ldap_pvt_tls_start( ld, sb, ld->ld_options.ldo_tls_ctx );
-               if (rc != LDAP_SUCCESS)
-                       return rc;
+               LDAPConn        *savedefconn = ld->ld_defconn;
+               ++conn->lconn_refcnt;   /* avoid premature free */
+               ld->ld_defconn = conn;
+
+               rc = ldap_pvt_tls_start( ld, conn->lconn_sb,
+                       ld->ld_options.ldo_tls_ctx );
+
+               ld->ld_defconn = savedefconn;
+               --conn->lconn_refcnt;
+
+               if (rc != LDAP_SUCCESS) {
+                       return -1;
+               }
        }
 #endif
 
-       if ( krbinstancep != NULL ) {
 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
+       if ( conn->lconn_krbinstance == NULL ) {
                char *c;
-               if (( *krbinstancep = ldap_host_connected_to( sb )) != NULL &&
-                   ( c = strchr( *krbinstancep, '.' )) != NULL ) {
+               conn->lconn_krbinstance = ldap_host_connected_to( conn->lconn_sb );
+
+               if( conn->lconn_krbinstance != NULL && 
+                   ( c = strchr( conn->lconn_krbinstance, '.' )) != NULL ) {
                        *c = '\0';
                }
-#else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
-               *krbinstancep = NULL;
-#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
        }
+#endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
 
        return( 0 );
 }
+
+
+int ldap_open_internal_connection( LDAP **ldp, ber_socket_t *fdp )
+{
+       int rc;
+       LDAPConn *c;
+       LDAPRequest *lr;
+
+       rc = ldap_create( ldp );
+       if( rc != LDAP_SUCCESS ) {
+               *ldp = NULL;
+               return( rc );
+       }
+
+       /* Make it appear that a search request, msgid 0, was sent */
+       lr = (LDAPRequest *)LDAP_CALLOC( 1, sizeof( LDAPRequest ));
+       if( lr == NULL ) {
+               ldap_unbind( *ldp );
+               *ldp = NULL;
+               return( LDAP_NO_MEMORY );
+       }
+       memset(lr, 0, sizeof( LDAPRequest ));
+       lr->lr_msgid = 0;
+       lr->lr_status = LDAP_REQST_INPROGRESS;
+       lr->lr_res_errno = LDAP_SUCCESS;
+       (*ldp)->ld_requests = lr;
+
+       /* Attach the passed socket as the *LDAP's connection */
+       c = ldap_new_connection( *ldp, NULL, 1, 0, NULL);
+       if( c == NULL ) {
+               ldap_unbind( *ldp );
+               *ldp = NULL;
+               return( LDAP_NO_MEMORY );
+       }
+       ber_sockbuf_ctrl( c->lconn_sb, LBER_SB_OPT_SET_FD, fdp );
+#ifdef LDAP_DEBUG
+       ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_debug,
+               LBER_SBIOD_LEVEL_PROVIDER, (void *)"int_" );
+#endif
+       ber_sockbuf_add_io( c->lconn_sb, &ber_sockbuf_io_tcp,
+         LBER_SBIOD_LEVEL_PROVIDER, NULL );
+       (*ldp)->ld_defconn = c;
+
+       /* Add the connection to the *LDAP's select pool */
+       ldap_mark_select_read( *ldp, c->lconn_sb );
+       ldap_mark_select_write( *ldp, c->lconn_sb );
+
+       /* Make this connection an LDAP V3 protocol connection */
+       rc = LDAP_VERSION3;
+       ldap_set_option( *ldp, LDAP_OPT_PROTOCOL_VERSION, &rc );
+
+       return( LDAP_SUCCESS );
+}