2003-11-27 14:35:14 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2011-01-05 08:42:37 +08:00
|
|
|
* Copyright 1999-2011 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
2003-11-27 14:35:14 +08:00
|
|
|
* All rights reserved.
|
2001-05-12 08:51:28 +08:00
|
|
|
*
|
2003-11-27 14:35:14 +08:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by the Howard Chu for inclusion
|
|
|
|
* in OpenLDAP Software and subsequently enhanced by Pierangelo
|
|
|
|
* Masarati.
|
|
|
|
*/
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-07-04 07:28:35 +08:00
|
|
|
#include <ac/errno.h>
|
2001-05-12 08:51:28 +08:00
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "../back-ldap/back-ldap.h"
|
|
|
|
#include "back-meta.h"
|
|
|
|
|
|
|
|
int
|
|
|
|
meta_back_conn_destroy(
|
2005-04-23 05:43:52 +08:00
|
|
|
Backend *be,
|
|
|
|
Connection *conn )
|
2001-05-12 08:51:28 +08:00
|
|
|
{
|
2005-04-23 05:43:52 +08:00
|
|
|
metainfo_t *mi = ( metainfo_t * )be->be_private;
|
2005-06-20 06:41:12 +08:00
|
|
|
metaconn_t *mc,
|
2009-08-20 02:58:28 +08:00
|
|
|
mc_curr = {{ 0 }};
|
2005-07-15 09:08:34 +08:00
|
|
|
int i;
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-12-12 22:33:34 +08:00
|
|
|
"=>meta_back_conn_destroy: fetching conn=%ld DN=\"%s\"\n",
|
|
|
|
conn->c_connid,
|
|
|
|
BER_BVISNULL( &conn->c_ndn ) ? "" : conn->c_ndn.bv_val, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-04-23 05:43:52 +08:00
|
|
|
mc_curr.mc_conn = conn;
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-11-19 23:00:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
|
2006-10-08 02:07:56 +08:00
|
|
|
#if META_BACK_PRINT_CONNTREE > 0
|
2006-12-25 02:23:36 +08:00
|
|
|
meta_back_print_conntree( mi, ">>> meta_back_conn_destroy" );
|
2006-10-08 02:07:56 +08:00
|
|
|
#endif /* META_BACK_PRINT_CONNTREE */
|
2006-02-12 01:40:28 +08:00
|
|
|
while ( ( mc = avl_delete( &mi->mi_conninfo.lai_tree, ( caddr_t )&mc_curr, meta_back_conn_cmp ) ) != NULL )
|
|
|
|
{
|
2009-08-19 23:00:59 +08:00
|
|
|
assert( !LDAP_BACK_PCONN_ISPRIV( mc ) );
|
2001-05-12 08:51:28 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2009-08-19 23:00:59 +08:00
|
|
|
"=>meta_back_conn_destroy: destroying conn %lu "
|
2007-01-18 08:02:29 +08:00
|
|
|
"refcnt=%d flags=0x%08x\n",
|
2009-08-19 23:00:59 +08:00
|
|
|
mc->mc_conn->c_connid, mc->mc_refcnt, mc->msc_mscflags );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2007-01-18 08:02:29 +08:00
|
|
|
if ( mc->mc_refcnt > 0 ) {
|
|
|
|
/* someone else might be accessing the connection;
|
|
|
|
* mark for deletion */
|
|
|
|
LDAP_BACK_CONN_CACHED_CLEAR( mc );
|
|
|
|
LDAP_BACK_CONN_TAINTED_SET( mc );
|
2005-07-05 06:41:54 +08:00
|
|
|
|
2007-01-18 08:02:29 +08:00
|
|
|
} else {
|
|
|
|
meta_back_conn_free( mc );
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2006-10-08 02:07:56 +08:00
|
|
|
#if META_BACK_PRINT_CONNTREE > 0
|
2006-12-25 02:23:36 +08:00
|
|
|
meta_back_print_conntree( mi, "<<< meta_back_conn_destroy" );
|
2006-10-08 02:07:56 +08:00
|
|
|
#endif /* META_BACK_PRINT_CONNTREE */
|
2006-02-12 01:40:28 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-07-15 09:08:34 +08:00
|
|
|
/*
|
|
|
|
* Cleanup rewrite session
|
|
|
|
*/
|
|
|
|
for ( i = 0; i < mi->mi_ntargets; ++i ) {
|
2006-05-07 00:15:25 +08:00
|
|
|
rewrite_session_delete( mi->mi_targets[ i ]->mt_rwmap.rwm_rw, conn );
|
2005-07-15 09:08:34 +08:00
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|