]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
- setup framework for monitoring of back-bdb/back-hdb stuff in their
[openldap] / servers / slapd / back-meta / init.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2006 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/string.h>
23 #include <ac/socket.h>
24
25 #include "slap.h"
26 #include "../back-ldap/back-ldap.h"
27 #include "back-meta.h"
28
29 int
30 meta_back_open(
31         BackendInfo     *bi )
32 {
33         /* FIXME: need to remove the pagedResults, and likely more... */
34         bi->bi_controls = slap_known_controls;
35
36         return 0;
37 }
38
39 int
40 meta_back_initialize(
41         BackendInfo     *bi )
42 {
43         bi->bi_flags =
44 #if 0
45         /* this is not (yet) set essentially because back-meta does not
46          * directly support extended operations... */
47 #ifdef LDAP_DYNAMIC_OBJECTS
48                 /* this is set because all the support a proxy has to provide
49                  * is the capability to forward the refresh exop, and to
50                  * pass thru entries that contain the dynamicObject class
51                  * and the entryTtl attribute */
52                 SLAP_BFLAG_DYNAMIC |
53 #endif /* LDAP_DYNAMIC_OBJECTS */
54 #endif
55                 0;
56
57         bi->bi_open = meta_back_open;
58         bi->bi_config = 0;
59         bi->bi_close = 0;
60         bi->bi_destroy = 0;
61
62         bi->bi_db_init = meta_back_db_init;
63         bi->bi_db_config = meta_back_db_config;
64         bi->bi_db_open = meta_back_db_open;
65         bi->bi_db_close = 0;
66         bi->bi_db_destroy = meta_back_db_destroy;
67
68         bi->bi_op_bind = meta_back_bind;
69         bi->bi_op_unbind = 0;
70         bi->bi_op_search = meta_back_search;
71         bi->bi_op_compare = meta_back_compare;
72         bi->bi_op_modify = meta_back_modify;
73         bi->bi_op_modrdn = meta_back_modrdn;
74         bi->bi_op_add = meta_back_add;
75         bi->bi_op_delete = meta_back_delete;
76         bi->bi_op_abandon = 0;
77
78         bi->bi_extended = 0;
79
80         bi->bi_chk_referrals = 0;
81
82         bi->bi_connection_init = 0;
83         bi->bi_connection_destroy = meta_back_conn_destroy;
84
85         return 0;
86 }
87
88 int
89 meta_back_db_init(
90         Backend         *be )
91 {
92         metainfo_t      *mi;
93
94         mi = ch_calloc( 1, sizeof( metainfo_t ) );
95         if ( mi == NULL ) {
96                 return -1;
97         }
98
99         /*
100          * At present the default is no default target;
101          * this may change
102          */
103         mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
104         mi->mi_bind_timeout.tv_sec = 0;
105         mi->mi_bind_timeout.tv_usec = META_BIND_TIMEOUT;
106
107         mi->mi_rebind_f = meta_back_default_rebind;
108         mi->mi_urllist_f = meta_back_default_urllist;
109
110         ldap_pvt_thread_mutex_init( &mi->mi_conninfo.lai_mutex );
111         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
112
113         /* safe default */
114         mi->mi_nretries = META_RETRY_DEFAULT;
115         mi->mi_version = LDAP_VERSION3;
116         
117         be->be_private = mi;
118
119         return 0;
120 }
121
122 int
123 meta_back_db_open(
124         Backend         *be )
125 {
126         metainfo_t      *mi = (metainfo_t *)be->be_private;
127
128         int             i, rc;
129
130         for ( i = 0; i < mi->mi_ntargets; i++ ) {
131                 metatarget_t    *mt = mi->mi_targets[ i ];
132
133                 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) {
134                         rc = slap_discover_feature( mt->mt_uri,
135                                         mt->mt_version,
136                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
137                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
138                         if ( rc == LDAP_COMPARE_TRUE ) {
139                                 mt->mt_flags |= LDAP_BACK_F_T_F;
140                         }
141                 }
142
143                 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) {
144                         rc = slap_discover_feature( mt->mt_uri,
145                                         mt->mt_version,
146                                         slap_schema.si_ad_supportedExtension->ad_cname.bv_val,
147                                         LDAP_EXOP_CANCEL );
148                         if ( rc == LDAP_COMPARE_TRUE ) {
149                                 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP;
150                         }
151                 }
152         }
153
154         return 0;
155 }
156
157 /*
158  * meta_back_conn_free()
159  *
160  * actually frees a connection; the reference count must be 0,
161  * and it must not (or no longer) be in the cache.
162  */
163 void
164 meta_back_conn_free( 
165         void            *v_mc )
166 {
167         metaconn_t              *mc = v_mc;
168         int                     ntargets;
169
170         assert( mc != NULL );
171         assert( mc->mc_refcnt == 0 );
172
173         /* at least one must be present... */
174         assert( mc->mc_conns != NULL );
175         ntargets = mc->mc_conns[ 0 ].msc_info->mi_ntargets;
176         assert( ntargets > 0 );
177
178         for ( ; ntargets--; ) {
179                 (void)meta_clear_one_candidate( &mc->mc_conns[ ntargets ] );
180         }
181
182         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
183                 free( mc->mc_local_ndn.bv_val );
184         }
185
186         free( mc );
187 }
188
189 static void
190 mapping_free(
191         void            *v_mapping )
192 {
193         struct ldapmapping *mapping = v_mapping;
194         ch_free( mapping->src.bv_val );
195         ch_free( mapping->dst.bv_val );
196         ch_free( mapping );
197 }
198
199 static void
200 mapping_dst_free(
201         void            *v_mapping )
202 {
203         struct ldapmapping *mapping = v_mapping;
204
205         if ( BER_BVISEMPTY( &mapping->dst ) ) {
206                 mapping_free( &mapping[ -1 ] );
207         }
208 }
209
210 static void
211 target_free(
212         metatarget_t    *mt )
213 {
214         if ( mt->mt_uri ) {
215                 free( mt->mt_uri );
216                 ldap_pvt_thread_mutex_destroy( &mt->mt_uri_mutex );
217         }
218         if ( mt->mt_subtree_exclude ) {
219                 ber_bvarray_free( mt->mt_subtree_exclude );
220         }
221         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
222                 free( mt->mt_psuffix.bv_val );
223         }
224         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
225                 free( mt->mt_nsuffix.bv_val );
226         }
227         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
228                 free( mt->mt_binddn.bv_val );
229         }
230         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
231                 free( mt->mt_bindpw.bv_val );
232         }
233         if ( !BER_BVISNULL( &mt->mt_idassert_authcID ) ) {
234                 ch_free( mt->mt_idassert_authcID.bv_val );
235         }
236         if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
237                 ch_free( mt->mt_idassert_authcDN.bv_val );
238         }
239         if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
240                 ch_free( mt->mt_idassert_passwd.bv_val );
241         }
242         if ( !BER_BVISNULL( &mt->mt_idassert_authzID ) ) {
243                 ch_free( mt->mt_idassert_authzID.bv_val );
244         }
245         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_mech ) ) {
246                 ch_free( mt->mt_idassert_sasl_mech.bv_val );
247         }
248         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_realm ) ) {
249                 ch_free( mt->mt_idassert_sasl_realm.bv_val );
250         }
251         if ( mt->mt_idassert_authz != NULL ) {
252                 ber_bvarray_free( mt->mt_idassert_authz );
253         }
254         if ( mt->mt_rwmap.rwm_rw ) {
255                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
256         }
257         avl_free( mt->mt_rwmap.rwm_oc.remap, mapping_dst_free );
258         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
259         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
260         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
261
262         free( mt );
263 }
264
265 int
266 meta_back_db_destroy(
267         Backend         *be )
268 {
269         metainfo_t      *mi;
270
271         if ( be->be_private ) {
272                 int i;
273
274                 mi = ( metainfo_t * )be->be_private;
275
276                 /*
277                  * Destroy the connection tree
278                  */
279                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
280
281                 if ( mi->mi_conninfo.lai_tree ) {
282                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
283                 }
284
285                 /*
286                  * Destroy the per-target stuff (assuming there's at
287                  * least one ...)
288                  */
289                 if ( mi->mi_targets != NULL ) {
290                         for ( i = 0; i < mi->mi_ntargets; i++ ) {
291                                 metatarget_t    *mt = mi->mi_targets[ i ];
292
293                                 if ( META_BACK_TGT_QUARANTINE( mt ) ) {
294                                         if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num )
295                                         {
296                                                 slap_retry_info_destroy( &mt->mt_quarantine );
297                                         }
298
299                                         ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex );
300                                 }
301
302                                 target_free( mt );
303                         }
304
305                         free( mi->mi_targets );
306                 }
307
308                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
309                 if ( mi->mi_cache.tree ) {
310                         avl_free( mi->mi_cache.tree, meta_dncache_free );
311                 }
312                 
313                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
314                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
315
316                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
317                 ldap_pvt_thread_mutex_destroy( &mi->mi_conninfo.lai_mutex );
318
319                 if ( mi->mi_candidates != NULL ) {
320                         ber_memfree_x( mi->mi_candidates, NULL );
321                 }
322
323                 if ( META_BACK_QUARANTINE( mi ) ) {
324                         slap_retry_info_destroy( &mi->mi_quarantine );
325                 }
326         }
327
328         free( be->be_private );
329         return 0;
330 }
331
332 #if SLAPD_META == SLAPD_MOD_DYNAMIC
333
334 /* conditionally define the init_module() function */
335 SLAP_BACKEND_INIT_MODULE( meta )
336
337 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
338
339