1999-05-26 10:35:20 +08:00
|
|
|
/* unbind.c - ldap backend unbind function */
|
1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 14:35:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2007-01-03 04:00:42 +08:00
|
|
|
* Copyright 1999-2007 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 1999-2003 Howard Chu.
|
|
|
|
* Portions Copyright 2000-2003 Pierangelo Masarati.
|
2003-11-27 14:35:14 +08:00
|
|
|
* 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
|
|
|
|
* <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-01-17 15:09:22 +08:00
|
|
|
*/
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2005-07-04 07:27:56 +08:00
|
|
|
#include <ac/errno.h>
|
1999-05-26 10:35:20 +08:00
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-ldap.h"
|
|
|
|
|
|
|
|
int
|
1999-07-26 06:16:01 +08:00
|
|
|
ldap_back_conn_destroy(
|
2004-11-13 22:43:30 +08:00
|
|
|
Backend *be,
|
|
|
|
Connection *conn
|
1999-05-26 10:35:20 +08:00
|
|
|
)
|
|
|
|
{
|
2005-11-19 23:00:50 +08:00
|
|
|
ldapinfo_t *li = (ldapinfo_t *) be->be_private;
|
|
|
|
ldapconn_t *lc = NULL, lc_curr;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-17 22:24:27 +08:00
|
|
|
"=>ldap_back_conn_destroy: fetching conn %ld\n",
|
2001-01-20 05:27:20 +08:00
|
|
|
conn->c_connid, 0, 0 );
|
|
|
|
|
2004-11-13 22:43:30 +08:00
|
|
|
lc_curr.lc_conn = conn;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
2005-11-19 23:00:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &li->li_conninfo.lai_mutex );
|
2006-10-08 02:07:56 +08:00
|
|
|
#if LDAP_BACK_PRINT_CONNTREE > 0
|
2006-12-25 02:23:36 +08:00
|
|
|
ldap_back_print_conntree( li, ">>> ldap_back_conn_destroy" );
|
2006-10-08 02:07:56 +08:00
|
|
|
#endif /* LDAP_BACK_PRINT_CONNTREE */
|
2006-02-07 05:39:56 +08:00
|
|
|
while ( ( lc = avl_delete( &li->li_conninfo.lai_tree, (caddr_t)&lc_curr, ldap_back_conn_cmp ) ) != NULL )
|
|
|
|
{
|
2001-01-20 05:27:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2005-06-30 00:38:09 +08:00
|
|
|
"=>ldap_back_conn_destroy: destroying conn %ld (refcnt=%u)\n",
|
2006-10-08 02:07:56 +08:00
|
|
|
LDAP_BACK_PCONN_ID( lc ), lc->lc_refcnt, 0 );
|
2005-06-30 00:38:09 +08:00
|
|
|
|
|
|
|
assert( lc->lc_refcnt == 0 );
|
2001-05-12 08:51:28 +08:00
|
|
|
|
2001-01-20 05:27:20 +08:00
|
|
|
/*
|
|
|
|
* Needs a test because the handler may be corrupted,
|
|
|
|
* and calling ldap_unbind on a corrupted header results
|
|
|
|
* in a segmentation fault
|
|
|
|
*/
|
2003-02-14 07:29:56 +08:00
|
|
|
ldap_back_conn_free( lc );
|
1999-05-26 10:35:20 +08:00
|
|
|
}
|
2006-10-08 02:07:56 +08:00
|
|
|
#if LDAP_BACK_PRINT_CONNTREE > 0
|
2006-12-25 02:23:36 +08:00
|
|
|
ldap_back_print_conntree( li, "<<< ldap_back_conn_destroy" );
|
2006-10-08 02:07:56 +08:00
|
|
|
#endif /* LDAP_BACK_PRINT_CONNTREE */
|
2006-02-07 05:39:56 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &li->li_conninfo.lai_mutex );
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|