]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/init.c
Moved proxy caching to overlay
[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  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* ACKNOWLEDGEMENTS:
16  * This work was initially developed by the Howard Chu for inclusion
17  * in OpenLDAP Software and subsequently enhanced by Pierangelo
18  * Masarati.
19  */
20 /* This is an altered version */
21 /*
22  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
23  *
24  * This work has been developed to fulfill the requirements
25  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
26  * to the OpenLDAP Foundation in the hope that it may be useful
27  * to the Open Source community, but WITHOUT ANY WARRANTY.
28  *
29  * Permission is granted to anyone to use this software for any purpose
30  * on any computer system, and to alter it and redistribute it, subject
31  * to the following restrictions:
32  *
33  * 1. The author and SysNet s.n.c. are not responsible for the consequences
34  *    of use of this software, no matter how awful, even if they arise from 
35  *    flaws in it.
36  *
37  * 2. The origin of this software must not be misrepresented, either by
38  *    explicit claim or by omission.  Since few users ever read sources,
39  *    credits should appear in the documentation.
40  *
41  * 3. Altered versions must be plainly marked as such, and must not be
42  *    misrepresented as being the original software.  Since few users
43  *    ever read sources, credits should appear in the documentation.
44  *    SysNet s.n.c. cannot be responsible for the consequences of the
45  *    alterations.
46  *
47  * 4. This notice may not be removed or altered.
48  *
49  *
50  * This software is based on the backend back-ldap, implemented
51  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
52  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
53  * contributors. The contribution of the original software to the present
54  * implementation is acknowledged in this copyright statement.
55  *
56  * A special acknowledgement goes to Howard for the overall architecture
57  * (and for borrowing large pieces of code), and to Mark, who implemented
58  * from scratch the attribute/objectclass mapping.
59  *
60  * The original copyright statement follows.
61  *
62  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
63  *
64  * Permission is granted to anyone to use this software for any purpose
65  * on any computer system, and to alter it and redistribute it, subject
66  * to the following restrictions:
67  *
68  * 1. The author is not responsible for the consequences of use of this
69  *    software, no matter how awful, even if they arise from flaws in it.
70  *
71  * 2. The origin of this software must not be misrepresented, either by
72  *    explicit claim or by omission.  Since few users ever read sources,
73  *    credits should appear in the documentation.
74  *
75  * 3. Altered versions must be plainly marked as such, and must not be
76  *    misrepresented as being the original software.  Since few users
77  *    ever read sources, credits should appear in the
78  *    documentation.
79  *
80  * 4. This notice may not be removed or altered.
81  *
82  */
83
84 #include "portable.h"
85
86 #include <stdio.h>
87
88 #include <ac/string.h>
89 #include <ac/socket.h>
90
91 #include "slap.h"
92 #include "../back-ldap/back-ldap.h"
93 #include "back-meta.h"
94
95 #ifdef SLAPD_META_DYNAMIC
96
97 int
98 init_module( int argc, char *argv[] ) {
99     BackendInfo bi;
100
101     memset( &bi, '\0', sizeof( bi ) );
102     bi.bi_type = "meta";
103     bi.bi_init = meta_back_initialize;
104
105     backend_add( &bi );
106     return 0;
107 }
108
109 #endif /* SLAPD_META_DYNAMIC */
110
111 int
112 meta_back_initialize(
113                 BackendInfo     *bi
114 )
115 {
116         bi->bi_controls = slap_known_controls;
117
118         bi->bi_open = 0;
119         bi->bi_config = 0;
120         bi->bi_close = 0;
121         bi->bi_destroy = 0;
122
123         bi->bi_db_init = meta_back_db_init;
124         bi->bi_db_config = meta_back_db_config;
125         bi->bi_db_open = 0;
126         bi->bi_db_close = 0;
127         bi->bi_db_destroy = meta_back_db_destroy;
128
129         bi->bi_op_bind = meta_back_bind;
130         bi->bi_op_unbind = 0;
131         bi->bi_op_search = meta_back_search;
132         bi->bi_op_compare = meta_back_compare;
133         bi->bi_op_modify = meta_back_modify;
134         bi->bi_op_modrdn = meta_back_modrdn;
135         bi->bi_op_add = meta_back_add;
136         bi->bi_op_delete = meta_back_delete;
137         bi->bi_op_abandon = 0;
138
139         bi->bi_extended = 0;
140
141         bi->bi_chk_referrals = 0;
142
143         bi->bi_connection_init = 0;
144         bi->bi_connection_destroy = meta_back_conn_destroy;
145
146         return 0;
147 }
148
149 int
150 meta_back_db_init(
151                 Backend *be
152 )
153 {
154         struct metainfo *li;
155
156         struct rewrite_info     *rwinfo;
157
158         rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
159         if ( rwinfo == NULL ) {
160                 return -1;
161         }
162
163         li = ch_calloc( 1, sizeof( struct metainfo ) );
164         if ( li == NULL ) {
165                 rewrite_info_delete( &rwinfo );
166                 return -1;
167         }
168
169         /*
170          * At present the default is no default target;
171          * this may change
172          */
173         li->defaulttarget = META_DEFAULT_TARGET_NONE;
174         li->rwinfo = rwinfo;
175
176         ldap_pvt_thread_mutex_init( &li->conn_mutex );
177         ldap_pvt_thread_mutex_init( &li->cache.mutex );
178         be->be_private = li;
179
180         return 0;
181 }
182
183 static void
184 conn_free( 
185         void *v_lc
186 )
187 {
188         struct metaconn *lc = v_lc;
189         struct metasingleconn *lsc;
190
191         for ( lsc = lc->conns; !META_LAST(lsc); lsc++ ) {
192                 if ( lsc->ld != NULL ) {
193                         ldap_unbind( lsc->ld );
194                 }
195                 if ( lsc->bound_dn.bv_val ) {
196                         ber_memfree( lsc->bound_dn.bv_val );
197                 }
198                 if ( lsc->cred.bv_val ) {
199                         memset( lsc->cred.bv_val, 0, lsc->cred.bv_len );
200                         ber_memfree( lsc->cred.bv_val );
201                 }
202         }
203         free( lc->conns );
204         free( lc );
205 }
206
207 static void
208 target_free(
209                 struct metatarget *lt
210 )
211 {
212         if ( lt->uri ) {
213                 free( lt->uri );
214         }
215         if ( lt->psuffix.bv_val ) {
216                 free( lt->psuffix.bv_val );
217         }
218         if ( lt->suffix.bv_val ) {
219                 free( lt->suffix.bv_val );
220         }
221         if ( lt->binddn.bv_val ) {
222                 free( lt->binddn.bv_val );
223         }
224         if ( lt->bindpw.bv_val ) {
225                 free( lt->bindpw.bv_val );
226         }
227         if ( lt->pseudorootdn.bv_val ) {
228                 free( lt->pseudorootdn.bv_val );
229         }
230         if ( lt->pseudorootpw.bv_val ) {
231                 free( lt->pseudorootpw.bv_val );
232         }
233         if ( lt->rwmap.rwm_rw ) {
234                 rewrite_info_delete( &lt->rwmap.rwm_rw );
235         }
236         avl_free( lt->rwmap.rwm_oc.remap, NULL );
237         avl_free( lt->rwmap.rwm_oc.map, mapping_free );
238         avl_free( lt->rwmap.rwm_at.remap, NULL );
239         avl_free( lt->rwmap.rwm_at.map, mapping_free );
240 }
241
242 int
243 meta_back_db_destroy(
244     Backend     *be
245 )
246 {
247         struct metainfo *li;
248
249         if ( be->be_private ) {
250                 int i;
251
252                 li = ( struct metainfo * )be->be_private;
253
254                 /*
255                  * Destroy the connection tree
256                  */
257                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
258
259                 if ( li->conntree ) {
260                         avl_free( li->conntree, conn_free );
261                 }
262
263                 /*
264                  * Destroy the per-target stuff (assuming there's at
265                  * least one ...)
266                  */
267                 for ( i = 0; i < li->ntargets; i++ ) {
268                         target_free( li->targets[ i ] );
269                         free( li->targets[ i ] );
270                 }
271
272                 free( li->targets );
273
274                 ldap_pvt_thread_mutex_lock( &li->cache.mutex );
275                 if ( li->cache.tree ) {
276                         avl_free( li->cache.tree, meta_dncache_free );
277                 }
278                 
279                 ldap_pvt_thread_mutex_unlock( &li->cache.mutex );
280                 ldap_pvt_thread_mutex_destroy( &li->cache.mutex );
281
282                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
283                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
284         }
285
286         free( be->be_private );
287         return 0;
288 }
289