]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
first step towards removing back-*/external.h
[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-2004 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 #include "external.h"
29
30 int
31 meta_back_open(
32         BackendInfo *bi
33 )
34 {
35         bi->bi_controls = slap_known_controls;
36         return 0;
37 }
38
39 int
40 meta_back_initialize(
41                 BackendInfo     *bi
42 )
43 {
44         bi->bi_open = meta_back_open;
45         bi->bi_config = 0;
46         bi->bi_close = 0;
47         bi->bi_destroy = 0;
48
49         bi->bi_db_init = meta_back_db_init;
50         bi->bi_db_config = meta_back_db_config;
51         bi->bi_db_open = 0;
52         bi->bi_db_close = 0;
53         bi->bi_db_destroy = meta_back_db_destroy;
54
55         bi->bi_op_bind = meta_back_bind;
56         bi->bi_op_unbind = 0;
57         bi->bi_op_search = meta_back_search;
58         bi->bi_op_compare = meta_back_compare;
59         bi->bi_op_modify = meta_back_modify;
60         bi->bi_op_modrdn = meta_back_modrdn;
61         bi->bi_op_add = meta_back_add;
62         bi->bi_op_delete = meta_back_delete;
63         bi->bi_op_abandon = 0;
64
65         bi->bi_extended = 0;
66
67         bi->bi_chk_referrals = 0;
68
69         bi->bi_connection_init = 0;
70         bi->bi_connection_destroy = meta_back_conn_destroy;
71
72         return 0;
73 }
74
75 int
76 meta_back_db_init(
77                 Backend *be
78 )
79 {
80         struct metainfo *li;
81
82         struct rewrite_info     *rwinfo;
83
84         rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
85         if ( rwinfo == NULL ) {
86                 return -1;
87         }
88
89         li = ch_calloc( 1, sizeof( struct metainfo ) );
90         if ( li == NULL ) {
91                 rewrite_info_delete( &rwinfo );
92                 return -1;
93         }
94
95         /*
96          * At present the default is no default target;
97          * this may change
98          */
99         li->defaulttarget = META_DEFAULT_TARGET_NONE;
100         li->rwinfo = rwinfo;
101
102         ldap_pvt_thread_mutex_init( &li->conn_mutex );
103         ldap_pvt_thread_mutex_init( &li->cache.mutex );
104         be->be_private = li;
105
106         return 0;
107 }
108
109 static void
110 conn_free( 
111         void *v_lc
112 )
113 {
114         struct metaconn *lc = v_lc;
115         struct metasingleconn *lsc;
116
117         for ( lsc = lc->conns; !META_LAST(lsc); lsc++ ) {
118                 if ( lsc->ld != NULL ) {
119                         ldap_unbind( lsc->ld );
120                 }
121                 if ( lsc->bound_dn.bv_val ) {
122                         ber_memfree( lsc->bound_dn.bv_val );
123                 }
124                 if ( lsc->cred.bv_val ) {
125                         memset( lsc->cred.bv_val, 0, lsc->cred.bv_len );
126                         ber_memfree( lsc->cred.bv_val );
127                 }
128         }
129         free( lc->conns );
130         free( lc );
131 }
132
133 static void
134 mapping_free( void *v_mapping )
135 {
136         struct ldapmapping *mapping = v_mapping;
137         ch_free( mapping->src.bv_val );
138         ch_free( mapping->dst.bv_val );
139         ch_free( mapping );
140 }
141
142 static void
143 target_free(
144                 struct metatarget *lt
145 )
146 {
147         if ( lt->uri ) {
148                 free( lt->uri );
149         }
150         if ( lt->psuffix.bv_val ) {
151                 free( lt->psuffix.bv_val );
152         }
153         if ( lt->suffix.bv_val ) {
154                 free( lt->suffix.bv_val );
155         }
156         if ( lt->binddn.bv_val ) {
157                 free( lt->binddn.bv_val );
158         }
159         if ( lt->bindpw.bv_val ) {
160                 free( lt->bindpw.bv_val );
161         }
162         if ( lt->pseudorootdn.bv_val ) {
163                 free( lt->pseudorootdn.bv_val );
164         }
165         if ( lt->pseudorootpw.bv_val ) {
166                 free( lt->pseudorootpw.bv_val );
167         }
168         if ( lt->rwmap.rwm_rw ) {
169                 rewrite_info_delete( &lt->rwmap.rwm_rw );
170         }
171         avl_free( lt->rwmap.rwm_oc.remap, NULL );
172         avl_free( lt->rwmap.rwm_oc.map, mapping_free );
173         avl_free( lt->rwmap.rwm_at.remap, NULL );
174         avl_free( lt->rwmap.rwm_at.map, mapping_free );
175 }
176
177 int
178 meta_back_db_destroy(
179     Backend     *be
180 )
181 {
182         struct metainfo *li;
183
184         if ( be->be_private ) {
185                 int i;
186
187                 li = ( struct metainfo * )be->be_private;
188
189                 /*
190                  * Destroy the connection tree
191                  */
192                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
193
194                 if ( li->conntree ) {
195                         avl_free( li->conntree, conn_free );
196                 }
197
198                 /*
199                  * Destroy the per-target stuff (assuming there's at
200                  * least one ...)
201                  */
202                 for ( i = 0; i < li->ntargets; i++ ) {
203                         target_free( li->targets[ i ] );
204                         free( li->targets[ i ] );
205                 }
206
207                 free( li->targets );
208
209                 ldap_pvt_thread_mutex_lock( &li->cache.mutex );
210                 if ( li->cache.tree ) {
211                         avl_free( li->cache.tree, meta_dncache_free );
212                 }
213                 
214                 ldap_pvt_thread_mutex_unlock( &li->cache.mutex );
215                 ldap_pvt_thread_mutex_destroy( &li->cache.mutex );
216
217                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
218                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
219         }
220
221         free( be->be_private );
222         return 0;
223 }
224
225 #if SLAPD_META == SLAPD_MOD_DYNAMIC
226
227 int
228 init_module( int argc, char *argv[] )
229 {
230         BackendInfo bi;
231
232         memset( &bi, '\0', sizeof( bi ) );
233         bi.bi_type = "meta";
234         bi.bi_init = meta_back_initialize;
235
236         backend_add( &bi );
237
238         return 0;
239 }
240
241 #endif /* SLAPD_META */
242
243