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/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1999-2004 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>
|
|
|
|
|
|
|
|
#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(
|
1999-05-26 10:35:20 +08:00
|
|
|
Backend *be,
|
1999-07-26 06:16:01 +08:00
|
|
|
Connection *conn
|
1999-05-26 10:35:20 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
struct ldapinfo *li = (struct ldapinfo *) be->be_private;
|
2001-01-20 05:27:20 +08:00
|
|
|
struct ldapconn *lc, lc_curr;
|
1999-05-26 10:35:20 +08:00
|
|
|
|
2001-05-17 06:55:44 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDAP, INFO,
|
|
|
|
"ldap_back_conn_destroy: fetching conn %ld\n", conn->c_connid, 0, 0 );
|
2001-05-17 06:55:44 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
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 );
|
2001-05-17 06:55:44 +08:00
|
|
|
#endif /* !NEW_LOGGING */
|
2001-01-20 05:27:20 +08:00
|
|
|
|
|
|
|
lc_curr.conn = conn;
|
2003-02-14 07:29:56 +08:00
|
|
|
lc_curr.local_dn = conn->c_ndn;
|
2001-01-20 05:27:20 +08:00
|
|
|
|
1999-07-26 06:16:01 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &li->conn_mutex );
|
2001-05-12 08:51:28 +08:00
|
|
|
lc = avl_delete( &li->conntree, (caddr_t)&lc_curr, ldap_back_conn_cmp );
|
1999-07-26 06:16:01 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
|
1999-05-26 10:35:20 +08:00
|
|
|
|
|
|
|
if (lc) {
|
2002-04-17 04:11:09 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( BACK_LDAP, DETAIL1,
|
|
|
|
"ldap_back_conn_destroy: destroying conn %ld\n",
|
|
|
|
conn->c_connid, 0, 0 );
|
2002-04-17 04:11:09 +08:00
|
|
|
#else /* !NEW_LOGGING */
|
2001-01-20 05:27:20 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
2001-11-17 22:24:27 +08:00
|
|
|
"=>ldap_back_conn_destroy: destroying conn %ld\n",
|
2001-01-20 05:27:20 +08:00
|
|
|
lc->conn->c_connid, 0, 0 );
|
2002-04-17 04:11:09 +08:00
|
|
|
#endif
|
2001-05-12 08:51:28 +08:00
|
|
|
|
|
|
|
#ifdef ENABLE_REWRITE
|
|
|
|
/*
|
|
|
|
* Cleanup rewrite session
|
|
|
|
*/
|
2003-04-08 00:52:59 +08:00
|
|
|
rewrite_session_delete( li->rwmap.rwm_rw, conn );
|
2001-05-12 08:51:28 +08:00
|
|
|
#endif /* ENABLE_REWRITE */
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/* no response to unbind */
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|