2003-11-27 14:35:14 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2005-01-02 04:49:32 +08:00
|
|
|
* Copyright 1999-2005 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,
|
2005-04-23 05:43:52 +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-01-08 17:20:54 +08:00
|
|
|
"=>meta_back_conn_destroy: fetching conn %ld\n",
|
|
|
|
conn->c_connid, 0, 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-08-07 08:35:11 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &mi->mi_conn_mutex );
|
2005-04-23 05:43:52 +08:00
|
|
|
mc = avl_delete( &mi->mi_conntree, ( caddr_t )&mc_curr,
|
2001-05-12 08:51:28 +08:00
|
|
|
meta_back_conn_cmp );
|
2005-04-23 05:43:52 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &mi->mi_conn_mutex );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-04-23 05:43:52 +08:00
|
|
|
if ( mc ) {
|
2001-05-12 08:51:28 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-01-08 17:20:54 +08:00
|
|
|
"=>meta_back_conn_destroy: destroying conn %ld\n",
|
2005-04-23 05:43:52 +08:00
|
|
|
mc->mc_conn->c_connid, 0, 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2005-07-05 06:41:54 +08:00
|
|
|
assert( mc->mc_refcnt == 0 );
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
/*
|
|
|
|
* Cleanup rewrite session
|
|
|
|
*/
|
2005-04-23 05:43:52 +08:00
|
|
|
for ( i = 0; i < mi->mi_ntargets; ++i ) {
|
2005-06-20 06:41:12 +08:00
|
|
|
if ( mc->mc_conns[ i ].msc_ld != NULL ) {
|
|
|
|
meta_clear_one_candidate( &mc->mc_conns[ i ] );
|
|
|
|
}
|
2001-05-12 08:51:28 +08:00
|
|
|
}
|
2005-07-15 09:08:34 +08:00
|
|
|
|
2005-04-23 05:43:52 +08:00
|
|
|
meta_back_conn_free( mc );
|
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 ) {
|
|
|
|
rewrite_session_delete( mi->mi_targets[ i ].mt_rwmap.rwm_rw, conn );
|
|
|
|
}
|
|
|
|
|
2001-05-12 08:51:28 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|