]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
ITS#5355 use bi_extra instead of calling directly into 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-2008 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 "config.h"
27 #include "../back-ldap/back-ldap.h"
28 #include "back-meta.h"
29
30 int
31 meta_back_open(
32         BackendInfo     *bi )
33 {
34         /* FIXME: need to remove the pagedResults, and likely more... */
35         bi->bi_controls = slap_known_controls;
36
37         return 0;
38 }
39
40 int
41 meta_back_initialize(
42         BackendInfo     *bi )
43 {
44         bi->bi_flags =
45 #if 0
46         /* this is not (yet) set essentially because back-meta does not
47          * directly support extended operations... */
48 #ifdef LDAP_DYNAMIC_OBJECTS
49                 /* this is set because all the support a proxy has to provide
50                  * is the capability to forward the refresh exop, and to
51                  * pass thru entries that contain the dynamicObject class
52                  * and the entryTtl attribute */
53                 SLAP_BFLAG_DYNAMIC |
54 #endif /* LDAP_DYNAMIC_OBJECTS */
55 #endif
56                 0;
57
58         bi->bi_open = meta_back_open;
59         bi->bi_config = 0;
60         bi->bi_close = 0;
61         bi->bi_destroy = 0;
62
63         bi->bi_db_init = meta_back_db_init;
64         bi->bi_db_config = meta_back_db_config;
65         bi->bi_db_open = meta_back_db_open;
66         bi->bi_db_close = 0;
67         bi->bi_db_destroy = meta_back_db_destroy;
68
69         bi->bi_op_bind = meta_back_bind;
70         bi->bi_op_unbind = 0;
71         bi->bi_op_search = meta_back_search;
72         bi->bi_op_compare = meta_back_compare;
73         bi->bi_op_modify = meta_back_modify;
74         bi->bi_op_modrdn = meta_back_modrdn;
75         bi->bi_op_add = meta_back_add;
76         bi->bi_op_delete = meta_back_delete;
77         bi->bi_op_abandon = 0;
78
79         bi->bi_extended = 0;
80
81         bi->bi_chk_referrals = 0;
82
83         bi->bi_connection_init = 0;
84         bi->bi_connection_destroy = meta_back_conn_destroy;
85
86         return 0;
87 }
88
89 int
90 meta_back_db_init(
91         Backend         *be,
92         ConfigReply     *cr)
93 {
94         metainfo_t      *mi;
95         int             i;
96
97         mi = ch_calloc( 1, sizeof( metainfo_t ) );
98         if ( mi == NULL ) {
99                 return -1;
100         }
101
102         /*
103          * At present the default is no default target;
104          * this may change
105          */
106         mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
107         mi->mi_bind_timeout.tv_sec = 0;
108         mi->mi_bind_timeout.tv_usec = META_BIND_TIMEOUT;
109
110         mi->mi_rebind_f = meta_back_default_rebind;
111         mi->mi_urllist_f = meta_back_default_urllist;
112
113         ldap_pvt_thread_mutex_init( &mi->mi_conninfo.lai_mutex );
114         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
115
116         /* safe default */
117         mi->mi_nretries = META_RETRY_DEFAULT;
118         mi->mi_version = LDAP_VERSION3;
119
120         for ( i = LDAP_BACK_PCONN_FIRST; i < LDAP_BACK_PCONN_LAST; i++ ) {
121                 mi->mi_conn_priv[ i ].mic_num = 0;
122                 LDAP_TAILQ_INIT( &mi->mi_conn_priv[ i ].mic_priv );
123         }
124         mi->mi_conn_priv_max = LDAP_BACK_CONN_PRIV_DEFAULT;
125         
126         be->be_private = mi;
127
128         return 0;
129 }
130
131 int
132 meta_back_db_open(
133         Backend         *be,
134         ConfigReply     *cr )
135 {
136         metainfo_t      *mi = (metainfo_t *)be->be_private;
137         BackendInfo *bi;
138
139         int             i,
140                         not_always = 0,
141                         not_always_anon_proxyauthz = 0,
142                         not_always_anon_non_prescriptive = 0,
143                         rc;
144
145         if ( mi->mi_ntargets == 0 ) {
146                 Debug( LDAP_DEBUG_ANY,
147                         "meta_back_db_open: no targets defined\n",
148                         0, 0, 0 );
149                 return 1;
150         }
151
152         bi = backend_info( "ldap" );
153         if ( !bi || !bi->bi_extra ) {
154                 Debug( LDAP_DEBUG_ANY,
155                         "meta_back_db_open: needs back-ldap\n",
156                         0, 0, 0 );
157                 return 1;
158         }
159         mi->mi_ldap_extra = (ldap_extra_t *)bi->bi_extra;
160
161         for ( i = 0; i < mi->mi_ntargets; i++ ) {
162                 slap_bindconf   sb = { BER_BVNULL };
163                 metatarget_t    *mt = mi->mi_targets[ i ];
164
165                 ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri );
166                 sb.sb_version = mt->mt_version;
167                 sb.sb_method = LDAP_AUTH_SIMPLE;
168                 BER_BVSTR( &sb.sb_binddn, "" );
169
170                 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) {
171                         rc = slap_discover_feature( &sb,
172                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
173                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
174                         if ( rc == LDAP_COMPARE_TRUE ) {
175                                 mt->mt_flags |= LDAP_BACK_F_T_F;
176                         }
177                 }
178
179                 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) {
180                         rc = slap_discover_feature( &sb,
181                                         slap_schema.si_ad_supportedExtension->ad_cname.bv_val,
182                                         LDAP_EXOP_CANCEL );
183                         if ( rc == LDAP_COMPARE_TRUE ) {
184                                 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP;
185                         }
186                 }
187
188                 if ( not_always == 0 ) {
189                         if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE )
190                                 || mt->mt_idassert_authz != NULL )
191                         {
192                                 not_always = 1;
193                         }
194                 }
195
196                 if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL )
197                         && !( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
198                 {
199                         Debug( LDAP_DEBUG_ANY, "meta_back_db_open(%s): "
200                                 "target #%d inconsistent idassert configuration "
201                                 "(likely authz=\"*\" used with \"non-prescriptive\" flag)\n",
202                                 be->be_suffix[ 0 ].bv_val, i, 0 );
203                         return 1;
204                 }
205
206                 if ( not_always_anon_proxyauthz == 0 ) {
207                         if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) )
208                         {
209                                 not_always_anon_proxyauthz = 1;
210                         }
211                 }
212
213                 if ( not_always_anon_non_prescriptive == 0 ) {
214                         if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
215                         {
216                                 not_always_anon_non_prescriptive = 1;
217                         }
218                 }
219         }
220
221         if ( not_always == 0 ) {
222                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ALWAYS;
223         }
224
225         if ( not_always_anon_proxyauthz == 0 ) {
226                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ANON;
227
228         } else if ( not_always_anon_non_prescriptive == 0 ) {
229                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_NOANON;
230         }
231
232         return 0;
233 }
234
235 /*
236  * meta_back_conn_free()
237  *
238  * actually frees a connection; the reference count must be 0,
239  * and it must not (or no longer) be in the cache.
240  */
241 void
242 meta_back_conn_free( 
243         void            *v_mc )
244 {
245         metaconn_t              *mc = v_mc;
246         int                     ntargets;
247
248         assert( mc != NULL );
249         assert( mc->mc_refcnt == 0 );
250
251         /* at least one must be present... */
252         ntargets = mc->mc_info->mi_ntargets;
253         assert( ntargets > 0 );
254
255         for ( ; ntargets--; ) {
256                 (void)meta_clear_one_candidate( NULL, mc, ntargets );
257         }
258
259         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
260                 free( mc->mc_local_ndn.bv_val );
261         }
262
263         free( mc );
264 }
265
266 static void
267 mapping_free(
268         void            *v_mapping )
269 {
270         struct ldapmapping *mapping = v_mapping;
271         ch_free( mapping->src.bv_val );
272         ch_free( mapping->dst.bv_val );
273         ch_free( mapping );
274 }
275
276 static void
277 mapping_dst_free(
278         void            *v_mapping )
279 {
280         struct ldapmapping *mapping = v_mapping;
281
282         if ( BER_BVISEMPTY( &mapping->dst ) ) {
283                 mapping_free( &mapping[ -1 ] );
284         }
285 }
286
287 static void
288 target_free(
289         metatarget_t    *mt )
290 {
291         if ( mt->mt_uri ) {
292                 free( mt->mt_uri );
293                 ldap_pvt_thread_mutex_destroy( &mt->mt_uri_mutex );
294         }
295         if ( mt->mt_subtree_exclude ) {
296                 ber_bvarray_free( mt->mt_subtree_exclude );
297         }
298         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
299                 free( mt->mt_psuffix.bv_val );
300         }
301         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
302                 free( mt->mt_nsuffix.bv_val );
303         }
304         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
305                 free( mt->mt_binddn.bv_val );
306         }
307         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
308                 free( mt->mt_bindpw.bv_val );
309         }
310         if ( !BER_BVISNULL( &mt->mt_idassert_authcID ) ) {
311                 ch_free( mt->mt_idassert_authcID.bv_val );
312         }
313         if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
314                 ch_free( mt->mt_idassert_authcDN.bv_val );
315         }
316         if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
317                 ch_free( mt->mt_idassert_passwd.bv_val );
318         }
319         if ( !BER_BVISNULL( &mt->mt_idassert_authzID ) ) {
320                 ch_free( mt->mt_idassert_authzID.bv_val );
321         }
322         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_mech ) ) {
323                 ch_free( mt->mt_idassert_sasl_mech.bv_val );
324         }
325         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_realm ) ) {
326                 ch_free( mt->mt_idassert_sasl_realm.bv_val );
327         }
328         if ( mt->mt_idassert_authz != NULL ) {
329                 ber_bvarray_free( mt->mt_idassert_authz );
330         }
331         if ( mt->mt_rwmap.rwm_rw ) {
332                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
333         }
334         avl_free( mt->mt_rwmap.rwm_oc.remap, mapping_dst_free );
335         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
336         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
337         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
338
339         free( mt );
340 }
341
342 int
343 meta_back_db_destroy(
344         Backend         *be,
345         ConfigReply     *cr )
346 {
347         metainfo_t      *mi;
348
349         if ( be->be_private ) {
350                 int i;
351
352                 mi = ( metainfo_t * )be->be_private;
353
354                 /*
355                  * Destroy the connection tree
356                  */
357                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
358
359                 if ( mi->mi_conninfo.lai_tree ) {
360                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
361                 }
362                 for ( i = LDAP_BACK_PCONN_FIRST; i < LDAP_BACK_PCONN_LAST; i++ ) {
363                         while ( !LDAP_TAILQ_EMPTY( &mi->mi_conn_priv[ i ].mic_priv ) ) {
364                                 metaconn_t      *mc = LDAP_TAILQ_FIRST( &mi->mi_conn_priv[ i ].mic_priv );
365
366                                 LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ i ].mic_priv, mc, mc_q );
367                                 meta_back_conn_free( mc );
368                         }
369                 }
370
371                 /*
372                  * Destroy the per-target stuff (assuming there's at
373                  * least one ...)
374                  */
375                 if ( mi->mi_targets != NULL ) {
376                         for ( i = 0; i < mi->mi_ntargets; i++ ) {
377                                 metatarget_t    *mt = mi->mi_targets[ i ];
378
379                                 if ( META_BACK_TGT_QUARANTINE( mt ) ) {
380                                         if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num )
381                                         {
382                                                 slap_retry_info_destroy( &mt->mt_quarantine );
383                                         }
384
385                                         ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex );
386                                 }
387
388                                 target_free( mt );
389                         }
390
391                         free( mi->mi_targets );
392                 }
393
394                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
395                 if ( mi->mi_cache.tree ) {
396                         avl_free( mi->mi_cache.tree, meta_dncache_free );
397                 }
398                 
399                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
400                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
401
402                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
403                 ldap_pvt_thread_mutex_destroy( &mi->mi_conninfo.lai_mutex );
404
405                 if ( mi->mi_candidates != NULL ) {
406                         ber_memfree_x( mi->mi_candidates, NULL );
407                 }
408
409                 if ( META_BACK_QUARANTINE( mi ) ) {
410                         slap_retry_info_destroy( &mi->mi_quarantine );
411                 }
412         }
413
414         free( be->be_private );
415         return 0;
416 }
417
418 #if SLAPD_META == SLAPD_MOD_DYNAMIC
419
420 /* conditionally define the init_module() function */
421 SLAP_BACKEND_INIT_MODULE( meta )
422
423 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
424
425