]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
use slab memory for proxyauthz
[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-2006 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_flags =
44 #if 0
45         /* this is not (yet) set essentially because back-meta does not
46          * directly support extended operations... */
47 #ifdef LDAP_DYNAMIC_OBJECTS
48                 /* this is set because all the support a proxy has to provide
49                  * is the capability to forward the refresh exop, and to
50                  * pass thru entries that contain the dynamicObject class
51                  * and the entryTtl attribute */
52                 SLAP_BFLAG_DYNAMIC |
53 #endif /* LDAP_DYNAMIC_OBJECTS */
54 #endif
55                 0;
56
57         bi->bi_open = meta_back_open;
58         bi->bi_config = 0;
59         bi->bi_close = 0;
60         bi->bi_destroy = 0;
61
62         bi->bi_db_init = meta_back_db_init;
63         bi->bi_db_config = meta_back_db_config;
64         bi->bi_db_open = meta_back_db_open;
65         bi->bi_db_close = 0;
66         bi->bi_db_destroy = meta_back_db_destroy;
67
68         bi->bi_op_bind = meta_back_bind;
69         bi->bi_op_unbind = 0;
70         bi->bi_op_search = meta_back_search;
71         bi->bi_op_compare = meta_back_compare;
72         bi->bi_op_modify = meta_back_modify;
73         bi->bi_op_modrdn = meta_back_modrdn;
74         bi->bi_op_add = meta_back_add;
75         bi->bi_op_delete = meta_back_delete;
76         bi->bi_op_abandon = 0;
77
78         bi->bi_extended = 0;
79
80         bi->bi_chk_referrals = 0;
81
82         bi->bi_connection_init = 0;
83         bi->bi_connection_destroy = meta_back_conn_destroy;
84
85         return 0;
86 }
87
88 int
89 meta_back_db_init(
90         Backend         *be )
91 {
92         metainfo_t      *mi;
93
94         mi = ch_calloc( 1, sizeof( metainfo_t ) );
95         if ( mi == NULL ) {
96                 return -1;
97         }
98
99         /*
100          * At present the default is no default target;
101          * this may change
102          */
103         mi->mi_defaulttarget = META_DEFAULT_TARGET_NONE;
104         mi->mi_bind_timeout.tv_sec = 0;
105         mi->mi_bind_timeout.tv_usec = META_BIND_TIMEOUT;
106
107         ldap_pvt_thread_mutex_init( &mi->mi_conninfo.lai_mutex );
108         ldap_pvt_thread_mutex_init( &mi->mi_cache.mutex );
109
110         /* safe default */
111         mi->mi_nretries = META_RETRY_DEFAULT;
112         mi->mi_version = LDAP_VERSION3;
113         
114         be->be_private = mi;
115
116         return 0;
117 }
118
119 int
120 meta_back_db_open(
121         Backend         *be )
122 {
123         metainfo_t      *mi = (metainfo_t *)be->be_private;
124
125         int             i, rc;
126
127         for ( i = 0; i < mi->mi_ntargets; i++ ) {
128                 if ( mi->mi_targets[ i ].mt_flags & LDAP_BACK_F_SUPPORT_T_F_DISCOVER )
129                 {
130                         mi->mi_targets[ i ].mt_flags &= ~LDAP_BACK_F_SUPPORT_T_F_DISCOVER;
131                         rc = slap_discover_feature( mi->mi_targets[ i ].mt_uri,
132                                         mi->mi_targets[ i ].mt_version,
133                                         slap_schema.si_ad_supportedFeatures->ad_cname.bv_val,
134                                         LDAP_FEATURE_ABSOLUTE_FILTERS );
135                         if ( rc == LDAP_COMPARE_TRUE ) {
136                                 mi->mi_targets[ i ].mt_flags |= LDAP_BACK_F_SUPPORT_T_F;
137                         }
138                 }
139         }
140
141         return 0;
142 }
143
144 void
145 meta_back_conn_free( 
146         void            *v_mc )
147 {
148         metaconn_t              *mc = v_mc;
149         int                     i, ntargets;
150
151         assert( mc != NULL );
152         assert( mc->mc_refcnt == 0 );
153
154         if ( !BER_BVISNULL( &mc->mc_local_ndn ) ) {
155                 free( mc->mc_local_ndn.bv_val );
156         }
157
158         assert( mc->mc_conns != NULL );
159
160         /* at least one must be present... */
161         ntargets = mc->mc_conns[ 0 ].msc_info->mi_ntargets;
162
163         for ( i = 0; i < ntargets; i++ ) {
164                 (void)meta_clear_one_candidate( &mc->mc_conns[ i ] );
165         }
166
167         ldap_pvt_thread_mutex_destroy( &mc->mc_mutex );
168         free( mc );
169 }
170
171 static void
172 mapping_free(
173         void            *v_mapping )
174 {
175         struct ldapmapping *mapping = v_mapping;
176         ch_free( mapping->src.bv_val );
177         ch_free( mapping->dst.bv_val );
178         ch_free( mapping );
179 }
180
181 static void
182 mapping_dst_free(
183         void            *v_mapping )
184 {
185         struct ldapmapping *mapping = v_mapping;
186
187         if ( BER_BVISEMPTY( &mapping->dst ) ) {
188                 mapping_free( &mapping[ -1 ] );
189         }
190 }
191
192 static void
193 target_free(
194         metatarget_t    *mt )
195 {
196         if ( mt->mt_uri ) {
197                 free( mt->mt_uri );
198         }
199         if ( !BER_BVISNULL( &mt->mt_psuffix ) ) {
200                 free( mt->mt_psuffix.bv_val );
201         }
202         if ( !BER_BVISNULL( &mt->mt_nsuffix ) ) {
203                 free( mt->mt_nsuffix.bv_val );
204         }
205         if ( !BER_BVISNULL( &mt->mt_binddn ) ) {
206                 free( mt->mt_binddn.bv_val );
207         }
208         if ( !BER_BVISNULL( &mt->mt_bindpw ) ) {
209                 free( mt->mt_bindpw.bv_val );
210         }
211         if ( !BER_BVISNULL( &mt->mt_pseudorootdn ) ) {
212                 free( mt->mt_pseudorootdn.bv_val );
213         }
214         if ( !BER_BVISNULL( &mt->mt_pseudorootpw ) ) {
215                 free( mt->mt_pseudorootpw.bv_val );
216         }
217         if ( mt->mt_rwmap.rwm_rw ) {
218                 rewrite_info_delete( &mt->mt_rwmap.rwm_rw );
219         }
220         avl_free( mt->mt_rwmap.rwm_oc.remap, mapping_dst_free );
221         avl_free( mt->mt_rwmap.rwm_oc.map, mapping_free );
222         avl_free( mt->mt_rwmap.rwm_at.remap, mapping_dst_free );
223         avl_free( mt->mt_rwmap.rwm_at.map, mapping_free );
224 }
225
226 int
227 meta_back_db_destroy(
228         Backend         *be )
229 {
230         metainfo_t      *mi;
231
232         if ( be->be_private ) {
233                 int i;
234
235                 mi = ( metainfo_t * )be->be_private;
236
237                 /*
238                  * Destroy the connection tree
239                  */
240                 ldap_pvt_thread_mutex_lock( &mi->mi_conninfo.lai_mutex );
241
242                 if ( mi->mi_conninfo.lai_tree ) {
243                         avl_free( mi->mi_conninfo.lai_tree, meta_back_conn_free );
244                 }
245
246                 /*
247                  * Destroy the per-target stuff (assuming there's at
248                  * least one ...)
249                  */
250                 if ( mi->mi_targets != NULL ) {
251                         for ( i = 0; i < mi->mi_ntargets; i++ ) {
252                                 target_free( &mi->mi_targets[ i ] );
253                         }
254
255                         free( mi->mi_targets );
256                 }
257
258                 ldap_pvt_thread_mutex_lock( &mi->mi_cache.mutex );
259                 if ( mi->mi_cache.tree ) {
260                         avl_free( mi->mi_cache.tree, meta_dncache_free );
261                 }
262                 
263                 ldap_pvt_thread_mutex_unlock( &mi->mi_cache.mutex );
264                 ldap_pvt_thread_mutex_destroy( &mi->mi_cache.mutex );
265
266                 ldap_pvt_thread_mutex_unlock( &mi->mi_conninfo.lai_mutex );
267                 ldap_pvt_thread_mutex_destroy( &mi->mi_conninfo.lai_mutex );
268
269                 if ( mi->mi_candidates != NULL ) {
270                         ber_memfree_x( mi->mi_candidates, NULL );
271                 }
272         }
273
274         free( be->be_private );
275         return 0;
276 }
277
278 #if SLAPD_META == SLAPD_MOD_DYNAMIC
279
280 /* conditionally define the init_module() function */
281 SLAP_BACKEND_INIT_MODULE( meta )
282
283 #endif /* SLAPD_META == SLAPD_MOD_DYNAMIC */
284
285