1 /* backglue.c - backend glue */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2001-2005 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>.
18 * Functions to glue a bunch of other backends into a single tree.
19 * All of the glued backends must share a common suffix. E.g., you
20 * can glue o=foo and ou=bar,o=foo but you can't glue o=foo and o=bar.
22 * The purpose of these functions is to allow you to split a single database
23 * into pieces (for load balancing purposes, whatever) but still be able
24 * to treat it as a single database after it's been split. As such, each
25 * of the glued backends should have identical rootdn.
33 #include <ac/string.h>
34 #include <ac/socket.h>
39 typedef struct gluenode {
44 typedef struct glueinfo {
50 static slap_overinst glue;
53 static BackendDB *glueBack;
55 static slap_response glue_op_response;
57 /* Just like select_backend, but only for our backends */
64 slap_overinst *on = (slap_overinst *)be->bd_info;
65 glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
68 for (i = 0; i<gi->gi_nodes; i++) {
69 assert( gi->gi_n[i].gn_be->be_nsuffix != NULL );
71 if (dnIsSuffix(dn, &gi->gi_n[i].gn_be->be_nsuffix[0])) {
72 return gi->gi_n[i].gn_be;
75 be->bd_info = on->on_info->oi_orig;
80 typedef struct glue_state {
89 glue_op_response ( Operation *op, SlapReply *rs )
91 glue_state *gs = op->o_callback->sc_private;
96 return SLAP_CB_CONTINUE;
99 if (rs->sr_err == LDAP_SUCCESS ||
100 rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ||
101 rs->sr_err == LDAP_TIMELIMIT_EXCEEDED ||
102 rs->sr_err == LDAP_ADMINLIMIT_EXCEEDED ||
103 rs->sr_err == LDAP_NO_SUCH_OBJECT ||
104 gs->err != LDAP_SUCCESS)
105 gs->err = rs->sr_err;
106 if (gs->err == LDAP_SUCCESS && gs->matched) {
107 ch_free (gs->matched);
111 if (gs->err != LDAP_SUCCESS && rs->sr_matched) {
113 len = strlen (rs->sr_matched);
114 if (len > gs->matchlen) {
116 ch_free (gs->matched);
117 gs->matched = ch_strdup (rs->sr_matched);
125 for (i=0; rs->sr_ref[i].bv_val; i++);
129 new = ch_malloc ((i+1)*sizeof(struct berval));
131 new = ch_realloc(gs->refs,
132 (j+i+1)*sizeof(struct berval));
134 for (k=0; k<i; j++,k++) {
135 ber_dupbv( &new[j], &rs->sr_ref[k] );
137 new[j].bv_val = NULL;
146 glue_op_func ( Operation *op, SlapReply *rs )
148 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
149 BackendDB *b0 = op->o_bd;
150 BackendInfo *bi0 = op->o_bd->bd_info;
152 slap_operation_t which = op_bind;
155 op->o_bd = glue_back_select (b0, &op->o_req_ndn);
156 b0->bd_info = on->on_info->oi_orig;
159 case LDAP_REQ_ADD: which = op_add; break;
160 case LDAP_REQ_DELETE: which = op_delete; break;
161 case LDAP_REQ_MODIFY: which = op_modify; break;
162 case LDAP_REQ_MODRDN: which = op_modrdn; break;
163 default: assert( 0 ); break;
166 func = &op->o_bd->bd_info->bi_op_bind;
168 rc = func[which]( op, rs );
170 rc = SLAP_CB_CONTINUE;
173 op->o_bd->bd_info = bi0;
178 glue_chk_referrals ( Operation *op, SlapReply *rs )
180 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
181 BackendDB *b0 = op->o_bd;
182 BackendInfo *bi0 = op->o_bd->bd_info;
185 op->o_bd = glue_back_select (b0, &op->o_req_ndn);
186 b0->bd_info = on->on_info->oi_orig;
188 if ( op->o_bd->bd_info->bi_chk_referrals )
189 rc = ( *op->o_bd->bd_info->bi_chk_referrals )( op, rs );
191 rc = SLAP_CB_CONTINUE;
194 op->o_bd->bd_info = bi0;
199 glue_chk_controls ( Operation *op, SlapReply *rs )
201 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
202 BackendDB *b0 = op->o_bd;
203 BackendInfo *bi0 = op->o_bd->bd_info;
204 int rc = SLAP_CB_CONTINUE;
206 op->o_bd = glue_back_select (b0, &op->o_req_ndn);
207 b0->bd_info = on->on_info->oi_orig;
209 /* if the subordinate database has overlays, the bi_chk_controls()
210 * hook is actually over_aux_chk_controls(); in case it actually
211 * wraps a missing hok, we need to mimic the behavior
212 * of the frontend applied to that database */
213 if ( op->o_bd->bd_info->bi_chk_controls ) {
214 rc = ( *op->o_bd->bd_info->bi_chk_controls )( op, rs );
218 if ( rc == SLAP_CB_CONTINUE ) {
219 rc = backend_check_controls( op, rs );
223 op->o_bd->bd_info = bi0;
228 glue_op_search ( Operation *op, SlapReply *rs )
230 slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
231 glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
232 BackendDB *b0 = op->o_bd;
233 BackendDB *b1 = NULL, *btmp;
234 BackendInfo *bi0 = op->o_bd->bd_info;
237 glue_state gs = {0, 0, NULL, 0, NULL};
238 slap_callback cb = { NULL, glue_op_response, NULL, NULL };
240 struct berval dn, ndn, *pdn;
244 cb.sc_next = op->o_callback;
246 stoptime = slap_get_time () + op->ors_tlimit;
248 op->o_bd = glue_back_select (b0, &op->o_req_ndn);
249 b0->bd_info = on->on_info->oi_orig;
251 switch (op->ors_scope) {
252 case LDAP_SCOPE_BASE:
253 rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
254 if (op->o_bd && op->o_bd->be_search) {
255 rs->sr_err = op->o_bd->be_search( op, rs );
259 case LDAP_SCOPE_ONELEVEL:
260 case LDAP_SCOPE_SUBTREE:
261 #ifdef LDAP_SCOPE_SUBORDINATE
262 case LDAP_SCOPE_SUBORDINATE: /* FIXME */
267 if (op->o_bd && op->o_bd->be_search) {
268 rs->sr_err = op->o_bd->be_search( op, rs );
270 send_ldap_error(op, rs, LDAP_UNWILLING_TO_PERFORM,
271 "No search target found");
277 op->o_callback = &cb;
278 rs->sr_err = gs.err = LDAP_UNWILLING_TO_PERFORM;
279 scope0 = op->ors_scope;
280 tlimit0 = op->ors_tlimit;
286 * Execute in reverse order, most general first
288 for (i = gi->gi_nodes; i >= 0; i--) {
289 if ( i == gi->gi_nodes ) {
293 btmp = gi->gi_n[i].gn_be;
294 pdn = &gi->gi_n[i].gn_pdn;
296 if (!btmp || !btmp->be_search)
298 if (!dnIsSuffix(&btmp->be_nsuffix[0], &b1->be_nsuffix[0]))
300 if (tlimit0 != SLAP_NO_LIMIT) {
301 op->ors_tlimit = stoptime - slap_get_time ();
302 if (op->ors_tlimit <= 0) {
303 rs->sr_err = gs.err = LDAP_TIMELIMIT_EXCEEDED;
316 assert( op->o_bd->be_suffix != NULL );
317 assert( op->o_bd->be_nsuffix != NULL );
319 if (scope0 == LDAP_SCOPE_ONELEVEL &&
322 op->ors_scope = LDAP_SCOPE_BASE;
323 op->o_req_dn = op->o_bd->be_suffix[0];
324 op->o_req_ndn = op->o_bd->be_nsuffix[0];
325 rs->sr_err = op->o_bd->be_search(op, rs);
327 } else if (scope0 == LDAP_SCOPE_SUBTREE &&
328 dn_match(&op->o_bd->be_nsuffix[0], &ndn))
330 rs->sr_err = op->o_bd->be_search( op, rs );
332 } else if (scope0 == LDAP_SCOPE_SUBTREE &&
333 dnIsSuffix(&op->o_bd->be_nsuffix[0], &ndn))
335 op->o_req_dn = op->o_bd->be_suffix[0];
336 op->o_req_ndn = op->o_bd->be_nsuffix[0];
337 rs->sr_err = op->o_bd->be_search( op, rs );
338 if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
339 gs.err = LDAP_SUCCESS;
342 } else if (dnIsSuffix(&ndn, &op->o_bd->be_nsuffix[0])) {
343 rs->sr_err = op->o_bd->be_search( op, rs );
349 * Add errors that should result in dropping
352 case LDAP_SIZELIMIT_EXCEEDED:
353 case LDAP_TIMELIMIT_EXCEEDED:
354 case LDAP_ADMINLIMIT_EXCEEDED:
355 case LDAP_NO_SUCH_OBJECT:
356 #ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
357 case LDAP_X_CANNOT_CHAIN:
358 #endif /* LDAP_CONTROL_X_CHAINING_BEHAVIOR */
366 op->ors_scope = scope0;
367 op->ors_tlimit = tlimit0;
373 if ( op->o_abandon ) {
374 rs->sr_err = SLAPD_ABANDON;
376 op->o_callback = cb.sc_next;
378 rs->sr_matched = gs.matched;
379 rs->sr_ref = gs.refs;
381 send_ldap_result( op, rs );
385 op->o_bd->bd_info = bi0;
389 ber_bvarray_free(gs.refs);
393 static BackendDB toolDB;
396 glue_tool_entry_open (
401 slap_overinfo *oi = (slap_overinfo *)b0->bd_info;
403 /* We don't know which backend to talk to yet, so just
404 * remember the mode and move on...
410 toolDB.bd_info = oi->oi_orig;
416 glue_tool_entry_close (
423 if (!glueBack->be_entry_close)
425 rc = glueBack->be_entry_close (glueBack);
430 static slap_overinst *
435 slap_overinfo *oi = (slap_overinfo *)bi;
438 for ( on = oi->oi_list; on; on=on->on_next ) {
439 if ( !strcmp( on->on_bi.bi_type, glue.on_bi.bi_type ))
445 /* This function will only be called in tool mode */
451 slap_overinst *on = glue_tool_inst( bi );
452 glueinfo *gi = on->on_bi.bi_private;
453 static int glueOpened = 0;
454 int i, j, same, bsame = 0, rc = 0;
456 if (glueOpened) return 0;
460 /* If we were invoked in tool mode, open all the underlying backends */
461 if (slapMode & SLAP_TOOL_MODE) {
462 for (i = 0; i<gi->gi_nodes; i++) {
464 /* Same bi_open as our main backend? */
465 if ( gi->gi_n[i].gn_be->bd_info->bi_open ==
466 on->on_info->oi_orig->bi_open )
469 /* Loop thru the bd_info's and make sure we only
470 * invoke their bi_open functions once each.
472 for ( j = 0; j<i; j++ ) {
473 if ( gi->gi_n[i].gn_be->bd_info->bi_open ==
474 gi->gi_n[j].gn_be->bd_info->bi_open ) {
479 /* OK, it's unique and non-NULL, call it. */
480 if ( !same && gi->gi_n[i].gn_be->bd_info->bi_open )
481 rc = gi->gi_n[i].gn_be->bd_info->bi_open(
482 gi->gi_n[i].gn_be->bd_info );
483 /* Let backend.c take care of the rest of startup */
485 rc = backend_startup_one( gi->gi_n[i].gn_be );
488 if ( !rc && !bsame && on->on_info->oi_orig->bi_open )
489 rc = on->on_info->oi_orig->bi_open( on->on_info->oi_orig );
491 } /* other case is impossible */
495 /* This function will only be called in tool mode */
501 static int glueClosed = 0;
504 if (glueClosed) return 0;
508 if (slapMode & SLAP_TOOL_MODE) {
509 rc = backend_shutdown( NULL );
515 glue_entry_release_rw (
526 b2.bd_info = (BackendInfo *)glue_tool_inst( op->o_bd->bd_info );
527 op->o_bd = glue_back_select (&b2, &e->e_nname);
529 if ( op->o_bd->be_release ) {
530 rc = op->o_bd->be_release( op, e, rw );
533 /* FIXME: mimic be_entry_release_rw
534 * when no be_release() available */
544 glue_tool_entry_first (
548 slap_overinst *on = glue_tool_inst( b0->bd_info );
549 glueinfo *gi = on->on_bi.bi_private;
552 /* If we're starting from scratch, start at the most general */
554 if ( toolDB.be_entry_open && toolDB.be_entry_first ) {
557 for (i = gi->gi_nodes-1; i >= 0; i--) {
558 if (gi->gi_n[i].gn_be->be_entry_open &&
559 gi->gi_n[i].gn_be->be_entry_first) {
560 glueBack = gi->gi_n[i].gn_be;
566 if (!glueBack || !glueBack->be_entry_open || !glueBack->be_entry_first ||
567 glueBack->be_entry_open (glueBack, glueMode) != 0)
570 return glueBack->be_entry_first (glueBack);
574 glue_tool_entry_next (
578 slap_overinst *on = glue_tool_inst( b0->bd_info );
579 glueinfo *gi = on->on_bi.bi_private;
583 if (!glueBack || !glueBack->be_entry_next)
586 rc = glueBack->be_entry_next (glueBack);
588 /* If we ran out of entries in one database, move on to the next */
590 if ( glueBack && glueBack->be_entry_close )
591 glueBack->be_entry_close (glueBack);
592 for (i=0; i<gi->gi_nodes; i++) {
593 if (gi->gi_n[i].gn_be == glueBack)
600 glueBack = gi->gi_n[i-1].gn_be;
601 rc = glue_tool_entry_first (b0);
608 glue_tool_entry_get (
613 if (!glueBack || !glueBack->be_entry_get)
616 return glueBack->be_entry_get (glueBack, id);
620 glue_tool_entry_put (
630 b2.bd_info = (BackendInfo *)glue_tool_inst( b0->bd_info );
631 be = glue_back_select (&b2, &e->e_nname);
632 if ( be == &b2 ) be = &toolDB;
634 if (!be->be_entry_put)
638 if ( be->be_entry_open ) {
639 rc = be->be_entry_open (be, glueMode);
644 } else if (be != glueBack) {
645 /* If this entry belongs in a different branch than the
646 * previous one, close the current database and open the
649 if ( glueBack->be_entry_close ) {
650 glueBack->be_entry_close (glueBack);
652 if ( be->be_entry_open ) {
653 rc = be->be_entry_open (be, glueMode);
660 return be->be_entry_put (be, e, text);
664 glue_tool_entry_reindex (
669 if (!glueBack || !glueBack->be_entry_reindex)
672 return glueBack->be_entry_reindex (glueBack, id);
680 slap_overinst *on = glue_tool_inst( b0->bd_info );
681 glueinfo *gi = on->on_bi.bi_private;
682 BackendInfo *bi = b0->bd_info;
685 /* just sync everyone */
686 for (i = 0; i<gi->gi_nodes; i++)
687 if (gi->gi_n[i].gn_be->be_sync)
688 gi->gi_n[i].gn_be->be_sync (gi->gi_n[i].gn_be);
689 b0->bd_info = on->on_info->oi_orig;
701 slap_overinst *on = (slap_overinst *)be->bd_info;
702 slap_overinfo *oi = on->on_info;
703 BackendInfo *bi = oi->oi_orig;
706 gi = ch_calloc( 1, sizeof(glueinfo));
707 on->on_bi.bi_private = gi;
708 dnParent( be->be_nsuffix, &gi->gi_pdn );
710 /* Currently the overlay framework doesn't handle these entry points
711 * but we need them....
713 oi->oi_bi.bi_open = glue_open;
714 oi->oi_bi.bi_close = glue_close;
716 oi->oi_bi.bi_entry_release_rw = glue_entry_release_rw;
718 /* Only advertise these if the root DB supports them */
719 if ( bi->bi_tool_entry_open )
720 oi->oi_bi.bi_tool_entry_open = glue_tool_entry_open;
721 if ( bi->bi_tool_entry_close )
722 oi->oi_bi.bi_tool_entry_close = glue_tool_entry_close;
723 if ( bi->bi_tool_entry_first )
724 oi->oi_bi.bi_tool_entry_first = glue_tool_entry_first;
725 if ( bi->bi_tool_entry_next )
726 oi->oi_bi.bi_tool_entry_next = glue_tool_entry_next;
727 if ( bi->bi_tool_entry_get )
728 oi->oi_bi.bi_tool_entry_get = glue_tool_entry_get;
729 if ( bi->bi_tool_entry_put )
730 oi->oi_bi.bi_tool_entry_put = glue_tool_entry_put;
731 if ( bi->bi_tool_entry_reindex )
732 oi->oi_bi.bi_tool_entry_reindex = glue_tool_entry_reindex;
733 if ( bi->bi_tool_sync )
734 oi->oi_bi.bi_tool_sync = glue_tool_sync;
736 /*FIXME : need to add support */
737 oi->oi_bi.bi_tool_dn2id_get = 0;
738 oi->oi_bi.bi_tool_id2entry_get = 0;
739 oi->oi_bi.bi_tool_entry_modify = 0;
741 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_INSTANCE;
751 slap_overinst *on = (slap_overinst *)be->bd_info;
752 glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
755 return SLAP_CB_CONTINUE;
763 slap_overinst *on = (slap_overinst *)be->bd_info;
765 on->on_info->oi_bi.bi_db_close = NULL;
770 glue_sub_del( BackendDB *b0 )
775 /* Find the top backend for this subordinate */
777 while ( (be=LDAP_STAILQ_NEXT( be, be_next )) != NULL ) {
783 if ( SLAP_GLUE_SUBORDINATE( be ))
785 if ( !SLAP_GLUE_INSTANCE( be ))
787 if ( !dnIsSuffix( &b0->be_nsuffix[0], &be->be_nsuffix[0] ))
790 /* OK, got the right backend, find the overlay */
791 oi = (slap_overinfo *)be->bd_info;
792 for ( on=oi->oi_list; on; on=on->on_next ) {
793 if ( on->on_bi.bi_type == glue.on_bi.bi_type )
796 assert( on != NULL );
797 gi = on->on_bi.bi_private;
798 for ( i=0; i < gi->gi_nodes; i++ ) {
799 if ( gi->gi_n[i].gn_be == b0 ) {
802 for (j=i+1; j < gi->gi_nodes; j++)
803 gi->gi_n[j-1] = gi->gi_n[j];
810 rc = LDAP_NO_SUCH_OBJECT;
815 typedef struct glue_Addrec {
816 struct glue_Addrec *ga_next;
820 /* List of added subordinates */
821 static glue_Addrec *ga_list;
823 /* Attach all the subordinate backends to their superior */
827 glue_Addrec *ga, *gnext = NULL;
830 /* For all the subordinate backends */
831 for ( ga=ga_list; ga != NULL; ga = gnext ) {
836 /* Find the top backend for this subordinate */
838 while ( (be=LDAP_STAILQ_NEXT( be, be_next )) != NULL ) {
843 if ( SLAP_GLUE_SUBORDINATE( be ))
845 if ( !dnIsSuffix( &ga->ga_be->be_nsuffix[0], &be->be_nsuffix[0] ))
848 /* If it's not already configured, set up the overlay */
849 if ( !SLAP_GLUE_INSTANCE( be )) {
850 rc = overlay_config( be, glue.on_bi.bi_type );
854 /* Find the overlay instance */
855 oi = (slap_overinfo *)be->bd_info;
856 for ( on=oi->oi_list; on; on=on->on_next ) {
857 if ( on->on_bi.bi_type == glue.on_bi.bi_type )
860 assert( on != NULL );
861 gi = on->on_bi.bi_private;
862 gi = (glueinfo *)ch_realloc( gi, sizeof(glueinfo) +
863 gi->gi_nodes * sizeof(gluenode));
864 gi->gi_n[gi->gi_nodes].gn_be = ga->ga_be;
865 dnParent( &ga->ga_be->be_nsuffix[0],
866 &gi->gi_n[gi->gi_nodes].gn_pdn );
868 on->on_bi.bi_private = gi;
872 Debug( LDAP_DEBUG_ANY, "glue: no superior found for sub %s!\n",
873 ga->ga_be->be_suffix[0].bv_val, 0, 0 );
874 rc = LDAP_NO_SUCH_OBJECT;
886 glue_sub_add( BackendDB *be, int advert, int online )
891 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_SUBORDINATE;
893 SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_ADVERTISE;
895 ga = ch_malloc( sizeof( glue_Addrec ));
896 ga->ga_next = ga_list;
901 rc = glue_sub_attach();
909 glue.on_bi.bi_type = "glue";
911 glue.on_bi.bi_db_init = glue_db_init;
912 glue.on_bi.bi_db_close = glue_db_close;
913 glue.on_bi.bi_db_destroy = glue_db_destroy;
915 glue.on_bi.bi_op_search = glue_op_search;
916 glue.on_bi.bi_op_modify = glue_op_func;
917 glue.on_bi.bi_op_modrdn = glue_op_func;
918 glue.on_bi.bi_op_add = glue_op_func;
919 glue.on_bi.bi_op_delete = glue_op_func;
921 glue.on_bi.bi_chk_referrals = glue_chk_referrals;
922 glue.on_bi.bi_chk_controls = glue_chk_controls;
924 return overlay_register( &glue );