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