]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
1b63a0b746b7a63806801df0e0ea8fb1727fdf9b
[openldap] / servers / slapd / back-meta / init.c
1 /*
2  * Copyright 1998-2002 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
73 #include "slap.h"
74 #include "../back-ldap/back-ldap.h"
75 #include "back-meta.h"
76
77 #ifdef SLAPD_META_DYNAMIC
78
79 int
80 back_meta_LTX_init_module( int argc, char *argv[] ) {
81     BackendInfo bi;
82
83     memset( &bi, '\0', sizeof( bi ) );
84     bi.bi_type = "meta";
85     bi.bi_init = meta_back_initialize;
86
87     backend_add( &bi );
88     return 0;
89 }
90
91 #endif /* SLAPD_META_DYNAMIC */
92
93 int
94 meta_back_initialize(
95                 BackendInfo     *bi
96 )
97 {
98         bi->bi_open = 0;
99         bi->bi_config = 0;
100         bi->bi_close = 0;
101         bi->bi_destroy = 0;
102
103         bi->bi_db_init = meta_back_db_init;
104         bi->bi_db_config = meta_back_db_config;
105         bi->bi_db_open = 0;
106         bi->bi_db_close = 0;
107         bi->bi_db_destroy = meta_back_db_destroy;
108
109         bi->bi_op_bind = meta_back_bind;
110         bi->bi_op_unbind = 0;
111         bi->bi_op_search = meta_back_search;
112         bi->bi_op_compare = meta_back_compare;
113         bi->bi_op_modify = meta_back_modify;
114         bi->bi_op_modrdn = meta_back_modrdn;
115         bi->bi_op_add = meta_back_add;
116         bi->bi_op_delete = meta_back_delete;
117         bi->bi_op_abandon = 0;
118
119         bi->bi_extended = 0;
120
121         bi->bi_acl_group = meta_back_group;
122         bi->bi_acl_attribute = meta_back_attribute;
123         bi->bi_chk_referrals = 0;
124
125         bi->bi_connection_init = 0;
126         bi->bi_connection_destroy = meta_back_conn_destroy;
127
128         return 0;
129 }
130
131 int
132 meta_back_db_init(
133                 Backend *be
134 )
135 {
136         struct metainfo *li;
137
138         li = ch_calloc( 1, sizeof( struct metainfo ) );
139         if ( li == NULL ) {
140                 return -1;
141         }
142         
143         /*
144          * At present the default is no default target;
145          * this may change
146          */
147         li->defaulttarget = META_DEFAULT_TARGET_NONE;
148
149         ldap_pvt_thread_mutex_init( &li->conn_mutex );
150         ldap_pvt_thread_mutex_init( &li->cache.mutex );
151         be->be_private = li;
152
153         return 0;
154 }
155
156 static void
157 conn_free( 
158         struct metaconn *lc
159 )
160 {
161         struct metasingleconn **lsc;
162
163         for ( lsc = lc->conns; lsc[ 0 ] != NULL; lsc++ ) {
164                 if ( lsc[ 0 ]->ld != NULL ) {
165                         ldap_unbind( lsc[ 0 ]->ld );
166                 }
167                 if ( lsc[ 0 ]->bound_dn ) {
168                         ber_bvfree( lsc[ 0 ]->bound_dn );
169                 }
170                 free( lsc[ 0 ] );
171         }
172         free( lc->conns );
173         free( lc );
174 }
175
176 static void
177 target_free(
178                 struct metatarget *lt
179 )
180 {
181         if ( lt->uri ) {
182                 free( lt->uri );
183         }
184         if ( lt->psuffix.bv_val ) {
185                 free( lt->psuffix.bv_val );
186         }
187         if ( lt->suffix.bv_val ) {
188                 free( lt->suffix.bv_val );
189         }
190         if ( lt->binddn.bv_val ) {
191                 free( lt->binddn.bv_val );
192         }
193         if ( lt->bindpw.bv_val ) {
194                 free( lt->bindpw.bv_val );
195         }
196         if ( lt->pseudorootdn.bv_val ) {
197                 free( lt->pseudorootdn.bv_val );
198         }
199         if ( lt->pseudorootpw.bv_val ) {
200                 free( lt->pseudorootpw.bv_val );
201         }
202         if ( lt->rwinfo ) {
203                 rewrite_info_delete( lt->rwinfo );
204         }
205         avl_free( lt->oc_map.remap, NULL );
206         avl_free( lt->oc_map.map, ( AVL_FREE )mapping_free );
207         avl_free( lt->at_map.remap, NULL );
208         avl_free( lt->at_map.map, ( AVL_FREE )mapping_free );
209 }
210
211 int
212 meta_back_db_destroy(
213     Backend     *be
214 )
215 {
216         struct metainfo *li;
217
218         if ( be->be_private ) {
219                 int i;
220
221                 li = ( struct metainfo * )be->be_private;
222
223                 /*
224                  * Destroy the connection tree
225                  */
226                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
227
228                 if ( li->conntree ) {
229                         avl_free( li->conntree,
230                                         ( AVL_FREE )conn_free );
231                 }
232
233                 ldap_pvt_thread_mutex_unlock( &li->cache.mutex );
234                 ldap_pvt_thread_mutex_destroy( &li->cache.mutex );
235
236                 /*
237                  * Destroy the per-target stuff (assuming there's at
238                  * least one ...)
239                  */
240                 for ( i = 0; i < li->ntargets; i++ ) {
241                         target_free( li->targets[ i ] );
242                         free( li->targets[ i ] );
243                 }
244
245                 free( li->targets );
246
247                 ldap_pvt_thread_mutex_lock( &li->cache.mutex );
248                 if ( li->cache.tree ) {
249                         avl_free( li->cache.tree,
250                                         ( AVL_FREE )meta_dncache_free );
251                 }
252                 
253                 ldap_pvt_thread_mutex_unlock( &li->cache.mutex );
254                 ldap_pvt_thread_mutex_destroy( &li->cache.mutex );
255
256                                                 
257         }
258
259         free( be->be_private );
260         return 0;
261 }
262