]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/init.c
cleanup
[openldap] / servers / slapd / back-ldap / init.c
1 /* init.c - initialize ldap backend */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/socket.h>
43
44 #include "slap.h"
45 #include "back-ldap.h"
46
47 #ifdef SLAPD_LDAP_DYNAMIC
48
49 int back_ldap_LTX_init_module(int argc, char *argv[]) {
50     BackendInfo bi;
51
52     memset( &bi, '\0', sizeof(bi) );
53     bi.bi_type = "ldap";
54     bi.bi_init = ldap_back_initialize;
55
56     backend_add(&bi);
57     return 0;
58 }
59
60 #endif /* SLAPD_LDAP_DYNAMIC */
61
62 int
63 ldap_back_initialize(
64     BackendInfo *bi
65 )
66 {
67         bi->bi_controls = slap_known_controls;
68
69         bi->bi_open = 0;
70         bi->bi_config = 0;
71         bi->bi_close = 0;
72         bi->bi_destroy = 0;
73
74         bi->bi_db_init = ldap_back_db_init;
75         bi->bi_db_config = ldap_back_db_config;
76         bi->bi_db_open = 0;
77         bi->bi_db_close = 0;
78         bi->bi_db_destroy = ldap_back_db_destroy;
79
80         bi->bi_op_bind = ldap_back_bind;
81         bi->bi_op_unbind = 0;
82         bi->bi_op_search = ldap_back_search;
83         bi->bi_op_compare = ldap_back_compare;
84         bi->bi_op_modify = ldap_back_modify;
85         bi->bi_op_modrdn = ldap_back_modrdn;
86         bi->bi_op_add = ldap_back_add;
87         bi->bi_op_delete = ldap_back_delete;
88         bi->bi_op_abandon = 0;
89
90         bi->bi_extended = 0;
91
92         bi->bi_acl_group = ldap_back_group;
93         bi->bi_acl_attribute = ldap_back_attribute;
94         bi->bi_chk_referrals = 0;
95
96         bi->bi_connection_init = 0;
97         bi->bi_connection_destroy = ldap_back_conn_destroy;
98
99         return 0;
100 }
101
102 int
103 ldap_back_db_init(
104     Backend     *be
105 )
106 {
107         struct ldapinfo *li;
108         struct ldapmapping *mapping;
109
110         li = (struct ldapinfo *) ch_calloc( 1, sizeof(struct ldapinfo) );
111         if ( li == NULL ) {
112                 return -1;
113         }
114
115 #ifdef ENABLE_REWRITE
116         li->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
117         if ( li->rwinfo == NULL ) {
118                 ch_free( li );
119                 return -1;
120         }
121 #endif /* ENABLE_REWRITE */
122
123         ldap_pvt_thread_mutex_init( &li->conn_mutex );
124
125         ldap_back_map_init( &li->at_map, &mapping );
126
127         be->be_private = li;
128
129         return 0;
130 }
131
132 static void
133 conn_free( 
134         void *v_lc
135 )
136 {
137         struct ldapconn *lc = v_lc;
138         ldap_unbind( lc->ld );
139         if ( lc->bound_dn.bv_val ) {
140                 ch_free( lc->bound_dn.bv_val );
141         }
142         if ( lc->cred.bv_val ) {
143                 ch_free( lc->cred.bv_val );
144         }
145         ch_free( lc );
146 }
147
148 void
149 mapping_free( void *v_mapping )
150 {
151         struct ldapmapping *mapping = v_mapping;
152         ch_free( mapping->src.bv_val );
153         ch_free( mapping->dst.bv_val );
154         ch_free( mapping );
155 }
156
157 int
158 ldap_back_db_destroy(
159     Backend     *be
160 )
161 {
162         struct ldapinfo *li;
163
164         if (be->be_private) {
165                 li = (struct ldapinfo *)be->be_private;
166
167                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
168
169                 if (li->url) {
170                         ch_free(li->url);
171                         li->url = NULL;
172                 }
173                 if (li->binddn) {
174                         ch_free(li->binddn);
175                         li->binddn = NULL;
176                 }
177                 if (li->bindpw) {
178                         ch_free(li->bindpw);
179                         li->bindpw = NULL;
180                 }
181                 if (li->conntree) {
182                         avl_free( li->conntree, conn_free );
183                 }
184 #ifdef ENABLE_REWRITE
185                 if (li->rwinfo) {
186                         rewrite_info_delete( li->rwinfo );
187                 }
188 #else /* !ENABLE_REWRITE */
189                 if (li->suffix_massage) {
190                         ber_bvarray_free( li->suffix_massage );
191                 }
192 #endif /* !ENABLE_REWRITE */
193
194                 avl_free( li->oc_map.remap, NULL );
195                 avl_free( li->oc_map.map, mapping_free );
196                 avl_free( li->at_map.remap, NULL );
197                 avl_free( li->at_map.map, mapping_free );
198                 
199                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
200                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
201         }
202
203         ch_free( be->be_private );
204         return 0;
205 }