]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
silence warning
[openldap] / servers / slapd / back-meta / init.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
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_controls = slap_known_controls;
99
100         bi->bi_open = 0;
101         bi->bi_config = 0;
102         bi->bi_close = 0;
103         bi->bi_destroy = 0;
104
105         bi->bi_db_init = meta_back_db_init;
106         bi->bi_db_config = meta_back_db_config;
107         bi->bi_db_open = 0;
108         bi->bi_db_close = 0;
109         bi->bi_db_destroy = meta_back_db_destroy;
110
111         bi->bi_op_bind = meta_back_bind;
112         bi->bi_op_unbind = 0;
113         bi->bi_op_search = meta_back_search;
114         bi->bi_op_compare = meta_back_compare;
115         bi->bi_op_modify = meta_back_modify;
116         bi->bi_op_modrdn = meta_back_modrdn;
117         bi->bi_op_add = meta_back_add;
118         bi->bi_op_delete = meta_back_delete;
119         bi->bi_op_abandon = 0;
120
121         bi->bi_extended = 0;
122
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 #ifdef LDAP_CACHING
139         struct rewrite_info     *rwinfo;
140         cache_manager           *cm;
141         query_manager           *qm;
142
143         rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
144         if ( rwinfo == NULL ) {
145                 return -1;
146         }
147                 
148         cm = (cache_manager *)ch_malloc(sizeof(cache_manager)); 
149         if ( cm == NULL ) {
150                 rewrite_info_delete( rwinfo );
151                 return -1;
152         }
153
154         qm = (query_manager*)ch_malloc(sizeof(query_manager)); 
155         if ( qm == NULL ) {
156                 rewrite_info_delete( rwinfo );
157                 ch_free( cm );
158                 return -1;
159         }
160
161         cm->caching = 0; 
162         cm->qm = qm; 
163         cm->numattrsets = 0; 
164         cm->numtemplates = 0;   
165         cm->num_entries_limit = 5;
166         cm->cache_size = 0;
167         cm->thresh_hi = 500000;
168         cm->thresh_lo = 700000;
169         cm->num_cached_queries = 0; 
170         cm->total_entries = 0; 
171         cm->max_queries = 10000; 
172         cm->threads = 0; 
173         cm->consistency_time = slap_get_time(); 
174         cm->consistency_cycle_time = 1000; 
175        
176         qm->attr_sets = NULL; 
177         qm->templates = NULL; 
178         qm->lru_top = NULL;
179         qm->lru_bottom = NULL;
180
181         qm->qcfunc = query_containment; 
182         qm->crfunc = cache_replacement; 
183         qm->addfunc = add_query; 
184         ldap_pvt_thread_mutex_init(&qm->lru_mutex); 
185         
186         ldap_pvt_thread_mutex_init(&cm->cache_mutex); 
187         ldap_pvt_thread_mutex_init(&cm->remove_mutex); 
188         ldap_pvt_thread_mutex_init( &cm->consistency_mutex );
189 #endif /* LDAP_CACHING */
190
191         li = ch_calloc( 1, sizeof( struct metainfo ) );
192         if ( li == NULL ) {
193                 return -1;
194         }
195         
196         /*
197          * At present the default is no default target;
198          * this may change
199          */
200         li->defaulttarget = META_DEFAULT_TARGET_NONE;
201 #ifdef LDAP_CACHING
202         li->cm = cm; 
203         li->rwinfo = rwinfo;
204         /* FIXME: what about qm ? */
205 #endif /* LDAP_CACHING */
206
207         ldap_pvt_thread_mutex_init( &li->conn_mutex );
208         ldap_pvt_thread_mutex_init( &li->cache.mutex );
209         be->be_private = li;
210
211         return 0;
212 }
213
214 static void
215 conn_free( 
216         void *v_lc
217 )
218 {
219         struct metaconn *lc = v_lc;
220         struct metasingleconn *lsc;
221
222         for ( lsc = lc->conns; !META_LAST(lsc); lsc++ ) {
223                 if ( lsc->ld != NULL ) {
224                         ldap_unbind( lsc->ld );
225                 }
226                 if ( lsc->bound_dn.bv_val ) {
227                         ber_memfree( lsc->bound_dn.bv_val );
228                 }
229         }
230         free( lc->conns );
231         free( lc );
232 }
233
234 static void
235 target_free(
236                 struct metatarget *lt
237 )
238 {
239         if ( lt->uri ) {
240                 free( lt->uri );
241         }
242         if ( lt->psuffix.bv_val ) {
243                 free( lt->psuffix.bv_val );
244         }
245         if ( lt->suffix.bv_val ) {
246                 free( lt->suffix.bv_val );
247         }
248         if ( lt->binddn.bv_val ) {
249                 free( lt->binddn.bv_val );
250         }
251         if ( lt->bindpw.bv_val ) {
252                 free( lt->bindpw.bv_val );
253         }
254         if ( lt->pseudorootdn.bv_val ) {
255                 free( lt->pseudorootdn.bv_val );
256         }
257         if ( lt->pseudorootpw.bv_val ) {
258                 free( lt->pseudorootpw.bv_val );
259         }
260         if ( lt->rwmap.rwm_rw ) {
261                 rewrite_info_delete( lt->rwmap.rwm_rw );
262         }
263         avl_free( lt->rwmap.rwm_oc.remap, NULL );
264         avl_free( lt->rwmap.rwm_oc.map, mapping_free );
265         avl_free( lt->rwmap.rwm_at.remap, NULL );
266         avl_free( lt->rwmap.rwm_at.map, mapping_free );
267 }
268
269 int
270 meta_back_db_destroy(
271     Backend     *be
272 )
273 {
274         struct metainfo *li;
275
276         if ( be->be_private ) {
277                 int i;
278
279                 li = ( struct metainfo * )be->be_private;
280
281                 /*
282                  * Destroy the connection tree
283                  */
284                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
285
286                 if ( li->conntree ) {
287                         avl_free( li->conntree, conn_free );
288                 }
289
290                 /*
291                  * Destroy the per-target stuff (assuming there's at
292                  * least one ...)
293                  */
294                 for ( i = 0; i < li->ntargets; i++ ) {
295                         target_free( li->targets[ i ] );
296                         free( li->targets[ i ] );
297                 }
298
299                 free( li->targets );
300
301                 ldap_pvt_thread_mutex_lock( &li->cache.mutex );
302                 if ( li->cache.tree ) {
303                         avl_free( li->cache.tree, meta_dncache_free );
304                 }
305                 
306                 ldap_pvt_thread_mutex_unlock( &li->cache.mutex );
307                 ldap_pvt_thread_mutex_destroy( &li->cache.mutex );
308
309                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
310                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
311         }
312
313         free( be->be_private );
314         return 0;
315 }
316