]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
slightly reduce malloc overhead; minor cleanup
[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 {
34         bi->bi_controls = slap_known_controls;
35         return 0;
36 }
37
38 int
39 meta_back_initialize(
40                 BackendInfo     *bi
41 )
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 = 0;
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 {
79         struct metainfo *li;
80
81         li = ch_calloc( 1, sizeof( struct metainfo ) );
82         if ( li == NULL ) {
83                 return -1;
84         }
85
86         /*
87          * At present the default is no default target;
88          * this may change
89          */
90         li->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
91
92         ldap_pvt_thread_mutex_init( &li->mi_conn_mutex );
93         ldap_pvt_thread_mutex_init( &li->mi_cache.mutex );
94         be->be_private = li;
95
96         return 0;
97 }
98
99 static void
100 conn_free( 
101         void *v_lc
102 )
103 {
104         struct metaconn         *lc = v_lc;
105         struct metasingleconn   *lsc;
106
107         assert( lc->mc_conns != NULL );
108
109         for ( lsc = &lc->mc_conns[ 0 ]; !META_LAST( lsc ); lsc++ ) {
110                 if ( lsc->msc_ld != NULL ) {
111                         ldap_unbind_ext_s( lsc->msc_ld, NULL, NULL );
112                 }
113                 if ( !BER_BVISNULL( &lsc->msc_bound_ndn ) ) {
114                         ber_memfree( lsc->msc_bound_ndn.bv_val );
115                 }
116                 if ( !BER_BVISNULL( &lsc->msc_cred ) ) {
117                         /* destroy sensitive data */
118                         memset( lsc->msc_cred.bv_val, 0, lsc->msc_cred.bv_len );
119                         ber_memfree( lsc->msc_cred.bv_val );
120                 }
121         }
122
123         free( lc );
124 }
125
126 static void
127 mapping_free( void *v_mapping )
128 {
129         struct ldapmapping *mapping = v_mapping;
130         ch_free( mapping->src.bv_val );
131         ch_free( mapping->dst.bv_val );
132         ch_free( mapping );
133 }
134
135 static void
136 target_free(
137                 struct metatarget *lt
138 )
139 {
140         if ( lt->mt_uri ) {
141                 free( lt->mt_uri );
142         }
143         if ( !BER_BVISNULL( &lt->mt_psuffix ) ) {
144                 free( lt->mt_psuffix.bv_val );
145         }
146         if ( !BER_BVISNULL( &lt->mt_nsuffix ) ) {
147                 free( lt->mt_nsuffix.bv_val );
148         }
149         if ( !BER_BVISNULL( &lt->mt_binddn ) ) {
150                 free( lt->mt_binddn.bv_val );
151         }
152         if ( !BER_BVISNULL( &lt->mt_bindpw ) ) {
153                 free( lt->mt_bindpw.bv_val );
154         }
155         if ( !BER_BVISNULL( &lt->mt_pseudorootdn ) ) {
156                 free( lt->mt_pseudorootdn.bv_val );
157         }
158         if ( !BER_BVISNULL( &lt->mt_pseudorootpw ) ) {
159                 free( lt->mt_pseudorootpw.bv_val );
160         }
161         if ( lt->mt_rwmap.rwm_rw ) {
162                 rewrite_info_delete( &lt->mt_rwmap.rwm_rw );
163         }
164         avl_free( lt->mt_rwmap.rwm_oc.remap, NULL );
165         avl_free( lt->mt_rwmap.rwm_oc.map, mapping_free );
166         avl_free( lt->mt_rwmap.rwm_at.remap, NULL );
167         avl_free( lt->mt_rwmap.rwm_at.map, mapping_free );
168 }
169
170 int
171 meta_back_db_destroy(
172     Backend     *be
173 )
174 {
175         struct metainfo *li;
176
177         if ( be->be_private ) {
178                 int i;
179
180                 li = ( struct metainfo * )be->be_private;
181
182                 /*
183                  * Destroy the connection tree
184                  */
185                 ldap_pvt_thread_mutex_lock( &li->mi_conn_mutex );
186
187                 if ( li->mi_conntree ) {
188                         avl_free( li->mi_conntree, conn_free );
189                 }
190
191                 /*
192                  * Destroy the per-target stuff (assuming there's at
193                  * least one ...)
194                  */
195                 for ( i = 0; i < li->mi_ntargets; i++ ) {
196                         target_free( li->mi_targets[ i ] );
197                         free( li->mi_targets[ i ] );
198                 }
199
200                 free( li->mi_targets );
201
202                 ldap_pvt_thread_mutex_lock( &li->mi_cache.mutex );
203                 if ( li->mi_cache.tree ) {
204                         avl_free( li->mi_cache.tree, meta_dncache_free );
205                 }
206                 
207                 ldap_pvt_thread_mutex_unlock( &li->mi_cache.mutex );
208                 ldap_pvt_thread_mutex_destroy( &li->mi_cache.mutex );
209
210                 ldap_pvt_thread_mutex_unlock( &li->mi_conn_mutex );
211                 ldap_pvt_thread_mutex_destroy( &li->mi_conn_mutex );
212
213                 if ( li->mi_candidates != NULL ) {
214                         ber_memfree_x( li->mi_candidates, NULL );
215                 }
216         }
217
218         free( be->be_private );
219         return 0;
220 }
221
222 #if SLAPD_META == SLAPD_MOD_DYNAMIC
223
224 /* conditionally define the init_module() function */
225 SLAP_BACKEND_INIT_MODULE( meta )
226
227 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
228
229