]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/unbind.c
c1bba664a1b44008a9b25d741c33cd45b4cfde3e
[openldap] / servers / slapd / back-ldap / unbind.c
1 /* unbind.c - ldap backend unbind function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by the Howard Chu for inclusion
18  * in OpenLDAP Software and subsequently enhanced by Pierangelo
19  * Masarati.
20  */
21 /* This is an altered version */
22 /*
23  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
24  * 
25  * Permission is granted to anyone to use this software for any purpose
26  * on any computer system, and to alter it and redistribute it, subject
27  * to the following restrictions:
28  * 
29  * 1. The author is not responsible for the consequences of use of this
30  *    software, no matter how awful, even if they arise from flaws in it.
31  * 
32  * 2. The origin of this software must not be misrepresented, either by
33  *    explicit claim or by omission.  Since few users ever read sources,
34  *    credits should appear in the documentation.
35  * 
36  * 3. Altered versions must be plainly marked as such, and must not be
37  *    misrepresented as being the original software.  Since few users
38  *    ever read sources, credits should appear in the documentation.
39  * 
40  * 4. This notice may not be removed or altered.
41  *
42  *
43  *
44  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
45  *
46  * This software is being modified by Pierangelo Masarati.
47  * The previously reported conditions apply to the modified code as well.
48  * Changes in the original code are highlighted where required.
49  * Credits for the original code go to the author, Howard Chu.
50  */
51
52 #include "portable.h"
53
54 #include <stdio.h>
55
56 #include <ac/socket.h>
57 #include <ac/string.h>
58
59 #include "slap.h"
60 #include "back-ldap.h"
61
62 int
63 ldap_back_conn_destroy(
64     Backend             *be,
65     Connection          *conn
66 )
67 {
68         struct ldapinfo *li = (struct ldapinfo *) be->be_private;
69         struct ldapconn *lc, lc_curr;
70
71 #ifdef NEW_LOGGING
72         LDAP_LOG( BACK_LDAP, INFO,
73                 "ldap_back_conn_destroy: fetching conn %ld\n", conn->c_connid, 0, 0 );
74 #else /* !NEW_LOGGING */
75         Debug( LDAP_DEBUG_TRACE,
76                 "=>ldap_back_conn_destroy: fetching conn %ld\n",
77                 conn->c_connid, 0, 0 );
78 #endif /* !NEW_LOGGING */
79
80         lc_curr.conn = conn;
81         lc_curr.local_dn = conn->c_ndn;
82         
83         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
84         lc = avl_delete( &li->conntree, (caddr_t)&lc_curr, ldap_back_conn_cmp );
85         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
86
87         if (lc) {
88 #ifdef NEW_LOGGING
89                 LDAP_LOG( BACK_LDAP, DETAIL1, 
90                         "ldap_back_conn_destroy: destroying conn %ld\n", 
91                         conn->c_connid, 0, 0 );
92 #else /* !NEW_LOGGING */
93                 Debug( LDAP_DEBUG_TRACE,
94                         "=>ldap_back_conn_destroy: destroying conn %ld\n",
95                         lc->conn->c_connid, 0, 0 );
96 #endif
97
98 #ifdef ENABLE_REWRITE
99                 /*
100                  * Cleanup rewrite session
101                  */
102                 rewrite_session_delete( li->rwmap.rwm_rw, conn );
103 #endif /* ENABLE_REWRITE */
104
105                 /*
106                  * Needs a test because the handler may be corrupted,
107                  * and calling ldap_unbind on a corrupted header results
108                  * in a segmentation fault
109                  */
110                 ldap_back_conn_free( lc );
111         }
112
113         /* no response to unbind */
114
115         return 0;
116 }