X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fconnection.c;h=16d9b429fb0fd617e2d31258944e8d986c8c11e9;hb=4361a942abb69d6b3dbae637cddb4055080fe6fa;hp=16af90101e0552c773b2e899823859c69e1d5c6d;hpb=24efc308736fee2c1447733a405dbf4e9d4ef915;p=openldap diff --git a/servers/slapd/connection.c b/servers/slapd/connection.c index 16af90101e..16d9b429fb 100644 --- a/servers/slapd/connection.c +++ b/servers/slapd/connection.c @@ -1,7 +1,7 @@ /* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * - * Copyright 1998-2005 The OpenLDAP Foundation. + * Copyright 1998-2006 The OpenLDAP Foundation. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -43,7 +43,6 @@ #include "slapi/slapi.h" #endif - #ifdef SLAP_MULTI_CONN_ARRAY /* for Multiple Connection Arrary (MCA) Support */ static ldap_pvt_thread_mutex_t* connections_mutex; @@ -55,6 +54,8 @@ static Connection **connections = NULL; /* partition the array in a modulo manner */ # define MCA_conn_array_id(fd) ((int)(fd)%NUM_CONNECTION_ARRAY) # define MCA_conn_array_element_id(fd) ((int)(fd)/NUM_CONNECTION_ARRAY) +# define MCA_ARRAY_SIZE ((int)(MCA_conn_array_element_id(dtblsize) + (MCA_conn_array_id(dtblsize) ? 1 : 0))) +# define MCA_conn_check(fd) (dtblsize > 0 && (fd) >= 0 && (fd) < (MCA_ARRAY_SIZE*NUM_CONNECTION_ARRAY)) # define MCA_GET_CONNECTION(fd) (&(connections[MCA_conn_array_id(fd)]) \ [MCA_conn_array_element_id(fd)]) # define MCA_GET_CONN_MUTEX(fd) (&connections_mutex[MCA_conn_array_id(fd)]) @@ -64,6 +65,7 @@ static Connection **connections = NULL; static ldap_pvt_thread_mutex_t connections_mutex; static Connection *connections = NULL; +# define MCA_conn_check(fd) (dtblsize > 0 && (fd) < dtblsize) # define MCA_GET_CONNECTION(fd) (&connections[s]) # define MCA_GET_CONN_MUTEX(fd) (&connections_mutex) #endif @@ -104,7 +106,15 @@ connection_state2str( int state ) static Connection* connection_get( ber_socket_t s ); #ifdef SLAP_LIGHTWEIGHT_DISPATCHER -static int connection_input( Connection *c, Operation** op ); + +typedef struct conn_readinfo { + Operation *op; + ldap_pvt_thread_start_t *func; + void *arg; + int nullop; +} conn_readinfo; + +static int connection_input( Connection *c, conn_readinfo *cri ); #else static int connection_input( Connection *c ); #endif @@ -126,8 +136,8 @@ static ldap_pvt_thread_start_t connection_operation; int connections_init(void) #ifdef SLAP_MULTI_CONN_ARRAY { - int i, j; - Connection* conn; + int i, j; + Connection* conn; assert( connections == NULL ); @@ -141,7 +151,7 @@ int connections_init(void) NUM_CONNECTION_ARRAY, sizeof(ldap_pvt_thread_mutex_t) ); if( connections_mutex == NULL ) { Debug( LDAP_DEBUG_ANY, "connections_init: " - "allocation of connection mutex[%d] failed\n", i, 0, 0 ); + "allocation of connection mutexes failed\n", 0, 0, 0 ); return -1; } @@ -156,7 +166,7 @@ int connections_init(void) for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) { ldap_pvt_thread_mutex_init( connections_mutex+i ); connections[i] = (Connection*) ch_calloc( - dtblsize/NUM_CONNECTION_ARRAY, sizeof(Connection) ); + MCA_ARRAY_SIZE, sizeof(Connection) ); if( connections[i] == NULL ) { Debug( LDAP_DEBUG_ANY, "connections_init: " "allocation (%d*%ld) of connection array[%d] failed\n", @@ -174,7 +184,7 @@ int connections_init(void) for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) { conn = connections[i]; - for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) { + for ( j = 0; j < MCA_ARRAY_SIZE; j++ ) { conn[j].c_conn_idx = j; } } @@ -243,7 +253,7 @@ int connections_destroy(void) for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) { Connection* conn = connections[i]; - for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) { + for ( j = 0; j < MCA_ARRAY_SIZE; j++ ) { if( conn[j].c_struct_state != SLAP_C_UNINITIALIZED ) { ber_sockbuf_free( conn[j].c_sb ); ldap_pvt_thread_mutex_destroy( &conn[j].c_mutex ); @@ -266,6 +276,9 @@ int connections_destroy(void) ldap_pvt_thread_mutex_destroy( &connections_mutex[i] ); } + free( connections ); + free( connections_mutex ); + ldap_pvt_thread_mutex_destroy( &conn_nextid_mutex ); return 0; @@ -319,7 +332,7 @@ int connections_shutdown(void) for ( i = 0; i < NUM_CONNECTION_ARRAY; i++ ) { Connection* conn = connections[i]; ldap_pvt_thread_mutex_lock( &connections_mutex[i] ); - for ( j = 0; j < (dtblsize/NUM_CONNECTION_ARRAY); j++ ) { + for ( j = 0; j < MCA_ARRAY_SIZE; j++ ) { if( conn[j].c_struct_state != SLAP_C_USED ) { continue; } @@ -421,6 +434,7 @@ static Connection* connection_get( ber_socket_t s ) if(s == AC_SOCKET_INVALID) return NULL; #ifndef HAVE_WINSOCK + assert( MCA_conn_check( s ) ); c = MCA_GET_CONNECTION(s); assert( c->c_struct_state != SLAP_C_UNINITIALIZED ); @@ -540,6 +554,7 @@ long connection_init( ldap_pvt_thread_mutex_lock( MCA_GET_CONN_MUTEX(s) ); #ifndef HAVE_WINSOCK + assert( MCA_conn_check( s ) ); c = MCA_GET_CONNECTION(s); #else { @@ -591,9 +606,7 @@ long connection_init( c->c_send_search_entry = slap_send_search_entry; c->c_send_search_reference = slap_send_search_reference; c->c_send_ldap_extended = slap_send_ldap_extended; -#ifdef LDAP_RES_INTERMEDIATE c->c_send_ldap_intermediate = slap_send_ldap_intermediate; -#endif BER_BVZERO( &c->c_authmech ); BER_BVZERO( &c->c_dn ); @@ -751,6 +764,7 @@ long connection_init( slap_sasl_open( c, 0 ); slap_sasl_external( c, ssf, authid ); + slapd_add_internal( s, 1 ); ldap_pvt_thread_mutex_unlock( &c->c_mutex ); ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) ); @@ -844,17 +858,19 @@ connection_destroy( Connection *c ) } ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_GET_FD, &sd ); + slapd_sd_lock(); + ber_sockbuf_free( c->c_sb ); if ( sd != AC_SOCKET_INVALID ) { - slapd_remove( sd, 1, 0 ); + slapd_remove( sd, 1, 0, 1 ); Statslog( LDAP_DEBUG_STATS, (close_reason ? "conn=%lu fd=%ld closed (%s)\n" : "conn=%lu fd=%ld closed\n"), connid, (long) sd, close_reason, 0, 0 ); + } else { + slapd_sd_unlock(); } - ber_sockbuf_free( c->c_sb ); - c->c_sb = ber_sockbuf_alloc( ); { @@ -1027,13 +1043,14 @@ Connection* connection_next( Connection *c, ber_socket_t *index ) assert( connections != NULL ); assert( index != NULL ); - assert( *index <= (dtblsize/NUM_CONNECTION_ARRAY) ); + assert( *index >= 0 && *index < MCA_ARRAY_SIZE ); if( c != NULL ) ldap_pvt_thread_mutex_unlock( &c->c_mutex ); c = NULL; for(; *index < dtblsize; (*index)++) { + assert( MCA_conn_check( *index ) ); conn = MCA_GET_CONNECTION(*index); if( conn->c_struct_state == SLAP_C_UNINITIALIZED ) { assert( conn->c_conn_state == SLAP_C_INVALID ); @@ -1330,14 +1347,6 @@ operations_error: connection_closing( conn, tag == LDAP_REQ_UNBIND ? NULL : "operations error" ); break; - - case LDAP_REQ_BIND: - conn->c_sasl_bind_in_progress = - rc == LDAP_SASL_BIND_IN_PROGRESS ? 1 : 0; - - if( conn->c_conn_state == SLAP_C_BINDING) { - conn->c_conn_state = SLAP_C_ACTIVE; - } } connection_resched( conn ); @@ -1389,43 +1398,45 @@ void connection_client_stop( c->c_conn_state = SLAP_C_INVALID; c->c_struct_state = SLAP_C_UNUSED; c->c_close_reason = "?"; /* should never be needed */ + slapd_sd_lock(); ber_sockbuf_free( c->c_sb ); + slapd_remove( s, 0, 1, 1 ); c->c_sb = ber_sockbuf_alloc( ); { ber_len_t max = sockbuf_max_incoming; ber_sockbuf_ctrl( c->c_sb, LBER_SB_OPT_SET_MAX_INCOMING, &max ); } - slapd_remove( s, 0, 1 ); connection_return( c ); } #ifdef SLAP_LIGHTWEIGHT_DISPATCHER -static int connection_read( ber_socket_t s, Operation** op ); + +static int connection_read( ber_socket_t s, conn_readinfo *cri ); static void* connection_read_thread( void* ctx, void* argv ) { int rc ; - Operation* new_op = NULL; - ber_socket_t s = (ber_socket_t)argv; + conn_readinfo cri = { NULL, NULL, NULL, 0 }; + ber_socket_t s = (long)argv; /* * read incoming LDAP requests. If there is more than one, * the first one is returned with new_op */ - if( ( rc = connection_read( s, &new_op ) ) < 0 ) { - Debug( LDAP_DEBUG_TRACE, "connection_read(%d) error\n", s, 0, 0 ); - tcp_close( s ); - return (void*)rc; + if( ( rc = connection_read( s, &cri ) ) < 0 ) { + Debug( LDAP_DEBUG_CONNS, "connection_read(%d) error\n", s, 0, 0 ); + return (void*)(long)rc; } - /* execute the queued request in the same thread */ - if( new_op ) { - rc = (int)connection_operation( - ldap_pvt_thread_pool_context(), new_op ); + /* execute a single queued request in the same thread */ + if( cri.op && !cri.nullop ) { + rc = (long)connection_operation( ctx, cri.op ); + } else if ( cri.func ) { + rc = (long)cri.func( ctx, cri.arg ); } - return (void*)rc; + return (void*)(long)rc; } int connection_read_activate( ber_socket_t s ) @@ -1437,14 +1448,16 @@ int connection_read_activate( ber_socket_t s ) * thread reads data on it. Otherwise the listener thread will repeatedly * submit the same event on it to the pool. */ - slapd_clr_read( s, 0 ); + rc = slapd_clr_read( s, 0 ); + if ( rc ) + return rc; rc = ldap_pvt_thread_pool_submit( &connection_pool, - connection_read_thread, (void *) s ); + connection_read_thread, (void *)(long)s ); if( rc != 0 ) { Debug( LDAP_DEBUG_ANY, - "connection_read_activiate(%d): submit failed (%d)\n", + "connection_read_activate(%d): submit failed (%d)\n", s, rc, 0 ); } @@ -1454,7 +1467,7 @@ int connection_read_activate( ber_socket_t s ) #ifdef SLAP_LIGHTWEIGHT_DISPATCHER static int -connection_read( ber_socket_t s, Operation** op ) +connection_read( ber_socket_t s, conn_readinfo *cri ) #else int connection_read(ber_socket_t s) #endif @@ -1473,7 +1486,6 @@ int connection_read(ber_socket_t s) Debug( LDAP_DEBUG_ANY, "connection_read(%ld): no connection!\n", (long) s, 0, 0 ); - slapd_remove(s, 1, 0); ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) ); return -1; @@ -1496,13 +1508,14 @@ int connection_read(ber_socket_t s) if ( c->c_conn_state == SLAP_C_CLIENT ) { #ifdef SLAP_LIGHTWEIGHT_DISPATCHER + cri->func = c->c_clientfunc; + cri->arg = c->c_clientarg; /* read should already be cleared */ #else slapd_clr_read( s, 0 ); -#endif ldap_pvt_thread_pool_submit( &connection_pool, c->c_clientfunc, c->c_clientarg ); - +#endif connection_return( c ); ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) ); return 0; @@ -1517,7 +1530,7 @@ int connection_read(ber_socket_t s) rc = ldap_pvt_tls_accept( c->c_sb, slap_tls_ctx ); if ( rc < 0 ) { Debug( LDAP_DEBUG_TRACE, - "connection_read(%d): TLS accept error " + "connection_read(%d): TLS accept failure " "error=%d id=%lu, closing\n", s, rc, c->c_connid ); @@ -1545,6 +1558,9 @@ int connection_read(ber_socket_t s) #endif connection_close( c ); + connection_return( c ); + ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX(s) ); + return 0; } else if ( rc == 0 ) { void *ssl; @@ -1611,11 +1627,6 @@ int connection_read(ber_socket_t s) s, rc, c->c_connid ); /* connections_mutex and c_mutex are locked */ - -#ifdef SLAP_LIGHTWEIGHT_DISPATCHER - slapd_set_read( s, 1 ); -#endif - connection_closing( c, "SASL layer install failure" ); connection_close( c ); connection_return( c ); @@ -1631,7 +1642,7 @@ int connection_read(ber_socket_t s) do { /* How do we do this without getting into a busy loop ? */ #ifdef SLAP_LIGHTWEIGHT_DISPATCHER - rc = connection_input( c, op ); + rc = connection_input( c, cri ); #else rc = connection_input( c ); #endif @@ -1681,7 +1692,7 @@ int connection_read(ber_socket_t s) static int #ifdef SLAP_LIGHTWEIGHT_DISPATCHER -connection_input( Connection *conn , Operation** c_op ) +connection_input( Connection *conn , conn_readinfo *cri ) #else connection_input( Connection *conn ) #endif @@ -1870,21 +1881,28 @@ connection_input( Connection *conn ) } else { conn->c_n_ops_executing++; -#if 0 +#ifdef SLAP_LIGHTWEIGHT_DISPATCHER /* * The first op will be processed in the same thread context, + * as long as there is only one op total. * Subsequent ops will be submitted to the pool by * calling connection_op_activate() */ - if ( *c_op == NULL ) { + if ( cri->op == NULL ) { /* the first incoming request */ connection_op_queue( op ); - *c_op = op; - } else -#endif - { + cri->op = op; + } else { + if ( !cri->nullop ) { + cri->nullop = 1; + rc = ldap_pvt_thread_pool_submit( &connection_pool, + connection_operation, (void *) cri->op ); + } connection_op_activate( op ); } +#else + connection_op_activate( op ); +#endif } #ifdef NO_THREADS @@ -1977,12 +1995,77 @@ connection_init_log_prefix( Operation *op ) } } +static int connection_bind_cb( Operation *op, SlapReply *rs ) +{ + slap_callback *cb = op->o_callback; + + ldap_pvt_thread_mutex_lock( &op->o_conn->c_mutex ); + op->o_conn->c_conn_state = SLAP_C_ACTIVE; + op->o_conn->c_sasl_bind_in_progress = + ( rs->sr_err == LDAP_SASL_BIND_IN_PROGRESS ); + + /* Moved here from bind.c due to ITS#4158 */ + op->o_conn->c_sasl_bindop = NULL; + if ( op->orb_method == LDAP_AUTH_SASL ) { + if( rs->sr_err == LDAP_SUCCESS ) { + ber_dupbv(&op->o_conn->c_dn, &op->orb_edn); + if( !BER_BVISEMPTY( &op->orb_edn ) ) { + /* edn is always normalized already */ + ber_dupbv( &op->o_conn->c_ndn, &op->o_conn->c_dn ); + } + op->o_tmpfree( op->orb_edn.bv_val, op->o_tmpmemctx ); + BER_BVZERO( &op->orb_edn ); + op->o_conn->c_authmech = op->o_conn->c_sasl_bind_mech; + BER_BVZERO( &op->o_conn->c_sasl_bind_mech ); + + op->o_conn->c_sasl_ssf = op->orb_ssf; + if( op->orb_ssf > op->o_conn->c_ssf ) { + op->o_conn->c_ssf = op->orb_ssf; + } + + if( !BER_BVISEMPTY( &op->o_conn->c_dn ) ) { + ber_len_t max = sockbuf_max_incoming_auth; + ber_sockbuf_ctrl( op->o_conn->c_sb, + LBER_SB_OPT_SET_MAX_INCOMING, &max ); + } + + /* log authorization identity */ + Statslog( LDAP_DEBUG_STATS, + "%s BIND dn=\"%s\" mech=%s ssf=%d\n", + op->o_log_prefix, + BER_BVISNULL( &op->o_conn->c_dn ) ? "" : op->o_conn->c_dn.bv_val, + op->o_conn->c_authmech.bv_val, op->orb_ssf, 0 ); + + Debug( LDAP_DEBUG_TRACE, + "do_bind: SASL/%s bind: dn=\"%s\" ssf=%d\n", + op->o_conn->c_authmech.bv_val, + BER_BVISNULL( &op->o_conn->c_dn ) ? "" : op->o_conn->c_dn.bv_val, + op->orb_ssf ); + + } else if ( rs->sr_err != LDAP_SASL_BIND_IN_PROGRESS ) { + if ( !BER_BVISNULL( &op->o_conn->c_sasl_bind_mech ) ) { + free( op->o_conn->c_sasl_bind_mech.bv_val ); + BER_BVZERO( &op->o_conn->c_sasl_bind_mech ); + } + } + } + ldap_pvt_thread_mutex_unlock( &op->o_conn->c_mutex ); + + ch_free( op->o_callback ); + op->o_callback = NULL; + + return SLAP_CB_CONTINUE; +} + static void connection_op_queue( Operation *op ) { - int status; ber_tag_t tag = op->o_tag; if (tag == LDAP_REQ_BIND) { + slap_callback *sc = ch_calloc( 1, sizeof( slap_callback )); + sc->sc_response = connection_bind_cb; + sc->sc_next = op->o_callback; + op->o_callback = sc; op->o_conn->c_conn_state = SLAP_C_BINDING; } @@ -2020,7 +2103,6 @@ static void connection_op_queue( Operation *op ) static int connection_op_activate( Operation *op ) { int rc; - ber_tag_t tag = op->o_tag; connection_op_queue( op ); @@ -2038,6 +2120,12 @@ static int connection_op_activate( Operation *op ) } #ifdef SLAP_LIGHTWEIGHT_DISPATCHER +static int connection_write( ber_socket_t s ); +static void *connection_write_thread( void *ctx, void *arg ) +{ + return (void *)(long)connection_write((long)arg); +} + int connection_write_activate( ber_socket_t s ) { int rc; @@ -2047,18 +2135,14 @@ int connection_write_activate( ber_socket_t s ) * thread write data on it. Otherwise the listener thread will repeatedly * submit the same event on it to the pool. */ - -#ifndef SLAP_LIGHTWEIGHT_DISPATCHER slapd_clr_write( s, 0); - c->c_n_write++; -#endif rc = ldap_pvt_thread_pool_submit( &connection_pool, - connection_read_thread, (void *) s ); + connection_write_thread, (void *)(long)s ); if( rc != 0 ) { Debug( LDAP_DEBUG_ANY, - "connection_write_activiate(%d): submit failed (%d)\n", + "connection_write_activate(%d): submit failed (%d)\n", (int) s, rc, 0 ); } return rc; @@ -2080,15 +2164,14 @@ int connection_write(ber_socket_t s) Debug( LDAP_DEBUG_ANY, "connection_write(%ld): no connection!\n", (long)s, 0, 0 ); - slapd_remove(s, 1, 0); ldap_pvt_thread_mutex_unlock( MCA_GET_CONN_MUTEX( s ) ); return -1; } #ifndef SLAP_LIGHTWEIGHT_DISPATCHER slapd_clr_write( s, 0); - c->c_n_write++; #endif + c->c_n_write++; Debug( LDAP_DEBUG_TRACE, "connection_write(%d): waking output for id=%lu\n", @@ -2154,6 +2237,11 @@ connection_fake_init( op->o_connid = op->o_conn->c_connid; connection_init_log_prefix( op ); +#ifdef LDAP_SLAPI + slapi_int_create_object_extensions( SLAPI_X_EXT_CONNECTION, conn ); + slapi_int_create_object_extensions( SLAPI_X_EXT_OPERATION, op ); +#endif /* LDAP_SLAPI */ + slap_op_time( &op->o_time, &op->o_tincr ); }