/* $OpenLDAP$ */ /* This work is part of OpenLDAP Software . * * Copyright 1999-2003 The OpenLDAP Foundation. * Portions Copyright 2001-2003 Pierangelo Masarati. * Portions Copyright 1999-2003 Howard Chu. * All rights reserved. * * 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 * . */ /* ACKNOWLEDGEMENTS: * This work was initially developed by the Howard Chu for inclusion * in OpenLDAP Software and subsequently enhanced by Pierangelo * Masarati. */ #include "portable.h" #include #include #include #include "slap.h" #include "../back-ldap/back-ldap.h" #include "back-meta.h" int meta_back_conn_destroy( Backend *be, Connection *conn ) { struct metainfo *li = ( struct metainfo * )be->be_private; struct metaconn *lc, lc_curr; #ifdef NEW_LOGGING LDAP_LOG( BACK_META, ENTRY, "meta_back_conn_destroy: fetching conn %ld\n", conn->c_connid, 0, 0 ); #else /* !NEW_LOGGING */ Debug( LDAP_DEBUG_TRACE, "=>meta_back_conn_destroy: fetching conn %ld\n%s%s", conn->c_connid, "", "" ); #endif /* !NEW_LOGGING */ lc_curr.conn = conn; ldap_pvt_thread_mutex_lock( &li->conn_mutex ); lc = avl_delete( &li->conntree, ( caddr_t )&lc_curr, meta_back_conn_cmp ); ldap_pvt_thread_mutex_unlock( &li->conn_mutex ); if ( lc ) { int i; #ifdef NEW_LOGGING LDAP_LOG( BACK_META, INFO, "meta_back_conn_destroy: destroying conn %ld\n", lc->conn->c_connid, 0, 0 ); #else /* !NEW_LOGGING */ Debug( LDAP_DEBUG_TRACE, "=>meta_back_conn_destroy: destroying conn %ld\n%s%s", lc->conn->c_connid, "", "" ); #endif /* !NEW_LOGGING */ /* * Cleanup rewrite session */ for ( i = 0; i < li->ntargets; ++i ) { if ( lc->conns[ i ].ld == NULL ) { continue; } rewrite_session_delete( li->targets[ i ]->rwmap.rwm_rw, conn ); meta_clear_one_candidate( &lc->conns[ i ], 1 ); } free( lc->conns ); free( lc ); } /* no response to unbind */ return 0; }