]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
- add support for "use-temporary-conn" much like back-ldap
[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,
129                         not_always = 0,
130                         rc;
131
132         for ( i = 0; i < mi->mi_ntargets; i++ ) {
133                 slap_bindconf   sb = { 0 };
134                 metatarget_t    *mt = mi->mi_targets[ i ];
135
136                 ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri );
137                 sb.sb_version = mt->mt_version;
138                 sb.sb_method = LDAP_AUTH_SIMPLE;
139                 BER_BVSTR( &sb.sb_binddn, "" );
140
141                 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) {
142                         rc = slap_discover_feature( &sb,
143                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
144                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
145                         if ( rc == LDAP_COMPARE_TRUE ) {
146                                 mt->mt_flags |= LDAP_BACK_F_T_F;
147                         }
148                 }
149
150                 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) {
151                         rc = slap_discover_feature( &sb,
152                                         slap_schema.si_ad_supportedExtension->ad_cname.bv_val,
153                                         LDAP_EXOP_CANCEL );
154                         if ( rc == LDAP_COMPARE_TRUE ) {
155                                 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP;
156                         }
157                 }
158
159                 if ( not_always == 0 ) {
160                         if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE )
161                                 || !( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) )
162                         {
163                                 not_always = 1;
164                         }
165                 }
166         }
167
168         if ( not_always == 0 ) {
169                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ALWAYS;
170         }
171
172         return 0;
173 }
174
175 /*
176  * meta_back_conn_free()
177  *
178  * actually frees a connection; the reference count must be 0,
179  * and it must not (or no longer) be in the cache.
180  */
181 void
182 meta_back_conn_free( 
183         void            *v_mc )
184 {
185         metaconn_t              *mc = v_mc;
186         int                     ntargets;
187
188         assert( mc != NULL );
189         assert( mc->mc_refcnt == 0 );
190
191         /* at least one must be present... */
192         ntargets = mc->mc_info->mi_ntargets;
193         assert( ntargets > 0 );
194
195         for ( ; ntargets--; ) {
196                 (void)meta_clear_one_candidate( NULL, mc, ntargets );
197         }
198
199         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
200                 free( mc->mc_local_ndn.bv_val );
201         }
202
203         free( mc );
204 }
205
206 static void
207 mapping_free(
208         void            *v_mapping )
209 {
210         struct ldapmapping *mapping = v_mapping;
211         ch_free( mapping->src.bv_val );
212         ch_free( mapping->dst.bv_val );
213         ch_free( mapping );
214 }
215
216 static void
217 mapping_dst_free(
218         void            *v_mapping )
219 {
220         struct ldapmapping *mapping = v_mapping;
221
222         if ( BER_BVISEMPTY( &mapping->dst ) ) {
223                 mapping_free( &mapping[ -1 ] );
224         }
225 }
226
227 static void
228 target_free(
229         metatarget_t    *mt )
230 {
231         if ( mt->mt_uri ) {
232                 free( mt->mt_uri );
233                 ldap_pvt_thread_mutex_destroy( &mt->mt_uri_mutex );
234         }
235         if ( mt->mt_subtree_exclude ) {
236                 ber_bvarray_free( mt->mt_subtree_exclude );
237         }
238         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
239                 free( mt->mt_psuffix.bv_val );
240         }
241         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
242                 free( mt->mt_nsuffix.bv_val );
243         }
244         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
245                 free( mt->mt_binddn.bv_val );
246         }
247         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
248                 free( mt->mt_bindpw.bv_val );
249         }
250         if ( !BER_BVISNULL( &mt->mt_idassert_authcID ) ) {
251                 ch_free( mt->mt_idassert_authcID.bv_val );
252         }
253         if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
254                 ch_free( mt->mt_idassert_authcDN.bv_val );
255         }
256         if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
257                 ch_free( mt->mt_idassert_passwd.bv_val );
258         }
259         if ( !BER_BVISNULL( &mt->mt_idassert_authzID ) ) {
260                 ch_free( mt->mt_idassert_authzID.bv_val );
261         }
262         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_mech ) ) {
263                 ch_free( mt->mt_idassert_sasl_mech.bv_val );
264         }
265         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_realm ) ) {
266                 ch_free( mt->mt_idassert_sasl_realm.bv_val );
267         }
268         if ( mt->mt_idassert_authz != NULL ) {
269                 ber_bvarray_free( mt->mt_idassert_authz );
270         }
271         if ( mt->mt_rwmap.rwm_rw ) {
272                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
273         }
274         avl_free( mt->mt_rwmap.rwm_oc.remap, mapping_dst_free );
275         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
276         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
277         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
278
279         free( mt );
280 }
281
282 int
283 meta_back_db_destroy(
284         Backend         *be )
285 {
286         metainfo_t      *mi;
287
288         if ( be->be_private ) {
289                 int i;
290
291                 mi = ( metainfo_t * )be->be_private;
292
293                 /*
294                  * Destroy the connection tree
295                  */
296                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
297
298                 if ( mi->mi_conninfo.lai_tree ) {
299                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
300                 }
301
302                 /*
303                  * Destroy the per-target stuff (assuming there's at
304                  * least one ...)
305                  */
306                 if ( mi->mi_targets != NULL ) {
307                         for ( i = 0; i < mi->mi_ntargets; i++ ) {
308                                 metatarget_t    *mt = mi->mi_targets[ i ];
309
310                                 if ( META_BACK_TGT_QUARANTINE( mt ) ) {
311                                         if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num )
312                                         {
313                                                 slap_retry_info_destroy( &mt->mt_quarantine );
314                                         }
315
316                                         ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex );
317                                 }
318
319                                 target_free( mt );
320                         }
321
322                         free( mi->mi_targets );
323                 }
324
325                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
326                 if ( mi->mi_cache.tree ) {
327                         avl_free( mi->mi_cache.tree, meta_dncache_free );
328                 }
329                 
330                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
331                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
332
333                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
334                 ldap_pvt_thread_mutex_destroy( &mi->mi_conninfo.lai_mutex );
335
336                 if ( mi->mi_candidates != NULL ) {
337                         ber_memfree_x( mi->mi_candidates, NULL );
338                 }
339
340                 if ( META_BACK_QUARANTINE( mi ) ) {
341                         slap_retry_info_destroy( &mi->mi_quarantine );
342                 }
343         }
344
345         free( be->be_private );
346         return 0;
347 }
348
349 #if SLAPD_META == SLAPD_MOD_DYNAMIC
350
351 /* conditionally define the init_module() function */
352 SLAP_BACKEND_INIT_MODULE( meta )
353
354 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
355
356