]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/init.c
fix for select_backend suggested G. Gombas (ITS 1090)
[openldap] / servers / slapd / back-ldap / init.c
1 /* init.c - initialize ldap backend */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-1999 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_open = 0;
68         bi->bi_config = 0;
69         bi->bi_close = 0;
70         bi->bi_destroy = 0;
71
72         bi->bi_db_init = ldap_back_db_init;
73         bi->bi_db_config = ldap_back_db_config;
74         bi->bi_db_open = 0;
75         bi->bi_db_close = 0;
76         bi->bi_db_destroy = ldap_back_db_destroy;
77
78         bi->bi_op_bind = ldap_back_bind;
79         bi->bi_op_unbind = 0;
80         bi->bi_op_search = ldap_back_search;
81         bi->bi_op_compare = ldap_back_compare;
82         bi->bi_op_modify = ldap_back_modify;
83         bi->bi_op_modrdn = ldap_back_modrdn;
84         bi->bi_op_add = ldap_back_add;
85         bi->bi_op_delete = ldap_back_delete;
86         bi->bi_op_abandon = 0;
87
88         bi->bi_extended = 0;
89
90         bi->bi_acl_group = ldap_back_group;
91         bi->bi_acl_attribute = ldap_back_attribute;
92         bi->bi_chk_referrals = 0;
93
94         bi->bi_connection_init = 0;
95         bi->bi_connection_destroy = ldap_back_conn_destroy;
96
97         return 0;
98 }
99
100 int
101 ldap_back_db_init(
102     Backend     *be
103 )
104 {
105         struct ldapinfo *li;
106         struct ldapmapping *mapping;
107
108         li = (struct ldapinfo *) ch_calloc( 1, sizeof(struct ldapinfo) );
109         ldap_pvt_thread_mutex_init( &li->conn_mutex );
110
111         mapping = (struct ldapmapping *)ch_calloc( 2, sizeof(struct ldapmapping) );
112         if ( mapping != NULL ) {
113                 mapping->src = ch_strdup("objectclass");
114                 mapping->dst = ch_strdup("objectclass");
115                 mapping[1].src = mapping->src;
116                 mapping[1].dst = mapping->dst;
117
118                 avl_insert( &li->at_map.map, (caddr_t)mapping,
119                                         mapping_cmp, mapping_dup );
120                 avl_insert( &li->at_map.remap, (caddr_t)&mapping[1],
121                                         mapping_cmp, mapping_dup );
122         }
123
124         be->be_private = li;
125
126         return li == NULL;
127 }
128
129 static void
130 conn_free( 
131         struct ldapconn *lc
132 )
133 {
134         ldap_unbind(lc->ld);
135         if ( lc->bound_dn) free( lc->bound_dn );
136         free( lc );
137 }
138
139 static void
140 mapping_free ( struct ldapmapping *mapping )
141 {
142         ch_free( mapping->src );
143         ch_free( mapping->dst );
144         ch_free( mapping );
145 }
146
147 int
148 ldap_back_db_destroy(
149     Backend     *be
150 )
151 {
152         struct ldapinfo *li;
153
154         if (be->be_private) {
155                 li = (struct ldapinfo *)be->be_private;
156
157                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
158
159                 if (li->url) {
160                         free(li->url);
161                         li->url = NULL;
162                 }
163                 if (li->binddn) {
164                         free(li->binddn);
165                         li->binddn = NULL;
166                 }
167                 if (li->bindpw) {
168                         free(li->bindpw);
169                         li->bindpw = NULL;
170                 }
171                 if (li->suffix_massage) {
172                         ldap_value_free( li->suffix_massage );
173                         li->suffix_massage = NULL;
174                 }
175                 if (li->conntree) {
176                         avl_free( li->conntree, (AVL_FREE) conn_free );
177                 }
178
179                 avl_free( li->oc_map.remap, NULL );
180                 avl_free( li->oc_map.map, (AVL_FREE) mapping_free );
181                 avl_free( li->at_map.remap, NULL );
182                 avl_free( li->at_map.map, (AVL_FREE) mapping_free );
183                 
184                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
185                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
186         }
187
188         free( be->be_private );
189         return 0;
190 }