]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/init.c
Update copyright statements
[openldap] / servers / slapd / back-ldap / init.c
1 /* init.c - initialize ldap backend */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2002 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         if ( li == NULL ) {
110                 return -1;
111         }
112
113 #ifdef ENABLE_REWRITE
114         li->rwinfo = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
115         if ( li->rwinfo == NULL ) {
116                 ch_free( li );
117                 return -1;
118         }
119 #endif /* ENABLE_REWRITE */
120
121         ldap_pvt_thread_mutex_init( &li->conn_mutex );
122
123         ldap_back_map_init( &li->at_map, &mapping );
124
125         be->be_private = li;
126
127         return 0;
128 }
129
130 static void
131 conn_free( 
132         struct ldapconn *lc
133 )
134 {
135         ldap_unbind(lc->ld);
136         if ( lc->bound_dn.bv_val) free( lc->bound_dn.bv_val );
137         free( lc );
138 }
139
140 void
141 mapping_free ( struct ldapmapping *mapping )
142 {
143         ch_free( mapping->src.bv_val );
144         ch_free( mapping->dst.bv_val );
145         ch_free( mapping );
146 }
147
148 int
149 ldap_back_db_destroy(
150     Backend     *be
151 )
152 {
153         struct ldapinfo *li;
154
155         if (be->be_private) {
156                 li = (struct ldapinfo *)be->be_private;
157
158                 ldap_pvt_thread_mutex_lock( &li->conn_mutex );
159
160                 if (li->url) {
161                         free(li->url);
162                         li->url = NULL;
163                 }
164                 if (li->binddn) {
165                         free(li->binddn);
166                         li->binddn = NULL;
167                 }
168                 if (li->bindpw) {
169                         free(li->bindpw);
170                         li->bindpw = NULL;
171                 }
172                 if (li->conntree) {
173                         avl_free( li->conntree, (AVL_FREE) conn_free );
174                 }
175 #ifdef ENABLE_REWRITE
176                 if (li->rwinfo) {
177                         rewrite_info_delete( li->rwinfo );
178                 }
179 #else /* !ENABLE_REWRITE */
180                 if (li->suffix_massage) {
181                         ber_bvecfree( li->suffix_massage );
182                 }
183 #endif /* !ENABLE_REWRITE */
184
185                 avl_free( li->oc_map.remap, NULL );
186                 avl_free( li->oc_map.map, (AVL_FREE) mapping_free );
187                 avl_free( li->at_map.remap, NULL );
188                 avl_free( li->at_map.map, (AVL_FREE) mapping_free );
189                 
190                 ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
191                 ldap_pvt_thread_mutex_destroy( &li->conn_mutex );
192         }
193
194         free( be->be_private );
195         return 0;
196 }