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