mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
163077ec93
Don't leak abandon mutex. Use ch_malloc and friends.
211 lines
4.8 KiB
C
211 lines
4.8 KiB
C
#include "portable.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <ac/errno.h>
|
|
#include <ac/signal.h>
|
|
#include <ac/socket.h>
|
|
#include <ac/string.h>
|
|
#include <ac/time.h>
|
|
|
|
#include "slap.h"
|
|
|
|
struct co_arg {
|
|
Connection *co_conn;
|
|
Operation *co_op;
|
|
};
|
|
|
|
/*
|
|
* connection_activity - handle the request operation op on connection
|
|
* conn. This routine figures out what kind of operation it is and
|
|
* calls the appropriate stub to handle it.
|
|
*/
|
|
|
|
static void *
|
|
connection_operation( void *arg_v )
|
|
{
|
|
struct co_arg *arg = arg_v;
|
|
unsigned long len;
|
|
|
|
ldap_pvt_thread_mutex_lock( &arg->co_conn->c_opsmutex );
|
|
arg->co_conn->c_opsinitiated++;
|
|
ldap_pvt_thread_mutex_unlock( &arg->co_conn->c_opsmutex );
|
|
|
|
ldap_pvt_thread_mutex_lock( &ops_mutex );
|
|
ops_initiated++;
|
|
ldap_pvt_thread_mutex_unlock( &ops_mutex );
|
|
|
|
switch ( arg->co_op->o_tag ) {
|
|
case LDAP_REQ_BIND:
|
|
do_bind( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
#ifdef LDAP_COMPAT30
|
|
case LDAP_REQ_UNBIND_30:
|
|
#endif
|
|
case LDAP_REQ_UNBIND:
|
|
do_unbind( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
case LDAP_REQ_ADD:
|
|
do_add( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
#ifdef LDAP_COMPAT30
|
|
case LDAP_REQ_DELETE_30:
|
|
#endif
|
|
case LDAP_REQ_DELETE:
|
|
do_delete( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
case LDAP_REQ_MODRDN:
|
|
do_modrdn( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
case LDAP_REQ_MODIFY:
|
|
do_modify( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
case LDAP_REQ_COMPARE:
|
|
do_compare( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
case LDAP_REQ_SEARCH:
|
|
do_search( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
#ifdef LDAP_COMPAT30
|
|
case LDAP_REQ_ABANDON_30:
|
|
#endif
|
|
case LDAP_REQ_ABANDON:
|
|
do_abandon( arg->co_conn, arg->co_op );
|
|
break;
|
|
|
|
default:
|
|
Debug( LDAP_DEBUG_ANY, "unknown request 0x%lx\n",
|
|
arg->co_op->o_tag, 0, 0 );
|
|
break;
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_lock( &arg->co_conn->c_opsmutex );
|
|
arg->co_conn->c_opscompleted++;
|
|
|
|
slap_op_delete( &arg->co_conn->c_ops, arg->co_op );
|
|
arg->co_op = NULL;
|
|
|
|
ldap_pvt_thread_mutex_unlock( &arg->co_conn->c_opsmutex );
|
|
|
|
arg->co_conn = NULL;
|
|
free( (char *) arg );
|
|
|
|
ldap_pvt_thread_mutex_lock( &ops_mutex );
|
|
ops_completed++;
|
|
ldap_pvt_thread_mutex_unlock( &ops_mutex );
|
|
|
|
ldap_pvt_thread_mutex_lock( &active_threads_mutex );
|
|
active_threads--;
|
|
if( active_threads < 1 ) {
|
|
ldap_pvt_thread_cond_signal(&active_threads_cond);
|
|
}
|
|
ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
|
|
return NULL;
|
|
}
|
|
|
|
void
|
|
connection_activity(
|
|
Connection *conn
|
|
)
|
|
{
|
|
int status;
|
|
struct co_arg *arg;
|
|
unsigned long tag, len;
|
|
long msgid;
|
|
BerElement *ber;
|
|
char *tmpdn;
|
|
|
|
if ( conn->c_currentber == NULL && (conn->c_currentber = ber_alloc())
|
|
== NULL ) {
|
|
Debug( LDAP_DEBUG_ANY, "ber_alloc failed\n", 0, 0, 0 );
|
|
return;
|
|
}
|
|
|
|
errno = 0;
|
|
if ( (tag = ber_get_next( &conn->c_sb, &len, conn->c_currentber ))
|
|
!= LDAP_TAG_MESSAGE ) {
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
"ber_get_next on fd %d failed errno %d (%s)\n",
|
|
conn->c_sb.sb_sd, errno, errno > -1 && errno < sys_nerr ?
|
|
sys_errlist[errno] : "unknown" );
|
|
Debug( LDAP_DEBUG_TRACE, "*** got %ld of %lu so far\n",
|
|
(long)(conn->c_currentber->ber_rwptr - conn->c_currentber->ber_buf),
|
|
conn->c_currentber->ber_len, 0 );
|
|
|
|
if ( errno != EWOULDBLOCK && errno != EAGAIN ) {
|
|
/* log, close and send error */
|
|
ber_free( conn->c_currentber, 1 );
|
|
conn->c_currentber = NULL;
|
|
|
|
close_connection( conn, conn->c_connid, -1 );
|
|
}
|
|
|
|
return;
|
|
}
|
|
ber = conn->c_currentber;
|
|
conn->c_currentber = NULL;
|
|
|
|
if ( (tag = ber_get_int( ber, &msgid )) != LDAP_TAG_MSGID ) {
|
|
/* log, close and send error */
|
|
Debug( LDAP_DEBUG_ANY, "ber_get_int returns 0x%lx\n", tag, 0,
|
|
0 );
|
|
ber_free( ber, 1 );
|
|
|
|
close_connection( conn, conn->c_connid, -1 );
|
|
return;
|
|
}
|
|
|
|
if ( (tag = ber_peek_tag( ber, &len )) == LBER_ERROR ) {
|
|
/* log, close and send error */
|
|
Debug( LDAP_DEBUG_ANY, "ber_peek_tag returns 0x%lx\n", tag, 0,
|
|
0 );
|
|
ber_free( ber, 1 );
|
|
|
|
close_connection( conn, conn->c_connid, -1 );
|
|
return;
|
|
}
|
|
|
|
#ifdef LDAP_COMPAT30
|
|
if ( conn->c_version == 30 ) {
|
|
(void) ber_skip_tag( ber, &len );
|
|
}
|
|
#endif
|
|
|
|
arg = (struct co_arg *) ch_malloc( sizeof(struct co_arg) );
|
|
arg->co_conn = conn;
|
|
|
|
ldap_pvt_thread_mutex_lock( &conn->c_dnmutex );
|
|
if ( conn->c_dn != NULL ) {
|
|
tmpdn = ch_strdup( conn->c_dn );
|
|
} else {
|
|
tmpdn = NULL;
|
|
}
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_dnmutex );
|
|
|
|
ldap_pvt_thread_mutex_lock( &conn->c_opsmutex );
|
|
arg->co_op = slap_op_add( &conn->c_ops, ber, msgid, tag, tmpdn,
|
|
conn->c_opsinitiated, conn->c_connid );
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_opsmutex );
|
|
|
|
if ( tmpdn != NULL ) {
|
|
free( tmpdn );
|
|
}
|
|
|
|
ldap_pvt_thread_mutex_lock( &active_threads_mutex );
|
|
active_threads++;
|
|
ldap_pvt_thread_mutex_unlock( &active_threads_mutex );
|
|
|
|
if ( status = ldap_pvt_thread_create( &arg->co_op->o_tid, 1,
|
|
connection_operation, (void *) arg ) != 0 ) {
|
|
Debug( LDAP_DEBUG_ANY, "ldap_pvt_thread_create failed (%d)\n", status, 0, 0 );
|
|
}
|
|
}
|