1 /* backover.c - backend overlay routines */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2003-2014 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
17 /* Functions to overlay other modules over a backend. */
23 #include <ac/string.h>
24 #include <ac/socket.h>
30 static slap_overinst *overlays;
41 slap_overinfo *oi = be->bd_info->bi_private;
42 slap_overinst *on = oi->oi_list;
43 BackendInfo *bi_orig = be->bd_info;
44 struct ConfigOCs *be_cf_ocs = be->be_cf_ocs;
48 if ( oi->oi_orig->bi_db_config ) {
49 be->bd_info = oi->oi_orig;
50 be->be_cf_ocs = oi->oi_orig->bi_cf_ocs;
51 rc = oi->oi_orig->bi_db_config( be, fname, lineno,
54 if ( be->bd_info != oi->oi_orig ) {
56 slap_overinst *on2, **onp;
60 /* a database added an overlay;
61 * work it around... */
62 assert( overlay_is_over( be ) );
64 oi2 = ( slap_overinfo * )be->bd_info->bi_private;
67 /* need to put a uniqueness check here as well;
68 * note that in principle there could be more than
69 * one overlay as a result of multiple calls to
71 be2.bd_info = (BackendInfo *)oi;
73 for ( i = 0, onp = &on2; *onp; i++, onp = &(*onp)->on_next ) {
74 if ( overlay_is_inst( &be2, (*onp)->on_bi.bi_type ) ) {
75 Debug( LDAP_DEBUG_ANY, "over_db_config(): "
76 "warning, freshly added "
77 "overlay #%d \"%s\" is already in list\n",
78 i, (*onp)->on_bi.bi_type, 0 );
80 /* NOTE: if the overlay already exists,
81 * there is no way to merge the results
82 * of the configuration that may have
83 * occurred during bi_db_config(); we
84 * just issue a warning, and the
85 * administrator should deal with this */
92 ch_free( be->bd_info );
95 be->bd_info = (BackendInfo *)oi;
96 if ( rc != SLAP_CONF_UNKNOWN ) return rc;
104 snprintf( ca.log, sizeof( ca.log ), "%s: line %d",
105 ca.fname, ca.lineno );
106 ca.op = SLAP_CONFIG_ADD;
109 for (; on; on=on->on_next) {
110 rc = SLAP_CONF_UNKNOWN;
111 if (on->on_bi.bi_cf_ocs) {
114 ct = config_find_keyword( on->on_bi.bi_cf_ocs->co_table, &ca );
116 ca.table = on->on_bi.bi_cf_ocs->co_type;
117 rc = config_add_vals( ct, &ca );
118 if ( rc != SLAP_CONF_UNKNOWN )
122 if (on->on_bi.bi_db_config && rc == SLAP_CONF_UNKNOWN) {
123 be->bd_info = &on->on_bi;
124 rc = on->on_bi.bi_db_config( be, fname, lineno,
126 if ( rc != SLAP_CONF_UNKNOWN ) break;
129 be->bd_info = bi_orig;
130 be->be_cf_ocs = be_cf_ocs;
141 slap_overinfo *oi = be->bd_info->bi_private;
142 slap_overinst *on = oi->oi_list;
146 db.be_flags |= SLAP_DBFLAG_OVERLAY;
147 db.bd_info = oi->oi_orig;
148 if ( db.bd_info->bi_db_open ) {
149 rc = db.bd_info->bi_db_open( &db, cr );
152 for (; on && rc == 0; on=on->on_next) {
153 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
155 db.bd_info = &on->on_bi;
156 if ( db.bd_info->bi_db_open ) {
157 rc = db.bd_info->bi_db_open( &db, cr );
170 slap_overinfo *oi = be->bd_info->bi_private;
171 slap_overinst *on = oi->oi_list;
172 BackendInfo *bi_orig = be->bd_info;
175 for (; on && rc == 0; on=on->on_next) {
176 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
178 be->bd_info = &on->on_bi;
179 if ( be->bd_info->bi_db_close ) {
180 rc = be->bd_info->bi_db_close( be, cr );
184 if ( oi->oi_orig->bi_db_close ) {
185 be->bd_info = oi->oi_orig;
186 rc = be->bd_info->bi_db_close( be, cr );
189 be->bd_info = bi_orig;
199 slap_overinfo *oi = be->bd_info->bi_private;
200 slap_overinst *on = oi->oi_list, *next;
201 BackendInfo *bi_orig = be->bd_info;
204 be->bd_info = oi->oi_orig;
205 if ( be->bd_info->bi_db_destroy ) {
206 rc = be->bd_info->bi_db_destroy( be, cr );
209 for (; on && rc == 0; on=on->on_next) {
210 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
212 be->bd_info = &on->on_bi;
213 if ( be->bd_info->bi_db_destroy ) {
214 rc = be->bd_info->bi_db_destroy( be, cr );
220 for (next = on->on_next; on; on=next) {
225 be->bd_info = bi_orig;
231 over_back_response ( Operation *op, SlapReply *rs )
233 slap_overinfo *oi = op->o_callback->sc_private;
234 slap_overinst *on = oi->oi_list;
235 int rc = SLAP_CB_CONTINUE;
236 BackendDB *be = op->o_bd, db = *op->o_bd;
238 db.be_flags |= SLAP_DBFLAG_OVERLAY;
240 for (; on; on=on->on_next ) {
241 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
243 if ( on->on_response ) {
244 db.bd_info = (BackendInfo *)on;
245 rc = on->on_response( op, rs );
246 if ( rc != SLAP_CB_CONTINUE ) break;
249 /* Bypass the remaining on_response layers, but allow
250 * normal execution to continue.
252 if ( rc == SLAP_CB_BYPASS )
253 rc = SLAP_CB_CONTINUE;
262 AttributeDescription *desc,
264 slap_access_t access,
265 AccessControlState *state,
271 BackendDB *be = op->o_bd, db;
272 int rc = SLAP_CB_CONTINUE;
274 /* FIXME: used to happen for instance during abandon
275 * when global overlays are used... */
276 assert( op->o_bd != NULL );
278 bi = op->o_bd->bd_info;
279 /* Were we invoked on the frontend? */
280 if ( !bi->bi_access_allowed ) {
281 oi = frontendDB->bd_info->bi_private;
283 oi = op->o_bd->bd_info->bi_private;
287 for ( ; on; on = on->on_next ) {
288 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
290 if ( on->on_bi.bi_access_allowed ) {
291 /* NOTE: do not copy the structure until required */
292 if ( !SLAP_ISOVERLAY( op->o_bd ) ) {
294 db.be_flags |= SLAP_DBFLAG_OVERLAY;
298 op->o_bd->bd_info = (BackendInfo *)on;
299 rc = on->on_bi.bi_access_allowed( op, e,
300 desc, val, access, state, maskp );
301 if ( rc != SLAP_CB_CONTINUE ) break;
305 if ( rc == SLAP_CB_CONTINUE ) {
306 BI_access_allowed *bi_access_allowed;
308 /* if the database structure was changed, o_bd points to a
309 * copy of the structure; put the original bd_info in place */
310 if ( SLAP_ISOVERLAY( op->o_bd ) ) {
311 op->o_bd->bd_info = oi->oi_orig;
314 if ( oi->oi_orig->bi_access_allowed ) {
315 bi_access_allowed = oi->oi_orig->bi_access_allowed;
317 bi_access_allowed = slap_access_allowed;
320 rc = bi_access_allowed( op, e,
321 desc, val, access, state, maskp );
323 /* should not fall thru this far without anything happening... */
324 if ( rc == SLAP_CB_CONTINUE ) {
325 /* access not allowed */
330 op->o_bd->bd_info = bi;
336 overlay_entry_get_ov(
340 AttributeDescription *ad,
345 slap_overinfo *oi = on->on_info;
346 BackendDB *be = op->o_bd, db;
347 BackendInfo *bi = op->o_bd->bd_info;
348 int rc = SLAP_CB_CONTINUE;
350 for ( ; on; on = on->on_next ) {
351 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
353 if ( on->on_bi.bi_entry_get_rw ) {
354 /* NOTE: do not copy the structure until required */
355 if ( !SLAP_ISOVERLAY( op->o_bd ) ) {
357 db.be_flags |= SLAP_DBFLAG_OVERLAY;
361 op->o_bd->bd_info = (BackendInfo *)on;
362 rc = on->on_bi.bi_entry_get_rw( op, dn,
364 if ( rc != SLAP_CB_CONTINUE ) break;
368 if ( rc == SLAP_CB_CONTINUE ) {
369 /* if the database structure was changed, o_bd points to a
370 * copy of the structure; put the original bd_info in place */
371 if ( SLAP_ISOVERLAY( op->o_bd ) ) {
372 op->o_bd->bd_info = oi->oi_orig;
375 if ( oi->oi_orig->bi_entry_get_rw ) {
376 rc = oi->oi_orig->bi_entry_get_rw( op, dn,
380 /* should not fall thru this far without anything happening... */
381 if ( rc == SLAP_CB_CONTINUE ) {
382 rc = LDAP_UNWILLING_TO_PERFORM;
386 op->o_bd->bd_info = bi;
396 AttributeDescription *ad,
403 assert( op->o_bd != NULL );
405 oi = op->o_bd->bd_info->bi_private;
408 return overlay_entry_get_ov( op, dn, oc, ad, rw, e, on );
412 overlay_entry_release_ov(
418 slap_overinfo *oi = on->on_info;
419 BackendDB *be = op->o_bd, db;
420 BackendInfo *bi = op->o_bd->bd_info;
421 int rc = SLAP_CB_CONTINUE;
423 for ( ; on; on = on->on_next ) {
424 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
426 if ( on->on_bi.bi_entry_release_rw ) {
427 /* NOTE: do not copy the structure until required */
428 if ( !SLAP_ISOVERLAY( op->o_bd ) ) {
430 db.be_flags |= SLAP_DBFLAG_OVERLAY;
434 op->o_bd->bd_info = (BackendInfo *)on;
435 rc = on->on_bi.bi_entry_release_rw( op, e, rw );
436 if ( rc != SLAP_CB_CONTINUE ) break;
440 if ( rc == SLAP_CB_CONTINUE ) {
441 /* if the database structure was changed, o_bd points to a
442 * copy of the structure; put the original bd_info in place */
443 if ( SLAP_ISOVERLAY( op->o_bd ) ) {
444 op->o_bd->bd_info = oi->oi_orig;
447 if ( oi->oi_orig->bi_entry_release_rw ) {
448 rc = oi->oi_orig->bi_entry_release_rw( op, e, rw );
451 /* should not fall thru this far without anything happening... */
452 if ( rc == SLAP_CB_CONTINUE ) {
458 op->o_bd->bd_info = bi;
464 over_entry_release_rw(
472 assert( op->o_bd != NULL );
474 oi = op->o_bd->bd_info->bi_private;
477 return overlay_entry_release_ov( op, e, rw, on );
484 struct berval *gr_ndn,
485 struct berval *op_ndn,
486 ObjectClass *group_oc,
487 AttributeDescription *group_at )
492 BackendDB *be = op->o_bd, db;
493 int rc = SLAP_CB_CONTINUE;
495 /* FIXME: used to happen for instance during abandon
496 * when global overlays are used... */
497 assert( be != NULL );
503 for ( ; on; on = on->on_next ) {
504 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
506 if ( on->on_bi.bi_acl_group ) {
507 /* NOTE: do not copy the structure until required */
508 if ( !SLAP_ISOVERLAY( op->o_bd ) ) {
510 db.be_flags |= SLAP_DBFLAG_OVERLAY;
514 op->o_bd->bd_info = (BackendInfo *)on;
515 rc = on->on_bi.bi_acl_group( op, e,
516 gr_ndn, op_ndn, group_oc, group_at );
517 if ( rc != SLAP_CB_CONTINUE ) break;
521 if ( rc == SLAP_CB_CONTINUE ) {
522 BI_acl_group *bi_acl_group;
524 /* if the database structure was changed, o_bd points to a
525 * copy of the structure; put the original bd_info in place */
526 if ( SLAP_ISOVERLAY( op->o_bd ) ) {
527 op->o_bd->bd_info = oi->oi_orig;
530 if ( oi->oi_orig->bi_acl_group ) {
531 bi_acl_group = oi->oi_orig->bi_acl_group;
533 bi_acl_group = backend_group;
536 rc = bi_acl_group( op, e,
537 gr_ndn, op_ndn, group_oc, group_at );
539 /* should not fall thru this far without anything happening... */
540 if ( rc == SLAP_CB_CONTINUE ) {
541 /* access not allowed */
546 op->o_bd->bd_info = bi;
555 struct berval *entry_ndn,
556 AttributeDescription *entry_at,
558 slap_access_t access )
563 BackendDB *be = op->o_bd, db;
564 int rc = SLAP_CB_CONTINUE;
566 /* FIXME: used to happen for instance during abandon
567 * when global overlays are used... */
568 assert( be != NULL );
574 for ( ; on; on = on->on_next ) {
575 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
577 if ( on->on_bi.bi_acl_attribute ) {
578 /* NOTE: do not copy the structure until required */
579 if ( !SLAP_ISOVERLAY( op->o_bd ) ) {
581 db.be_flags |= SLAP_DBFLAG_OVERLAY;
585 op->o_bd->bd_info = (BackendInfo *)on;
586 rc = on->on_bi.bi_acl_attribute( op, target,
587 entry_ndn, entry_at, vals, access );
588 if ( rc != SLAP_CB_CONTINUE ) break;
592 if ( rc == SLAP_CB_CONTINUE ) {
593 BI_acl_attribute *bi_acl_attribute;
595 /* if the database structure was changed, o_bd points to a
596 * copy of the structure; put the original bd_info in place */
597 if ( SLAP_ISOVERLAY( op->o_bd ) ) {
598 op->o_bd->bd_info = oi->oi_orig;
601 if ( oi->oi_orig->bi_acl_attribute ) {
602 bi_acl_attribute = oi->oi_orig->bi_acl_attribute;
604 bi_acl_attribute = backend_attribute;
607 rc = bi_acl_attribute( op, target,
608 entry_ndn, entry_at, vals, access );
610 /* should not fall thru this far without anything happening... */
611 if ( rc == SLAP_CB_CONTINUE ) {
612 /* access not allowed */
617 op->o_bd->bd_info = bi;
623 overlay_callback_after_backover( Operation *op, slap_callback *sc, int append )
627 for ( scp = &op->o_callback; *scp != NULL; scp = &(*scp)->sc_next ) {
628 if ( (*scp)->sc_response == over_back_response ) {
629 sc->sc_next = (*scp)->sc_next;
630 (*scp)->sc_next = sc;
644 * default return code in case of missing backend function
645 * and overlay stack returning SLAP_CB_CONTINUE
647 static int op_rc[ op_last ] = {
648 LDAP_UNWILLING_TO_PERFORM, /* bind */
649 LDAP_UNWILLING_TO_PERFORM, /* unbind */
650 LDAP_UNWILLING_TO_PERFORM, /* search */
651 SLAP_CB_CONTINUE, /* compare; pass to frontend */
652 LDAP_UNWILLING_TO_PERFORM, /* modify */
653 LDAP_UNWILLING_TO_PERFORM, /* modrdn */
654 LDAP_UNWILLING_TO_PERFORM, /* add */
655 LDAP_UNWILLING_TO_PERFORM, /* delete */
656 LDAP_UNWILLING_TO_PERFORM, /* abandon */
657 LDAP_UNWILLING_TO_PERFORM, /* cancel */
658 LDAP_UNWILLING_TO_PERFORM, /* extended */
659 LDAP_SUCCESS, /* aux_operational */
660 LDAP_SUCCESS, /* aux_chk_referrals */
661 SLAP_CB_CONTINUE /* aux_chk_controls; pass to frontend */
667 slap_operation_t which,
673 int rc = SLAP_CB_CONTINUE;
675 for (; on; on=on->on_next ) {
676 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
679 if ( (&bi->bi_op_bind)[ which ] ) {
680 op->o_bd->bd_info = (BackendInfo *)on;
681 rc = (&bi->bi_op_bind)[ which ]( op, rs );
682 if ( rc != SLAP_CB_CONTINUE ) break;
685 if ( rc == SLAP_CB_BYPASS )
686 rc = SLAP_CB_CONTINUE;
689 if ( (&bi->bi_op_bind)[ which ] && rc == SLAP_CB_CONTINUE ) {
690 op->o_bd->bd_info = bi;
691 rc = (&bi->bi_op_bind)[ which ]( op, rs );
693 /* should not fall thru this far without anything happening... */
694 if ( rc == SLAP_CB_CONTINUE ) {
698 /* The underlying backend didn't handle the request, make sure
699 * overlay cleanup is processed.
701 if ( rc == LDAP_UNWILLING_TO_PERFORM ) {
702 slap_callback *sc_next;
703 for ( ; op->o_callback && op->o_callback->sc_response !=
704 over_back_response; op->o_callback = sc_next ) {
705 sc_next = op->o_callback->sc_next;
706 if ( op->o_callback->sc_cleanup ) {
707 op->o_callback->sc_cleanup( op, rs );
718 slap_operation_t which
723 BackendDB *be = op->o_bd, db;
724 slap_callback cb = {NULL, over_back_response, NULL, NULL}, **sc;
725 int rc = SLAP_CB_CONTINUE;
727 /* FIXME: used to happen for instance during abandon
728 * when global overlays are used... */
729 assert( op->o_bd != NULL );
731 oi = op->o_bd->bd_info->bi_private;
734 if ( !SLAP_ISOVERLAY( op->o_bd )) {
736 db.be_flags |= SLAP_DBFLAG_OVERLAY;
739 cb.sc_next = op->o_callback;
741 op->o_callback = &cb;
743 rc = overlay_op_walk( op, rs, which, oi, on );
744 for ( sc = &op->o_callback; *sc; sc = &(*sc)->sc_next ) {
756 over_op_bind( Operation *op, SlapReply *rs )
758 return over_op_func( op, rs, op_bind );
762 over_op_unbind( Operation *op, SlapReply *rs )
764 return over_op_func( op, rs, op_unbind );
768 over_op_search( Operation *op, SlapReply *rs )
770 return over_op_func( op, rs, op_search );
774 over_op_compare( Operation *op, SlapReply *rs )
776 return over_op_func( op, rs, op_compare );
780 over_op_modify( Operation *op, SlapReply *rs )
782 return over_op_func( op, rs, op_modify );
786 over_op_modrdn( Operation *op, SlapReply *rs )
788 return over_op_func( op, rs, op_modrdn );
792 over_op_add( Operation *op, SlapReply *rs )
794 return over_op_func( op, rs, op_add );
798 over_op_delete( Operation *op, SlapReply *rs )
800 return over_op_func( op, rs, op_delete );
804 over_op_abandon( Operation *op, SlapReply *rs )
806 return over_op_func( op, rs, op_abandon );
810 over_op_cancel( Operation *op, SlapReply *rs )
812 return over_op_func( op, rs, op_cancel );
816 over_op_extended( Operation *op, SlapReply *rs )
818 return over_op_func( op, rs, op_extended );
822 over_aux_operational( Operation *op, SlapReply *rs )
824 return over_op_func( op, rs, op_aux_operational );
828 over_aux_chk_referrals( Operation *op, SlapReply *rs )
830 return over_op_func( op, rs, op_aux_chk_referrals );
834 over_aux_chk_controls( Operation *op, SlapReply *rs )
836 return over_op_func( op, rs, op_aux_chk_controls );
846 over_connection_func(
849 enum conn_which which
855 int rc = SLAP_CB_CONTINUE;
856 BI_connection_init **func;
858 /* FIXME: used to happen for instance during abandon
859 * when global overlays are used... */
860 assert( bd != NULL );
862 oi = bd->bd_info->bi_private;
865 if ( !SLAP_ISOVERLAY( bd ) ) {
867 db.be_flags |= SLAP_DBFLAG_OVERLAY;
871 for ( ; on; on = on->on_next ) {
872 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DISABLED )
874 func = &on->on_bi.bi_connection_init;
875 if ( func[ which ] ) {
876 bd->bd_info = (BackendInfo *)on;
877 rc = func[ which ]( bd, conn );
878 if ( rc != SLAP_CB_CONTINUE ) break;
882 func = &oi->oi_orig->bi_connection_init;
883 if ( func[ which ] && rc == SLAP_CB_CONTINUE ) {
884 bd->bd_info = oi->oi_orig;
885 rc = func[ which ]( bd, conn );
887 /* should not fall thru this far without anything happening... */
888 if ( rc == SLAP_CB_CONTINUE ) {
889 rc = LDAP_UNWILLING_TO_PERFORM;
896 over_connection_init(
901 return over_connection_func( bd, conn, conn_init );
905 over_connection_destroy(
910 return over_connection_func( bd, conn, conn_destroy );
920 /* FIXME: check for duplicates? */
921 for ( tmp = overlays; tmp != NULL; tmp = tmp->on_next ) {
922 if ( strcmp( on->on_bi.bi_type, tmp->on_bi.bi_type ) == 0 ) {
923 Debug( LDAP_DEBUG_ANY,
924 "overlay_register(\"%s\"): "
925 "name already in use.\n",
926 on->on_bi.bi_type, 0, 0 );
930 if ( on->on_bi.bi_obsolete_names != NULL ) {
933 for ( i = 0; on->on_bi.bi_obsolete_names[ i ] != NULL; i++ ) {
934 if ( strcmp( on->on_bi.bi_obsolete_names[ i ], tmp->on_bi.bi_type ) == 0 ) {
935 Debug( LDAP_DEBUG_ANY,
936 "overlay_register(\"%s\"): "
937 "obsolete name \"%s\" already in use "
938 "by overlay \"%s\".\n",
940 on->on_bi.bi_obsolete_names[ i ],
941 tmp->on_bi.bi_type );
947 if ( tmp->on_bi.bi_obsolete_names != NULL ) {
950 for ( i = 0; tmp->on_bi.bi_obsolete_names[ i ] != NULL; i++ ) {
953 if ( strcmp( on->on_bi.bi_type, tmp->on_bi.bi_obsolete_names[ i ] ) == 0 ) {
954 Debug( LDAP_DEBUG_ANY,
955 "overlay_register(\"%s\"): "
956 "name already in use "
957 "as obsolete by overlay \"%s\".\n",
959 tmp->on_bi.bi_obsolete_names[ i ], 0 );
963 if ( on->on_bi.bi_obsolete_names != NULL ) {
964 for ( j = 0; on->on_bi.bi_obsolete_names[ j ] != NULL; j++ ) {
965 if ( strcmp( on->on_bi.bi_obsolete_names[ j ], tmp->on_bi.bi_obsolete_names[ i ] ) == 0 ) {
966 Debug( LDAP_DEBUG_ANY,
967 "overlay_register(\"%s\"): "
968 "obsolete name \"%s\" already in use "
969 "as obsolete by overlay \"%s\".\n",
971 on->on_bi.bi_obsolete_names[ j ],
972 tmp->on_bi.bi_type );
981 on->on_next = overlays;
987 * iterator on registered overlays; overlay_next( NULL ) returns the first
988 * overlay; subsequent calls with the previously returned value allow to
989 * iterate over the entire list; returns NULL when no more overlays are
1006 * returns a specific registered overlay based on the type; NULL if not
1011 overlay_find( const char *over_type )
1013 slap_overinst *on = overlays;
1015 assert( over_type != NULL );
1017 for ( ; on; on = on->on_next ) {
1018 if ( strcmp( on->on_bi.bi_type, over_type ) == 0 ) {
1022 if ( on->on_bi.bi_obsolete_names != NULL ) {
1025 for ( i = 0; on->on_bi.bi_obsolete_names[ i ] != NULL; i++ ) {
1026 if ( strcmp( on->on_bi.bi_obsolete_names[ i ], over_type ) == 0 ) {
1027 Debug( LDAP_DEBUG_ANY,
1028 "overlay_find(\"%s\"): "
1029 "obsolete name for \"%s\".\n",
1030 on->on_bi.bi_obsolete_names[ i ],
1031 on->on_bi.bi_type, 0 );
1042 static const char overtype[] = "over";
1045 * returns TRUE (1) if the database is actually an overlay instance;
1046 * FALSE (0) otherwise.
1050 overlay_is_over( BackendDB *be )
1052 return be->bd_info->bi_type == overtype;
1056 * returns TRUE (1) if the given database is actually an overlay
1057 * instance and, somewhere in the list, contains the requested overlay;
1058 * FALSE (0) otherwise.
1062 overlay_is_inst( BackendDB *be, const char *over_type )
1066 assert( be != NULL );
1068 if ( !overlay_is_over( be ) ) {
1072 on = ((slap_overinfo *)be->bd_info->bi_private)->oi_list;
1073 for ( ; on; on = on->on_next ) {
1074 if ( strcmp( on->on_bi.bi_type, over_type ) == 0 ) {
1083 overlay_register_control( BackendDB *be, const char *oid )
1088 if ( slap_find_control_id( oid, &cid ) == LDAP_CONTROL_NOT_FOUND ) {
1092 if ( SLAP_ISGLOBALOVERLAY( be ) ) {
1095 /* add to all backends... */
1096 LDAP_STAILQ_FOREACH( bd, &backendDB, be_next ) {
1097 if ( bd == be->bd_self ) {
1101 /* overlays can be instanciated multiple times, use
1102 * be_ctrls[ cid ] as an instance counter, so that the
1103 * overlay's controls are only really disabled after the
1104 * last instance called overlay_register_control() */
1105 bd->be_ctrls[ cid ]++;
1106 bd->be_ctrls[ SLAP_MAX_CIDS ] = 1;
1112 /* overlays can be instanciated multiple times, use
1113 * be_ctrls[ cid ] as an instance counter, so that the
1114 * overlay's controls are only really unregistered after the
1115 * last instance called overlay_register_control() */
1116 be->bd_self->be_ctrls[ cid ]++;
1117 be->bd_self->be_ctrls[ SLAP_MAX_CIDS ] = 1;
1123 #ifdef SLAP_CONFIG_DELETE
1125 overlay_unregister_control( BackendDB *be, const char *oid )
1130 if ( slap_find_control_id( oid, &cid ) == LDAP_CONTROL_NOT_FOUND ) {
1134 if ( SLAP_ISGLOBALOVERLAY( be ) ) {
1137 /* remove from all backends... */
1138 LDAP_STAILQ_FOREACH( bd, &backendDB, be_next ) {
1139 if ( bd == be->bd_self ) {
1143 bd->be_ctrls[ cid ]--;
1148 be->bd_self->be_ctrls[ cid ]--;
1151 #endif /* SLAP_CONFIG_DELETE */
1154 overlay_destroy_one( BackendDB *be, slap_overinst *on )
1156 slap_overinfo *oi = on->on_info;
1157 slap_overinst **oidx;
1159 for ( oidx = &oi->oi_list; *oidx; oidx = &(*oidx)->on_next ) {
1160 if ( *oidx == on ) {
1161 *oidx = on->on_next;
1162 if ( on->on_bi.bi_db_destroy ) {
1163 BackendInfo *bi_orig = be->bd_info;
1164 be->bd_info = (BackendInfo *)on;
1165 on->on_bi.bi_db_destroy( be, NULL );
1166 be->bd_info = bi_orig;
1174 #ifdef SLAP_CONFIG_DELETE
1175 typedef struct ov_remove_ctx {
1181 overlay_remove_cb( Operation *op, SlapReply *rs )
1183 ov_remove_ctx *rm_ctx = (ov_remove_ctx*) op->o_callback->sc_private;
1184 BackendInfo *bi_orig = rm_ctx->be->bd_info;
1186 rm_ctx->be->bd_info = (BackendInfo*) rm_ctx->on;
1188 if ( rm_ctx->on->on_bi.bi_db_close ) {
1189 rm_ctx->on->on_bi.bi_db_close( rm_ctx->be, NULL );
1191 if ( rm_ctx->on->on_bi.bi_db_destroy ) {
1192 rm_ctx->on->on_bi.bi_db_destroy( rm_ctx->be, NULL );
1195 /* clean up after removing last overlay */
1196 if ( ! rm_ctx->on->on_info->oi_list ) {
1197 /* reset db flags and bd_info to orig */
1198 SLAP_DBFLAGS( rm_ctx->be ) &= ~SLAP_DBFLAG_GLOBAL_OVERLAY;
1199 rm_ctx->be->bd_info = rm_ctx->on->on_info->oi_orig;
1200 ch_free(rm_ctx->on->on_info);
1202 rm_ctx->be->bd_info = bi_orig;
1205 op->o_tmpfree(rm_ctx, op->o_tmpmemctx);
1206 return SLAP_CB_CONTINUE;
1210 overlay_remove( BackendDB *be, slap_overinst *on, Operation *op )
1212 slap_overinfo *oi = on->on_info;
1213 slap_overinst **oidx;
1214 ov_remove_ctx *rm_ctx;
1215 slap_callback *rm_cb, *cb;
1217 /* remove overlay from oi_list */
1218 for ( oidx = &oi->oi_list; *oidx; oidx = &(*oidx)->on_next ) {
1219 if ( *oidx == on ) {
1220 *oidx = on->on_next;
1225 /* The db_close and db_destroy handlers to cleanup a release
1226 * the overlay's resources are called from the cleanup callback
1228 rm_ctx = op->o_tmpalloc( sizeof( ov_remove_ctx ), op->o_tmpmemctx );
1232 rm_cb = op->o_tmpalloc( sizeof( slap_callback ), op->o_tmpmemctx );
1233 rm_cb->sc_next = NULL;
1234 rm_cb->sc_cleanup = overlay_remove_cb;
1235 rm_cb->sc_response = NULL;
1236 rm_cb->sc_private = (void*) rm_ctx;
1238 /* Append callback to the end of the list */
1239 if ( !op->o_callback ) {
1240 op->o_callback = rm_cb;
1242 for ( cb = op->o_callback; cb->sc_next; cb = cb->sc_next );
1243 cb->sc_next = rm_cb;
1246 #endif /* SLAP_CONFIG_DELETE */
1249 overlay_insert( BackendDB *be, slap_overinst *on2, slap_overinst ***prev,
1252 slap_overinfo *oi = (slap_overinfo *)be->bd_info;
1255 on2->on_next = oi->oi_list;
1259 slap_overinst *on, **prev;
1261 /* Since the list is in reverse order and is singly linked,
1262 * we have to count the overlays and then insert backwards.
1263 * Adding on overlay at a specific point should be a pretty
1264 * infrequent occurrence.
1267 for ( on = oi->oi_list; on; on=on->on_next )
1275 /* advance to insertion point */
1276 prev = &oi->oi_list;
1277 for ( i=0; i<idx; i++ ) {
1279 prev = &on->on_next;
1282 on2->on_next = *prev;
1288 overlay_move( BackendDB *be, slap_overinst *on, int idx )
1290 slap_overinfo *oi = (slap_overinfo *)be->bd_info;
1291 slap_overinst **onp;
1293 for (onp = &oi->oi_list; *onp; onp= &(*onp)->on_next) {
1299 overlay_insert( be, on, &onp, idx );
1302 /* add an overlay to a particular backend. */
1304 overlay_config( BackendDB *be, const char *ov, int idx, BackendInfo **res, ConfigReply *cr )
1306 slap_overinst *on = NULL, *on2 = NULL, **prev;
1307 slap_overinfo *oi = NULL;
1308 BackendInfo *bi = NULL;
1313 on = overlay_find( ov );
1315 Debug( LDAP_DEBUG_ANY, "overlay \"%s\" not found\n", ov, 0, 0 );
1319 /* If this is the first overlay on this backend, set up the
1320 * overlay info structure
1322 if ( !overlay_is_over( be ) ) {
1325 /* NOTE: the first time a global overlay is configured,
1326 * frontendDB gets this flag; it is used later by overlays
1327 * to determine if they're stacked on top of the frontendDB */
1328 if ( be->bd_info == frontendDB->bd_info || SLAP_ISGLOBALOVERLAY( be ) ) {
1330 if ( on->on_bi.bi_flags & SLAPO_BFLAG_DBONLY ) {
1331 Debug( LDAP_DEBUG_ANY, "overlay_config(): "
1332 "overlay \"%s\" cannot be global.\n",
1337 } else if ( on->on_bi.bi_flags & SLAPO_BFLAG_GLOBONLY ) {
1338 Debug( LDAP_DEBUG_ANY, "overlay_config(): "
1339 "overlay \"%s\" can only be global.\n",
1344 oi = ch_malloc( sizeof( slap_overinfo ) );
1345 oi->oi_orig = be->bd_info;
1346 oi->oi_bi = *be->bd_info;
1350 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLOBAL_OVERLAY;
1353 /* Save a pointer to ourself in bi_private.
1355 oi->oi_bi.bi_private = oi;
1357 bi = (BackendInfo *)oi;
1359 bi->bi_type = (char *)overtype;
1361 bi->bi_db_config = over_db_config;
1362 bi->bi_db_open = over_db_open;
1363 bi->bi_db_close = over_db_close;
1364 bi->bi_db_destroy = over_db_destroy;
1366 bi->bi_op_bind = over_op_bind;
1367 bi->bi_op_unbind = over_op_unbind;
1368 bi->bi_op_search = over_op_search;
1369 bi->bi_op_compare = over_op_compare;
1370 bi->bi_op_modify = over_op_modify;
1371 bi->bi_op_modrdn = over_op_modrdn;
1372 bi->bi_op_add = over_op_add;
1373 bi->bi_op_delete = over_op_delete;
1374 bi->bi_op_abandon = over_op_abandon;
1375 bi->bi_op_cancel = over_op_cancel;
1377 bi->bi_extended = over_op_extended;
1380 * this is fine because it has the same
1381 * args of the operations; we need to rework
1382 * all the hooks to share the same args
1383 * of the operations...
1385 bi->bi_operational = over_aux_operational;
1386 bi->bi_chk_referrals = over_aux_chk_referrals;
1387 bi->bi_chk_controls = over_aux_chk_controls;
1389 /* these have specific arglists */
1390 bi->bi_entry_get_rw = over_entry_get_rw;
1391 bi->bi_entry_release_rw = over_entry_release_rw;
1392 bi->bi_access_allowed = over_access_allowed;
1393 bi->bi_acl_group = over_acl_group;
1394 bi->bi_acl_attribute = over_acl_attribute;
1396 bi->bi_connection_init = over_connection_init;
1397 bi->bi_connection_destroy = over_connection_destroy;
1402 if ( overlay_is_inst( be, ov ) ) {
1403 if ( SLAPO_SINGLE( be ) ) {
1404 Debug( LDAP_DEBUG_ANY, "overlay_config(): "
1405 "overlay \"%s\" already in list\n",
1411 oi = be->bd_info->bi_private;
1414 /* Insert new overlay into list. By default overlays are
1415 * added to head of list and executed in LIFO order.
1417 on2 = ch_calloc( 1, sizeof(slap_overinst) );
1421 prev = &oi->oi_list;
1422 /* Do we need to find the insertion point? */
1426 /* count current overlays */
1427 for ( i=0, on=oi->oi_list; on; on=on->on_next, i++ );
1429 /* are we just appending a new one? */
1433 overlay_insert( be, on2, &prev, idx );
1435 /* Any initialization needed? */
1436 if ( on2->on_bi.bi_db_init ) {
1438 be->bd_info = (BackendInfo *)on2;
1439 rc = on2->on_bi.bi_db_init( be, cr);
1440 be->bd_info = (BackendInfo *)oi;
1442 *prev = on2->on_next;