]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
Reworked recent backend API changes, now using a separate struct,
[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-2007 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
138         int             i,
139                         not_always = 0,
140                         not_always_anon_proxyauthz = 0,
141                         not_always_anon_non_prescriptive = 0,
142                         rc;
143
144         if ( mi->mi_ntargets == 0 ) {
145                 Debug( LDAP_DEBUG_ANY,
146                         "meta_back_db_open: no targets defined\n",
147                         0, 0, 0 );
148                 return 1;
149         }
150
151         for ( i = 0; i < mi->mi_ntargets; i++ ) {
152                 slap_bindconf   sb = { BER_BVNULL };
153                 metatarget_t    *mt = mi->mi_targets[ i ];
154
155                 ber_str2bv( mt->mt_uri, 0, 0, &sb.sb_uri );
156                 sb.sb_version = mt->mt_version;
157                 sb.sb_method = LDAP_AUTH_SIMPLE;
158                 BER_BVSTR( &sb.sb_binddn, "" );
159
160                 if ( META_BACK_TGT_T_F_DISCOVER( mt ) ) {
161                         rc = slap_discover_feature( &sb,
162                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
163                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
164                         if ( rc == LDAP_COMPARE_TRUE ) {
165                                 mt->mt_flags |= LDAP_BACK_F_T_F;
166                         }
167                 }
168
169                 if ( META_BACK_TGT_CANCEL_DISCOVER( mt ) ) {
170                         rc = slap_discover_feature( &sb,
171                                         slap_schema.si_ad_supportedExtension->ad_cname.bv_val,
172                                         LDAP_EXOP_CANCEL );
173                         if ( rc == LDAP_COMPARE_TRUE ) {
174                                 mt->mt_flags |= LDAP_BACK_F_CANCEL_EXOP;
175                         }
176                 }
177
178                 if ( not_always == 0 ) {
179                         if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_OVERRIDE )
180                                 || mt->mt_idassert_authz != NULL )
181                         {
182                                 not_always = 1;
183                         }
184                 }
185
186                 if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL )
187                         && !( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
188                 {
189                         Debug( LDAP_DEBUG_ANY, "meta_back_db_open(%s): "
190                                 "target #%d inconsistent idassert configuration "
191                                 "(likely authz=\"*\" used with \"non-prescriptive\" flag)\n",
192                                 be->be_suffix[ 0 ].bv_val, i, 0 );
193                         return 1;
194                 }
195
196                 if ( not_always_anon_proxyauthz == 0 ) {
197                         if ( !( mt->mt_idassert_flags & LDAP_BACK_AUTH_AUTHZ_ALL ) )
198                         {
199                                 not_always_anon_proxyauthz = 1;
200                         }
201                 }
202
203                 if ( not_always_anon_non_prescriptive == 0 ) {
204                         if ( ( mt->mt_idassert_flags & LDAP_BACK_AUTH_PRESCRIPTIVE ) )
205                         {
206                                 not_always_anon_non_prescriptive = 1;
207                         }
208                 }
209         }
210
211         if ( not_always == 0 ) {
212                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ALWAYS;
213         }
214
215         if ( not_always_anon_proxyauthz == 0 ) {
216                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_ANON;
217
218         } else if ( not_always_anon_non_prescriptive == 0 ) {
219                 mi->mi_flags |= META_BACK_F_PROXYAUTHZ_NOANON;
220         }
221
222         return 0;
223 }
224
225 /*
226  * meta_back_conn_free()
227  *
228  * actually frees a connection; the reference count must be 0,
229  * and it must not (or no longer) be in the cache.
230  */
231 void
232 meta_back_conn_free( 
233         void            *v_mc )
234 {
235         metaconn_t              *mc = v_mc;
236         int                     ntargets;
237
238         assert( mc != NULL );
239         assert( mc->mc_refcnt == 0 );
240
241         /* at least one must be present... */
242         ntargets = mc->mc_info->mi_ntargets;
243         assert( ntargets > 0 );
244
245         for ( ; ntargets--; ) {
246                 (void)meta_clear_one_candidate( NULL, mc, ntargets );
247         }
248
249         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
250                 free( mc->mc_local_ndn.bv_val );
251         }
252
253         free( mc );
254 }
255
256 static void
257 mapping_free(
258         void            *v_mapping )
259 {
260         struct ldapmapping *mapping = v_mapping;
261         ch_free( mapping->src.bv_val );
262         ch_free( mapping->dst.bv_val );
263         ch_free( mapping );
264 }
265
266 static void
267 mapping_dst_free(
268         void            *v_mapping )
269 {
270         struct ldapmapping *mapping = v_mapping;
271
272         if ( BER_BVISEMPTY( &mapping->dst ) ) {
273                 mapping_free( &mapping[ -1 ] );
274         }
275 }
276
277 static void
278 target_free(
279         metatarget_t    *mt )
280 {
281         if ( mt->mt_uri ) {
282                 free( mt->mt_uri );
283                 ldap_pvt_thread_mutex_destroy( &mt->mt_uri_mutex );
284         }
285         if ( mt->mt_subtree_exclude ) {
286                 ber_bvarray_free( mt->mt_subtree_exclude );
287         }
288         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
289                 free( mt->mt_psuffix.bv_val );
290         }
291         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
292                 free( mt->mt_nsuffix.bv_val );
293         }
294         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
295                 free( mt->mt_binddn.bv_val );
296         }
297         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
298                 free( mt->mt_bindpw.bv_val );
299         }
300         if ( !BER_BVISNULL( &mt->mt_idassert_authcID ) ) {
301                 ch_free( mt->mt_idassert_authcID.bv_val );
302         }
303         if ( !BER_BVISNULL( &mt->mt_idassert_authcDN ) ) {
304                 ch_free( mt->mt_idassert_authcDN.bv_val );
305         }
306         if ( !BER_BVISNULL( &mt->mt_idassert_passwd ) ) {
307                 ch_free( mt->mt_idassert_passwd.bv_val );
308         }
309         if ( !BER_BVISNULL( &mt->mt_idassert_authzID ) ) {
310                 ch_free( mt->mt_idassert_authzID.bv_val );
311         }
312         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_mech ) ) {
313                 ch_free( mt->mt_idassert_sasl_mech.bv_val );
314         }
315         if ( !BER_BVISNULL( &mt->mt_idassert_sasl_realm ) ) {
316                 ch_free( mt->mt_idassert_sasl_realm.bv_val );
317         }
318         if ( mt->mt_idassert_authz != NULL ) {
319                 ber_bvarray_free( mt->mt_idassert_authz );
320         }
321         if ( mt->mt_rwmap.rwm_rw ) {
322                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
323         }
324         avl_free( mt->mt_rwmap.rwm_oc.remap, mapping_dst_free );
325         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
326         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
327         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
328
329         free( mt );
330 }
331
332 int
333 meta_back_db_destroy(
334         Backend         *be,
335         ConfigReply     *cr )
336 {
337         metainfo_t      *mi;
338
339         if ( be->be_private ) {
340                 int i;
341
342                 mi = ( metainfo_t * )be->be_private;
343
344                 /*
345                  * Destroy the connection tree
346                  */
347                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
348
349                 if ( mi->mi_conninfo.lai_tree ) {
350                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
351                 }
352                 for ( i = LDAP_BACK_PCONN_FIRST; i < LDAP_BACK_PCONN_LAST; i++ ) {
353                         while ( !LDAP_TAILQ_EMPTY( &mi->mi_conn_priv[ i ].mic_priv ) ) {
354                                 metaconn_t      *mc = LDAP_TAILQ_FIRST( &mi->mi_conn_priv[ i ].mic_priv );
355
356                                 LDAP_TAILQ_REMOVE( &mi->mi_conn_priv[ i ].mic_priv, mc, mc_q );
357                                 meta_back_conn_free( mc );
358                         }
359                 }
360
361                 /*
362                  * Destroy the per-target stuff (assuming there's at
363                  * least one ...)
364                  */
365                 if ( mi->mi_targets != NULL ) {
366                         for ( i = 0; i < mi->mi_ntargets; i++ ) {
367                                 metatarget_t    *mt = mi->mi_targets[ i ];
368
369                                 if ( META_BACK_TGT_QUARANTINE( mt ) ) {
370                                         if ( mt->mt_quarantine.ri_num != mi->mi_quarantine.ri_num )
371                                         {
372                                                 slap_retry_info_destroy( &mt->mt_quarantine );
373                                         }
374
375                                         ldap_pvt_thread_mutex_destroy( &mt->mt_quarantine_mutex );
376                                 }
377
378                                 target_free( mt );
379                         }
380
381                         free( mi->mi_targets );
382                 }
383
384                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
385                 if ( mi->mi_cache.tree ) {
386                         avl_free( mi->mi_cache.tree, meta_dncache_free );
387                 }
388                 
389                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
390                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
391
392                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
393                 ldap_pvt_thread_mutex_destroy( &mi->mi_conninfo.lai_mutex );
394
395                 if ( mi->mi_candidates != NULL ) {
396                         ber_memfree_x( mi->mi_candidates, NULL );
397                 }
398
399                 if ( META_BACK_QUARANTINE( mi ) ) {
400                         slap_retry_info_destroy( &mi->mi_quarantine );
401                 }
402         }
403
404         free( be->be_private );
405         return 0;
406 }
407
408 #if SLAPD_META == SLAPD_MOD_DYNAMIC
409
410 /* conditionally define the init_module() function */
411 SLAP_BACKEND_INIT_MODULE( meta )
412
413 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
414
415