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