]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
move discover function to frontend
[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-2005 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         bi->bi_controls = slap_known_controls;
34         return 0;
35 }
36
37 int
38 meta_back_initialize(
39         BackendInfo     *bi )
40 {
41         bi->bi_open = meta_back_open;
42         bi->bi_config = 0;
43         bi->bi_close = 0;
44         bi->bi_destroy = 0;
45
46         bi->bi_db_init = meta_back_db_init;
47         bi->bi_db_config = meta_back_db_config;
48         bi->bi_db_open = meta_back_db_open;
49         bi->bi_db_close = 0;
50         bi->bi_db_destroy = meta_back_db_destroy;
51
52         bi->bi_op_bind = meta_back_bind;
53         bi->bi_op_unbind = 0;
54         bi->bi_op_search = meta_back_search;
55         bi->bi_op_compare = meta_back_compare;
56         bi->bi_op_modify = meta_back_modify;
57         bi->bi_op_modrdn = meta_back_modrdn;
58         bi->bi_op_add = meta_back_add;
59         bi->bi_op_delete = meta_back_delete;
60         bi->bi_op_abandon = 0;
61
62         bi->bi_extended = 0;
63
64         bi->bi_chk_referrals = 0;
65
66         bi->bi_connection_init = 0;
67         bi->bi_connection_destroy = meta_back_conn_destroy;
68
69         return 0;
70 }
71
72 int
73 meta_back_db_init(
74         Backend         *be )
75 {
76         metainfo_t      *mi;
77
78         mi = ch_malloc( sizeof( metainfo_t ) );
79         if ( mi == NULL ) {
80                 return -1;
81         }
82         memset( mi, 0, sizeof( metainfo_t ) );
83
84         /*
85          * At present the default is no default target;
86          * this may change
87          */
88         mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
89
90         ldap_pvt_thread_mutex_init( &mi->mi_conn_mutex );
91         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
92
93         /* safe default */
94         mi->mi_nretries = META_RETRY_DEFAULT;
95         mi->mi_version = LDAP_VERSION3;
96         
97         be->be_private = mi;
98
99         return 0;
100 }
101
102 int
103 meta_back_db_open(
104         Backend         *be )
105 {
106         metainfo_t      *mi = (metainfo_t *)be->be_private;
107
108         int             i, rc;
109
110         for ( i = 0; i < mi->mi_ntargets; i++ ) {
111                 if ( mi->mi_targets[ i ].mt_flags & LDAP_BACK_F_SUPPORT_T_F_DISCOVER ) {
112                         mi->mi_targets[ i ].mt_flags &= ~LDAP_BACK_F_SUPPORT_T_F_DISCOVER;
113                         rc = slap_discover_feature( mi->mi_targets[ i ].mt_uri,
114                                         mi->mi_targets[ i ].mt_version,
115                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
116                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
117                         if ( rc == LDAP_COMPARE_TRUE ) {
118                                 mi->mi_targets[ i ].mt_flags |= LDAP_BACK_F_SUPPORT_T_F;
119                         }
120                 }
121         }
122
123         return 0;
124 }
125
126 static void
127 conn_free( 
128         void            *v_mc )
129 {
130         metaconn_t              *mc = v_mc;
131         metasingleconn_t        *msc;
132
133         assert( mc->mc_conns != NULL );
134
135         for ( msc = &mc->mc_conns[ 0 ]; !META_LAST( msc ); msc++ ) {
136                 if ( msc->msc_ld != NULL ) {
137                         ldap_unbind_ext_s( msc->msc_ld, NULL, NULL );
138                 }
139                 if ( !BER_BVISNULL( &msc->msc_bound_ndn ) ) {
140                         ber_memfree( msc->msc_bound_ndn.bv_val );
141                 }
142                 if ( !BER_BVISNULL( &msc->msc_cred ) ) {
143                         /* destroy sensitive data */
144                         memset( msc->msc_cred.bv_val, 0, msc->msc_cred.bv_len );
145                         ber_memfree( msc->msc_cred.bv_val );
146                 }
147         }
148
149         free( mc );
150 }
151
152 static void
153 mapping_free(
154         void            *v_mapping )
155 {
156         struct ldapmapping *mapping = v_mapping;
157         ch_free( mapping->src.bv_val );
158         ch_free( mapping->dst.bv_val );
159         ch_free( mapping );
160 }
161
162 static void
163 target_free(
164         metatarget_t    *mt )
165 {
166         if ( mt->mt_uri ) {
167                 free( mt->mt_uri );
168         }
169         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
170                 free( mt->mt_psuffix.bv_val );
171         }
172         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
173                 free( mt->mt_nsuffix.bv_val );
174         }
175         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
176                 free( mt->mt_binddn.bv_val );
177         }
178         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
179                 free( mt->mt_bindpw.bv_val );
180         }
181         if ( !BER_BVISNULL( &mt->mt_pseudorootdn ) ) {
182                 free( mt->mt_pseudorootdn.bv_val );
183         }
184         if ( !BER_BVISNULL( &mt->mt_pseudorootpw ) ) {
185                 free( mt->mt_pseudorootpw.bv_val );
186         }
187         if ( mt->mt_rwmap.rwm_rw ) {
188                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
189         }
190         avl_free( mt->mt_rwmap.rwm_oc.remap, NULL );
191         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
192         avl_free( mt->mt_rwmap.rwm_at.remap, NULL );
193         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
194 }
195
196 int
197 meta_back_db_destroy(
198         Backend         *be )
199 {
200         metainfo_t      *mi;
201
202         if ( be->be_private ) {
203                 int i;
204
205                 mi = ( metainfo_t * )be->be_private;
206
207                 /*
208                  * Destroy the connection tree
209                  */
210                 ldap_pvt_thread_mutex_lock( &mi->mi_conn_mutex );
211
212                 if ( mi->mi_conntree ) {
213                         avl_free( mi->mi_conntree, conn_free );
214                 }
215
216                 /*
217                  * Destroy the per-target stuff (assuming there's at
218                  * least one ...)
219                  */
220                 for ( i = 0; i < mi->mi_ntargets; i++ ) {
221                         target_free( &mi->mi_targets[ i ] );
222                 }
223
224                 free( mi->mi_targets );
225
226                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
227                 if ( mi->mi_cache.tree ) {
228                         avl_free( mi->mi_cache.tree, meta_dncache_free );
229                 }
230                 
231                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
232                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
233
234                 ldap_pvt_thread_mutex_unlock( &mi->mi_conn_mutex );
235                 ldap_pvt_thread_mutex_destroy( &mi->mi_conn_mutex );
236
237                 if ( mi->mi_candidates != NULL ) {
238                         ber_memfree_x( mi->mi_candidates, NULL );
239                 }
240         }
241
242         free( be->be_private );
243         return 0;
244 }
245
246 #if SLAPD_META == SLAPD_MOD_DYNAMIC
247
248 /* conditionally define the init_module() function */
249 SLAP_BACKEND_INIT_MODULE( meta )
250
251 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
252
253