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