]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
fix ITS#4071
[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         /* 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
80         mi = ch_malloc( sizeof( metainfo_t ) );
81         if ( mi == NULL ) {
82                 return -1;
83         }
84         memset( mi, 0, sizeof( metainfo_t ) );
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
92         ldap_pvt_thread_mutex_init( &mi->mi_conn_mutex );
93         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
94
95         /* safe default */
96         mi->mi_nretries = META_RETRY_DEFAULT;
97         mi->mi_version = LDAP_VERSION3;
98         
99         be->be_private = mi;
100
101         return 0;
102 }
103
104 int
105 meta_back_db_open(
106         Backend         *be )
107 {
108         metainfo_t      *mi = (metainfo_t *)be->be_private;
109
110         int             i, rc;
111
112         for ( i = 0; i < mi->mi_ntargets; i++ ) {
113                 if ( mi->mi_targets[ i ].mt_flags & LDAP_BACK_F_SUPPORT_T_F_DISCOVER )
114                 {
115                         mi->mi_targets[ i ].mt_flags &= ~LDAP_BACK_F_SUPPORT_T_F_DISCOVER;
116                         rc = slap_discover_feature( mi->mi_targets[ i ].mt_uri,
117                                         mi->mi_targets[ i ].mt_version,
118                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
119                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
120                         if ( rc == LDAP_COMPARE_TRUE ) {
121                                 mi->mi_targets[ i ].mt_flags |= LDAP_BACK_F_SUPPORT_T_F;
122                         }
123                 }
124         }
125
126         return 0;
127 }
128
129 void
130 meta_back_conn_free( 
131         void            *v_mc )
132 {
133         metaconn_t              *mc = v_mc;
134         int                     i, ntargets;
135
136         assert( mc != NULL );
137         assert( mc->mc_refcnt == 0 );
138
139         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
140                 free( mc->mc_local_ndn.bv_val );
141         }
142
143         assert( mc->mc_conns != NULL );
144
145         /* at least one must be present... */
146         ntargets = mc->mc_conns[ 0 ].msc_info->mi_ntargets;
147
148         for ( i = 0; i < ntargets; i++ ) {
149                 metasingleconn_t        *msc = &mc->mc_conns[ i ];
150
151                 if ( msc->msc_ld != NULL ) {
152                         ldap_unbind_ext_s( msc->msc_ld, NULL, NULL );
153                 }
154
155                 if ( !BER_BVISNULL( &msc->msc_bound_ndn ) ) {
156                         ber_memfree( msc->msc_bound_ndn.bv_val );
157                 }
158
159                 if ( !BER_BVISNULL( &msc->msc_cred ) ) {
160                         /* destroy sensitive data */
161                         memset( msc->msc_cred.bv_val, 0, msc->msc_cred.bv_len );
162                         ber_memfree( msc->msc_cred.bv_val );
163                 }
164         }
165
166         ldap_pvt_thread_mutex_destroy( &mc->mc_mutex );
167         free( mc );
168 }
169
170 static void
171 mapping_free(
172         void            *v_mapping )
173 {
174         struct ldapmapping *mapping = v_mapping;
175         ch_free( mapping->src.bv_val );
176         ch_free( mapping->dst.bv_val );
177         ch_free( mapping );
178 }
179
180 static void
181 target_free(
182         metatarget_t    *mt )
183 {
184         if ( mt->mt_uri ) {
185                 free( mt->mt_uri );
186         }
187         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
188                 free( mt->mt_psuffix.bv_val );
189         }
190         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
191                 free( mt->mt_nsuffix.bv_val );
192         }
193         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
194                 free( mt->mt_binddn.bv_val );
195         }
196         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
197                 free( mt->mt_bindpw.bv_val );
198         }
199         if ( !BER_BVISNULL( &mt->mt_pseudorootdn ) ) {
200                 free( mt->mt_pseudorootdn.bv_val );
201         }
202         if ( !BER_BVISNULL( &mt->mt_pseudorootpw ) ) {
203                 free( mt->mt_pseudorootpw.bv_val );
204         }
205         if ( mt->mt_rwmap.rwm_rw ) {
206                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
207         }
208         avl_free( mt->mt_rwmap.rwm_oc.remap, NULL );
209         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
210         avl_free( mt->mt_rwmap.rwm_at.remap, NULL );
211         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
212 }
213
214 int
215 meta_back_db_destroy(
216         Backend         *be )
217 {
218         metainfo_t      *mi;
219
220         if ( be->be_private ) {
221                 int i;
222
223                 mi = ( metainfo_t * )be->be_private;
224
225                 /*
226                  * Destroy the connection tree
227                  */
228                 ldap_pvt_thread_mutex_lock( &mi->mi_conn_mutex );
229
230                 if ( mi->mi_conntree ) {
231                         avl_free( mi->mi_conntree, meta_back_conn_free );
232                 }
233
234                 /*
235                  * Destroy the per-target stuff (assuming there's at
236                  * least one ...)
237                  */
238                 for ( i = 0; i < mi->mi_ntargets; i++ ) {
239                         target_free( &mi->mi_targets[ i ] );
240                 }
241
242                 free( mi->mi_targets );
243
244                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
245                 if ( mi->mi_cache.tree ) {
246                         avl_free( mi->mi_cache.tree, meta_dncache_free );
247                 }
248                 
249                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
250                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
251
252                 ldap_pvt_thread_mutex_unlock( &mi->mi_conn_mutex );
253                 ldap_pvt_thread_mutex_destroy( &mi->mi_conn_mutex );
254
255                 if ( mi->mi_candidates != NULL ) {
256                         ber_memfree_x( mi->mi_candidates, NULL );
257                 }
258         }
259
260         free( be->be_private );
261         return 0;
262 }
263
264 #if SLAPD_META == SLAPD_MOD_DYNAMIC
265
266 /* conditionally define the init_module() function */
267 SLAP_BACKEND_INIT_MODULE( meta )
268
269 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
270
271