]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/unbind.c
first cut at grouping rewrite/map stuff; needs work
[openldap] / servers / slapd / back-meta / unbind.c
1 /*
2  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  * 
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/socket.h>
72 #include <ac/string.h>
73
74 #include "slap.h"
75 #include "../back-ldap/back-ldap.h"
76 #include "back-meta.h"
77
78 int
79 meta_back_conn_destroy(
80                 Backend         *be,
81                 Connection      *conn
82 )
83 {
84         struct metainfo *li = ( struct metainfo * )be->be_private;
85         struct metaconn *lc, lc_curr;
86
87 #ifdef NEW_LOGGING
88         LDAP_LOG( BACK_META, ENTRY,
89                 "meta_back_conn_destroy: fetching conn %ld\n", conn->c_connid, 0, 0 );
90 #else /* !NEW_LOGGING */
91         Debug( LDAP_DEBUG_TRACE,
92                 "=>meta_back_conn_destroy: fetching conn %ld\n%s%s",
93                 conn->c_connid, "", "" );
94 #endif /* !NEW_LOGGING */
95         
96         lc_curr.conn = conn;
97         
98         ldap_pvt_thread_mutex_lock( &li->conn_mutex );
99         lc = avl_delete( &li->conntree, ( caddr_t )&lc_curr,
100                         meta_back_conn_cmp );
101         ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
102
103         if ( lc ) {
104                 int i;
105                 
106 #ifdef NEW_LOGGING
107                 LDAP_LOG( BACK_META, INFO,
108                         "meta_back_conn_destroy: destroying conn %ld\n",
109                         lc->conn->c_connid, 0, 0 );
110 #else /* !NEW_LOGGING */
111                 Debug( LDAP_DEBUG_TRACE,
112                         "=>meta_back_conn_destroy: destroying conn %ld\n%s%s",
113                         lc->conn->c_connid, "", "" );
114 #endif /* !NEW_LOGGING */
115                 
116                 /*
117                  * Cleanup rewrite session
118                  */
119                 for ( i = 0; i < li->ntargets; ++i ) {
120                         if ( lc->conns[ i ].ld == NULL ) {
121                                 continue;
122                         }
123
124                         rewrite_session_delete( li->targets[ i ]->rwmap.rwm_rw, conn );
125                         meta_clear_one_candidate( &lc->conns[ i ], 1 );
126                 }
127
128                 free( lc->conns );
129                 free( lc );
130         }
131
132         /* no response to unbind */
133
134         return 0;
135 }
136