]> git.sur5r.net Git - openldap/blob - servers/slapd/backover.c
Cleanup unknown config directive handling.
[openldap] / servers / slapd / backover.c
1 /* backover.c - backend overlay routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 /* Functions to overlay other modules over a backend. */
18
19 #include "portable.h"
20
21 #include <stdio.h>
22
23 #include <ac/string.h>
24 #include <ac/socket.h>
25
26 #define SLAPD_TOOLS
27 #include "slap.h"
28
29 static slap_overinst *overlays;
30
31 enum db_which { db_open = 0, db_close, db_destroy };
32
33 static int
34 over_db_func(
35         BackendDB *be,
36         enum db_which which
37 )
38 {
39         slap_overinfo *oi = (slap_overinfo *) be->bd_info;
40         slap_overinst *on = oi->oi_list;
41         BackendDB bd;
42         BI_db_open **func;
43         int rc = 0;
44
45         func = &oi->oi_bd.bd_info->bi_db_open;
46         if ( func[which] ) {
47                 rc = func[which]( &oi->oi_bd );
48                 if ( rc ) return rc;
49         }
50
51         bd = *be;
52         for (; on; on=on->on_next) {
53                 bd.bd_info = &on->on_bi;
54                 func = &on->on_bi.bi_db_open;
55                 if (func[which]) {
56                         rc = func[which]( &bd );
57                         if ( rc ) break;
58                 }
59         }
60         return rc;
61 }
62
63 static int
64 over_db_config(
65         BackendDB *be,
66         const char *fname,
67         int lineno,
68         int argc,
69         char **argv
70 )
71 {
72         slap_overinfo *oi = (slap_overinfo *) be->bd_info;
73         slap_overinst *on = oi->oi_list;
74         BackendDB bd;
75         int rc = 0;
76
77         if ( oi->oi_bd.bd_info->bi_db_config ) {
78                 rc = oi->oi_bd.bd_info->bi_db_config( &oi->oi_bd, fname, lineno,
79                         argc, argv );
80                 if ( rc != SLAP_CONF_UNKNOWN ) return rc;
81         }
82
83         bd = *be;
84         for (; on; on=on->on_next) {
85                 bd.bd_info = &on->on_bi;
86                 if (on->on_bi.bi_db_config) {
87                         rc = on->on_bi.bi_db_config( &bd, fname, lineno,
88                                 argc, argv );
89                         if ( rc != SLAP_CONF_UNKNOWN ) break;
90                 }
91         }
92         return rc;
93 }
94
95 static int
96 over_db_open(
97         BackendDB *be
98 )
99 {
100         return over_db_func( be, db_open );
101 }
102
103 static int
104 over_db_close(
105         BackendDB *be
106 )
107 {
108         return over_db_func( be, db_close );
109 }
110
111 static int
112 over_db_destroy(
113         BackendDB *be
114 )
115 {
116         slap_overinfo *oi = (slap_overinfo *) be->bd_info;
117         slap_overinst *on = oi->oi_list, *next;
118         int rc;
119
120         rc = over_db_func( be, db_destroy );
121
122         for (next = on->on_next; on; on=next) {
123                 next = on->on_next;
124                 free( on );
125         }
126         free( oi );
127         return rc;
128 }
129
130 static int
131 over_back_response ( Operation *op, SlapReply *rs )
132 {
133         slap_overinfo *oi = (slap_overinfo *) op->o_bd->bd_info;
134         slap_overinst *on = oi->oi_list;
135         int rc = SLAP_CB_CONTINUE;
136         BackendDB *be = op->o_bd, db = *op->o_bd;
137         slap_callback *sc = op->o_callback->sc_private;
138         slap_callback *s0 = op->o_callback;
139
140         op->o_bd = &db;
141         op->o_callback = sc;
142         for (; on; on=on->on_next ) {
143                 if ( on->on_response ) {
144                         db.bd_info = (BackendInfo *)on;
145                         rc = on->on_response( op, rs );
146                         if ( rc != SLAP_CB_CONTINUE ) break;
147                 }
148         }
149         if ( sc && (rc == SLAP_CB_CONTINUE) ) {
150                 rc = sc->sc_response( op, rs );
151         }
152         op->o_bd = be;
153         op->o_callback = s0;
154         return rc;
155 }
156
157 enum op_which { op_bind = 0, op_unbind, op_search, op_compare,
158         op_modify, op_modrdn, op_add, op_delete, op_abandon,
159         op_cancel, op_extended };
160
161 static int
162 over_op_func(
163         Operation *op,
164         SlapReply *rs,
165         enum op_which which
166 )
167 {
168         slap_overinfo *oi = (slap_overinfo *) op->o_bd->bd_info;
169         slap_overinst *on = oi->oi_list;
170         BI_op_bind **func;
171         BackendDB *be = op->o_bd, db = *op->o_bd;
172         slap_callback cb = {over_back_response, NULL};
173         int rc = SLAP_CB_CONTINUE;
174
175         op->o_bd = &db;
176         cb.sc_private = op->o_callback;
177         op->o_callback = &cb;
178
179         for (; on; on=on->on_next ) {
180                 func = &on->on_bi.bi_op_bind;
181                 if ( func[which] ) {
182                         db.bd_info = (BackendInfo *)on;
183                         rc = func[which]( op, rs );
184                         if ( rc != SLAP_CB_CONTINUE ) break;
185                 }
186         }
187
188         op->o_bd = be;
189         func = &oi->oi_bd.bd_info->bi_op_bind;
190         if ( func[which] && rc == SLAP_CB_CONTINUE ) {
191                 rc = func[which]( op, rs );
192         }
193         /* should not fall thru this far without anything happening... */
194         if ( rc == SLAP_CB_CONTINUE ) {
195                 rc = LDAP_UNWILLING_TO_PERFORM;
196         }
197         op->o_callback = cb.sc_private;
198         return rc;
199 }
200
201 static int
202 over_op_bind( Operation *op, SlapReply *rs )
203 {
204         return over_op_func( op, rs, op_bind );
205 }
206
207 static int
208 over_op_unbind( Operation *op, SlapReply *rs )
209 {
210         return over_op_func( op, rs, op_unbind );
211 }
212
213 static int
214 over_op_search( Operation *op, SlapReply *rs )
215 {
216         return over_op_func( op, rs, op_search );
217 }
218
219 static int
220 over_op_compare( Operation *op, SlapReply *rs )
221 {
222         return over_op_func( op, rs, op_compare );
223 }
224
225 static int
226 over_op_modify( Operation *op, SlapReply *rs )
227 {
228         return over_op_func( op, rs, op_modify );
229 }
230
231 static int
232 over_op_modrdn( Operation *op, SlapReply *rs )
233 {
234         return over_op_func( op, rs, op_modrdn );
235 }
236
237 static int
238 over_op_add( Operation *op, SlapReply *rs )
239 {
240         return over_op_func( op, rs, op_add );
241 }
242
243 static int
244 over_op_delete( Operation *op, SlapReply *rs )
245 {
246         return over_op_func( op, rs, op_delete );
247 }
248
249 static int
250 over_op_abandon( Operation *op, SlapReply *rs )
251 {
252         return over_op_func( op, rs, op_abandon );
253 }
254
255 static int
256 over_op_cancel( Operation *op, SlapReply *rs )
257 {
258         return over_op_func( op, rs, op_cancel );
259 }
260
261 static int
262 over_op_extended( Operation *op, SlapReply *rs )
263 {
264         return over_op_func( op, rs, op_extended );
265 }
266
267 int
268 overlay_register(
269         slap_overinst *on
270 )
271 {
272         on->on_next = overlays;
273         overlays = on;
274         return 0;
275 }
276
277 static const char overtype[] = "over";
278
279 /* add an overlay to a particular backend. */
280 int
281 overlay_config( BackendDB *be, const char *ov )
282 {
283         slap_overinst *on, *on2, *prev;
284         slap_overinfo *oi;
285         BackendInfo *bi;
286
287         for ( on = overlays; on; on=on->on_next ) {
288                 if (!strcmp( ov, on->on_bi.bi_type ) )
289                         break;
290         }
291         if (!on) {
292                 Debug( LDAP_DEBUG_ANY, "overlay %s not found\n", ov, 0, 0 );
293                 return 1;
294         }
295
296         /* If this is the first overlay on this backend, set up the
297          * overlay info structure
298          */
299         if ( be->bd_info->bi_type != overtype ) {
300                 oi = ch_malloc( sizeof(slap_overinfo) );
301                 oi->oi_bd = *be;
302                 oi->oi_bi = *be->bd_info;
303                 oi->oi_list = NULL;
304                 bi = (BackendInfo *)oi;
305
306                 bi->bi_type = (char *)overtype;
307
308                 bi->bi_db_config = over_db_config;
309                 bi->bi_db_open = over_db_open;
310                 bi->bi_db_close = over_db_close;
311                 bi->bi_db_destroy = over_db_destroy;
312
313                 bi->bi_op_bind = over_op_bind;
314                 bi->bi_op_unbind = over_op_unbind;
315                 bi->bi_op_search = over_op_search;
316                 bi->bi_op_compare = over_op_compare;
317                 bi->bi_op_modify = over_op_modify;
318                 bi->bi_op_modrdn = over_op_modrdn;
319                 bi->bi_op_add = over_op_add;
320                 bi->bi_op_delete = over_op_delete;
321                 bi->bi_op_abandon = over_op_abandon;
322                 bi->bi_op_cancel = over_op_cancel;
323                 bi->bi_extended = over_op_extended;
324
325                 be->bd_info = bi;
326         }
327
328         /* Walk to the end of the list of overlays, add the new
329          * one onto the end
330          */
331         oi = (slap_overinfo *) be->bd_info;
332         for ( prev=NULL, on2 = oi->oi_list; on2; prev=on2, on2=on2->on_next );
333         on2 = ch_calloc( 1, sizeof(slap_overinst) );
334         if ( !prev ) {
335                 oi->oi_list = on2;
336         } else {
337                 prev->on_next = on2;
338         }
339         *on2 = *on;
340         on2->on_next = NULL;
341         on2->on_info = oi;
342
343         /* Any initialization needed? */
344         if ( on->on_bi.bi_db_init ) {
345                 be->bd_info = (BackendInfo *)on2;
346                 on2->on_bi.bi_db_init( be );
347                 be->bd_info = (BackendInfo *)oi;
348         }
349
350         return 0;
351 }
352