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