openldap/servers/slapd/backglue.c

648 lines
14 KiB
C
Raw Normal View History

/* backglue.c - backend glue routines */
/* $OpenLDAP$ */
/*
2003-01-04 04:20:47 +08:00
* Copyright 2001-2003 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
/*
* Functions to glue a bunch of other backends into a single tree.
* All of the glued backends must share a common suffix. E.g., you
* can glue o=foo and ou=bar,o=foo but you can't glue o=foo and o=bar.
*
* This uses the backend structures and routines extensively, but is
* not an actual backend of its own. To use it you must add a "subordinate"
* keyword to the configuration of other backends. Subordinates will
* automatically be connected to their parent backend.
*
* The purpose of these functions is to allow you to split a single database
* into pieces (for load balancing purposes, whatever) but still be able
* to treat it as a single database after it's been split. As such, each
* of the glued backends should have identical rootdn and rootpw.
*
* If you need more elaborate configuration, you probably should be using
* back-meta instead.
* -- Howard Chu
*/
#include "portable.h"
#include <stdio.h>
#include <ac/string.h>
#include <ac/socket.h>
#define SLAPD_TOOLS
#include "slap.h"
typedef struct gluenode {
BackendDB *be;
2002-01-18 12:48:58 +08:00
struct berval pdn;
} gluenode;
typedef struct glueinfo {
2002-11-28 23:47:06 +08:00
BackendInfo bi;
BackendDB bd;
int nodes;
gluenode n[1];
} glueinfo;
static int glueMode;
2001-12-10 21:35:04 +08:00
static BackendDB *glueBack;
static slap_response glue_back_response;
static slap_sresult glue_back_sresult;
static slap_sendentry glue_back_sendentry;
static slap_sendreference glue_back_sendreference;
/* Just like select_backend, but only for our backends */
static BackendDB *
glue_back_select (
BackendDB *be,
2001-12-10 21:35:04 +08:00
const char *dn
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) be->bd_info;
2001-12-09 11:09:18 +08:00
struct berval bv;
int i;
2001-12-09 11:09:18 +08:00
bv.bv_len = strlen(dn);
2001-12-10 02:57:46 +08:00
bv.bv_val = (char *) dn;
2001-12-09 11:09:18 +08:00
for (i = 0; i<gi->nodes; i++) {
if (dnIsSuffix(&bv, &gi->n[i].be->be_nsuffix[0])) {
return gi->n[i].be;
}
}
2001-12-10 20:30:43 +08:00
return NULL;
}
/* This function will only be called in tool mode */
static int
glue_back_open (
BackendInfo *bi
)
{
int rc = 0;
static int glueOpened = 0;
if (glueOpened) return 0;
glueOpened = 1;
/* If we were invoked in tool mode, open all the underlying backends */
if (slapMode & SLAP_TOOL_MODE) {
rc = backend_startup (NULL);
} /* other case is impossible */
return rc;
}
/* This function will only be called in tool mode */
static int
glue_back_close (
BackendInfo *bi
)
{
static int glueClosed = 0;
2002-03-30 16:47:13 +08:00
int rc = 0;
if (glueClosed) return 0;
glueClosed = 1;
if (slapMode & SLAP_TOOL_MODE) {
rc = backend_shutdown (NULL);
}
return rc;
}
static int
glue_back_db_open (
BackendDB *be
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) be->bd_info;
static int glueOpened = 0;
int rc = 0;
if (glueOpened) return 0;
glueOpened = 1;
2002-11-28 23:47:06 +08:00
gi->bd.be_acl = be->be_acl;
2002-11-28 23:47:06 +08:00
if (gi->bd.bd_info->bi_db_open)
rc = gi->bd.bd_info->bi_db_open(&gi->bd);
return rc;
}
static int
glue_back_db_close (
BackendDB *be
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) be->bd_info;
static int glueClosed = 0;
if (glueClosed) return 0;
glueClosed = 1;
/* Close the master */
2002-11-28 23:47:06 +08:00
if (gi->bd.bd_info->bi_db_close)
gi->bd.bd_info->bi_db_close( &gi->bd );
return 0;
}
2001-12-24 14:36:44 +08:00
static int
glue_back_db_destroy (
BackendDB *be
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) be->bd_info;
2002-11-28 23:47:06 +08:00
if (gi->bd.bd_info->bi_db_destroy)
gi->bd.bd_info->bi_db_destroy( &gi->bd );
free (gi);
return 0;
}
typedef struct glue_state {
int err;
int nentries;
int matchlen;
char *matched;
2001-12-09 10:46:25 +08:00
int nrefs;
BerVarray refs;
slap_callback *prevcb;
} glue_state;
2001-12-24 14:36:44 +08:00
static void
glue_back_response ( Operation *op, SlapReply *rs )
{
glue_state *gs = op->o_callback->sc_private;
if (rs->sr_err == LDAP_SUCCESS || gs->err != LDAP_SUCCESS)
gs->err = rs->sr_err;
if (gs->err == LDAP_SUCCESS && gs->matched) {
ch_free (gs->matched);
gs->matched = NULL;
gs->matchlen = 0;
}
if (gs->err != LDAP_SUCCESS && rs->sr_matched) {
int len;
len = strlen (rs->sr_matched);
if (len > gs->matchlen) {
if (gs->matched)
ch_free (gs->matched);
gs->matched = ch_strdup (rs->sr_matched);
gs->matchlen = len;
}
}
if (rs->sr_ref) {
2001-12-09 10:46:25 +08:00
int i, j, k;
BerVarray new;
2001-12-09 10:46:25 +08:00
for (i=0; rs->sr_ref[i].bv_val; i++);
2001-12-09 10:46:25 +08:00
j = gs->nrefs;
if (!j) {
2002-01-02 19:00:36 +08:00
new = ch_malloc ((i+1)*sizeof(struct berval));
2001-12-09 10:46:25 +08:00
} else {
new = ch_realloc(gs->refs,
2002-01-02 19:00:36 +08:00
(j+i+1)*sizeof(struct berval));
2001-12-09 10:46:25 +08:00
}
for (k=0; k<i; j++,k++) {
ber_dupbv( &new[j], &rs->sr_ref[k] );
2001-12-09 10:46:25 +08:00
}
2002-01-02 19:00:36 +08:00
new[j].bv_val = NULL;
2001-12-09 10:46:25 +08:00
gs->nrefs = j;
gs->refs = new;
}
}
2001-12-24 14:36:44 +08:00
static void
glue_back_sresult ( Operation *op, SlapReply *rs )
{
glue_state *gs = op->o_callback->sc_private;
gs->nentries += rs->sr_nentries;
glue_back_response( op, rs );
}
static int
glue_back_sendentry ( Operation *op, SlapReply *rs )
{
slap_callback *tmp = op->o_callback;
glue_state *gs = tmp->sc_private;
op->o_callback = gs->prevcb;
if (op->o_callback && op->o_callback->sc_sendentry) {
rs->sr_err = op->o_callback->sc_sendentry(op, rs);
} else {
rs->sr_err = send_search_entry(op, rs);
}
op->o_callback = tmp;
return rs->sr_err;
}
2003-02-01 15:04:13 +08:00
static int
glue_back_sendreference ( Operation *op, SlapReply *rs )
2003-02-01 15:04:13 +08:00
{
slap_callback *tmp = op->o_callback;
glue_state *gs = tmp->sc_private;
op->o_callback = gs->prevcb;
if (op->o_callback && op->o_callback->sc_sendreference) {
rs->sr_err = op->o_callback->sc_sendreference( op, rs );
2003-02-01 15:04:13 +08:00
} else {
rs->sr_err = send_search_reference( op, rs );
2003-02-01 15:04:13 +08:00
}
op->o_callback = tmp;
return rs->sr_err;
2003-02-01 15:04:13 +08:00
}
2001-12-24 14:36:44 +08:00
static int
glue_back_search ( Operation *op, SlapReply *rs )
{
BackendDB *b0 = op->o_bd;
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) b0->bd_info;
int i;
long stoptime = 0;
glue_state gs = {0, 0, 0, NULL, 0, NULL, NULL};
slap_callback cb;
int scope0, slimit0, tlimit0;
struct berval dn, ndn;
cb.sc_response = glue_back_response;
cb.sc_sresult = glue_back_sresult;
cb.sc_sendentry = glue_back_sendentry;
cb.sc_sendreference = glue_back_sendreference;
cb.sc_private = &gs;
gs.prevcb = op->o_callback;
if (op->oq_search.rs_tlimit) {
stoptime = slap_get_time () + op->oq_search.rs_tlimit;
}
switch (op->oq_search.rs_scope) {
case LDAP_SCOPE_BASE:
op->o_bd = glue_back_select (b0, op->o_req_ndn.bv_val);
if (op->o_bd && op->o_bd->be_search) {
rs->sr_err = op->o_bd->be_search( op, rs );
} else {
send_ldap_error(op, rs, LDAP_UNWILLING_TO_PERFORM,
"No search target found");
}
return rs->sr_err;
case LDAP_SCOPE_ONELEVEL:
2001-12-09 11:09:18 +08:00
case LDAP_SCOPE_SUBTREE:
op->o_callback = &cb;
rs->sr_err = gs.err = LDAP_UNWILLING_TO_PERFORM;
scope0 = op->oq_search.rs_scope;
slimit0 = op->oq_search.rs_slimit;
tlimit0 = op->oq_search.rs_tlimit;
dn = op->o_req_dn;
ndn = op->o_req_ndn;
/*
* Execute in reverse order, most general first
*/
for (i = gi->nodes-1; i >= 0; i--) {
2001-12-09 11:09:18 +08:00
if (!gi->n[i].be || !gi->n[i].be->be_search)
continue;
if (tlimit0) {
op->oq_search.rs_tlimit = stoptime - slap_get_time ();
if (op->oq_search.rs_tlimit <= 0) {
rs->sr_err = gs.err = LDAP_TIMELIMIT_EXCEEDED;
break;
}
}
if (slimit0) {
op->oq_search.rs_slimit = slimit0 - gs.nentries;
if (op->oq_search.rs_slimit <= 0) {
rs->sr_err = gs.err = LDAP_SIZELIMIT_EXCEEDED;
break;
}
}
rs->sr_err = 0;
/*
* check for abandon
*/
2002-04-11 16:03:40 +08:00
if (op->o_abandon) {
goto done;
}
op->o_bd = gi->n[i].be;
if (scope0 == LDAP_SCOPE_ONELEVEL &&
dn_match(&gi->n[i].pdn, &ndn)) {
op->oq_search.rs_scope = LDAP_SCOPE_BASE;
op->o_req_dn = op->o_bd->be_suffix[0];
op->o_req_ndn = op->o_bd->be_nsuffix[0];
rs->sr_err = op->o_bd->be_search(op, rs);
} else if (scope0 == LDAP_SCOPE_SUBTREE &&
dnIsSuffix(&op->o_bd->be_nsuffix[0], &ndn)) {
op->o_req_dn = op->o_bd->be_suffix[0];
op->o_req_ndn = op->o_bd->be_nsuffix[0];
rs->sr_err = op->o_bd->be_search( op, rs );
} else if (dnIsSuffix(&ndn, &op->o_bd->be_nsuffix[0])) {
rs->sr_err = op->o_bd->be_search( op, rs );
}
2003-02-06 03:33:01 +08:00
switch ( gs.err ) {
/*
* Add errors that should result in dropping
* the search
*/
case LDAP_SIZELIMIT_EXCEEDED:
case LDAP_TIMELIMIT_EXCEEDED:
case LDAP_ADMINLIMIT_EXCEEDED:
goto end_of_loop;
default:
break;
}
}
2003-02-06 03:33:01 +08:00
end_of_loop:;
op->oq_search.rs_scope = scope0;
op->oq_search.rs_slimit = slimit0;
op->oq_search.rs_tlimit = tlimit0;
op->o_req_dn = dn;
op->o_req_ndn = ndn;
break;
}
op->o_callback = gs.prevcb;
rs->sr_err = gs.err;
rs->sr_matched = gs.matched;
rs->sr_ref = gs.refs;
rs->sr_nentries = gs.nentries;
send_search_result( op, rs );
2001-12-09 10:46:25 +08:00
done:
op->o_bd = b0;
if (gs.matched)
free (gs.matched);
2001-12-09 10:46:25 +08:00
if (gs.refs)
ber_bvarray_free(gs.refs);
return rs->sr_err;
}
2001-12-24 14:36:44 +08:00
static int
glue_tool_entry_open (
BackendDB *b0,
int mode
)
{
/* We don't know which backend to talk to yet, so just
* remember the mode and move on...
*/
glueMode = mode;
2001-12-10 21:35:04 +08:00
glueBack = NULL;
return 0;
}
2001-12-24 14:36:44 +08:00
static int
glue_tool_entry_close (
BackendDB *b0
)
{
2001-12-10 21:35:04 +08:00
int rc = 0;
2001-12-10 21:35:04 +08:00
if (glueBack) {
if (!glueBack->be_entry_close)
return 0;
2001-12-10 21:35:04 +08:00
rc = glueBack->be_entry_close (glueBack);
}
return rc;
}
2001-12-24 14:36:44 +08:00
static ID
glue_tool_entry_first (
BackendDB *b0
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) b0->bd_info;
int i;
/* If we're starting from scratch, start at the most general */
2001-12-10 21:35:04 +08:00
if (!glueBack) {
for (i = gi->nodes-1; i >= 0; i--) {
if (gi->n[i].be->be_entry_open &&
2001-12-10 21:35:04 +08:00
gi->n[i].be->be_entry_first) {
glueBack = gi->n[i].be;
break;
2001-12-10 21:35:04 +08:00
}
}
2001-12-10 21:35:04 +08:00
}
2001-12-10 21:35:04 +08:00
if (!glueBack || glueBack->be_entry_open (glueBack, glueMode) != 0)
return NOID;
2001-12-10 21:35:04 +08:00
return glueBack->be_entry_first (glueBack);
}
2001-12-24 14:36:44 +08:00
static ID
glue_tool_entry_next (
BackendDB *b0
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) b0->bd_info;
2001-12-10 21:35:04 +08:00
int i;
ID rc;
2001-12-10 21:44:02 +08:00
if (!glueBack || !glueBack->be_entry_next)
2001-12-10 21:39:36 +08:00
return NOID;
2001-12-10 21:35:04 +08:00
rc = glueBack->be_entry_next (glueBack);
/* If we ran out of entries in one database, move on to the next */
if (rc == NOID) {
2001-12-10 21:35:04 +08:00
glueBack->be_entry_close (glueBack);
for (i=0; i<gi->nodes; i++) {
if (gi->n[i].be == glueBack)
break;
}
if (i == 0) {
glueBack = NULL;
rc = NOID;
2001-12-10 21:35:04 +08:00
} else {
glueBack = gi->n[i-1].be;
rc = glue_tool_entry_first (b0);
2001-12-10 21:35:04 +08:00
}
}
return rc;
}
2001-12-24 14:36:44 +08:00
static Entry *
glue_tool_entry_get (
BackendDB *b0,
ID id
)
{
2001-12-10 21:44:02 +08:00
if (!glueBack || !glueBack->be_entry_get)
return NULL;
2001-12-10 21:35:04 +08:00
return glueBack->be_entry_get (glueBack, id);
}
2001-12-24 14:36:44 +08:00
static ID
glue_tool_entry_put (
BackendDB *b0,
Entry *e,
struct berval *text
)
{
BackendDB *be;
2001-12-10 21:35:04 +08:00
int rc;
2001-12-10 21:35:04 +08:00
be = glue_back_select (b0, e->e_ndn);
if (!be->be_entry_put)
return NOID;
2001-12-10 21:35:04 +08:00
if (!glueBack) {
rc = be->be_entry_open (be, glueMode);
if (rc != 0)
return NOID;
2001-12-10 21:35:04 +08:00
} else if (be != glueBack) {
/* If this entry belongs in a different branch than the
* previous one, close the current database and open the
* new one.
*/
2001-12-10 21:35:04 +08:00
glueBack->be_entry_close (glueBack);
rc = be->be_entry_open (be, glueMode);
if (rc != 0)
return NOID;
}
2001-12-10 21:35:04 +08:00
glueBack = be;
return be->be_entry_put (be, e, text);
}
2001-12-24 14:36:44 +08:00
static int
glue_tool_entry_reindex (
BackendDB *b0,
ID id
)
{
2001-12-10 21:44:02 +08:00
if (!glueBack || !glueBack->be_entry_reindex)
return -1;
2001-12-10 21:35:04 +08:00
return glueBack->be_entry_reindex (glueBack, id);
}
2001-12-24 14:36:44 +08:00
static int
glue_tool_sync (
BackendDB *b0
)
{
2002-11-28 23:47:06 +08:00
glueinfo *gi = (glueinfo *) b0->bd_info;
int i;
/* just sync everyone */
2002-01-11 17:04:34 +08:00
for (i = 0; i<gi->nodes; i++)
if (gi->n[i].be->be_sync)
gi->n[i].be->be_sync (gi->n[i].be);
return 0;
}
int
glue_sub_init( )
{
2001-12-18 06:48:29 +08:00
int i, j;
2001-12-27 07:26:55 +08:00
int cont = num_subordinates;
BackendDB *b1, *be;
2002-03-30 16:47:13 +08:00
BackendInfo *bi = NULL;
glueinfo *gi;
/* While there are subordinate backends, search backwards through the
* backends and connect them to their superior.
*/
2001-12-10 21:35:04 +08:00
for (i = nBackendDB - 1, b1=&backendDB[i]; cont && i>=0; b1--,i--) {
2003-03-04 06:25:28 +08:00
if (SLAP_GLUE_SUBORDINATE ( b1 ) ) {
/* The last database cannot be a subordinate of noone */
if (i == nBackendDB - 1) {
b1->be_flags ^= SLAP_BFLAG_GLUE_SUBORDINATE;
}
continue;
}
gi = NULL;
2001-12-10 21:35:04 +08:00
for (j = i-1, be=&backendDB[j]; j>=0; be--,j--) {
2003-03-04 06:25:28 +08:00
if ( ! SLAP_GLUE_SUBORDINATE( be ) ) {
continue;
}
/* We will only link it once */
2003-03-04 06:25:28 +08:00
if ( SLAP_GLUE_LINKED( be ) ) {
continue;
}
if (!dnIsSuffix(&be->be_nsuffix[0], &b1->be_nsuffix[0])) {
continue;
}
cont--;
be->be_flags |= SLAP_BFLAG_GLUE_LINKED;
if (gi == NULL) {
/* We create a copy of the superior's be
* structure, pointing to all of its original
* information. Then we replace elements of
* the superior's info with our own. The copy
* is used whenever we have operations to pass
* down to the real database.
*/
b1->be_flags |= SLAP_BFLAG_GLUE_INSTANCE;
gi = (glueinfo *)ch_malloc(sizeof(glueinfo));
gi->nodes = 0;
2002-11-28 23:47:06 +08:00
gi->bd = *b1;
gi->bi = *b1->bd_info;
bi = (BackendInfo *)gi;
bi->bi_open = glue_back_open;
bi->bi_close = glue_back_close;
bi->bi_db_open = glue_back_db_open;
bi->bi_db_close = glue_back_db_close;
bi->bi_db_destroy = glue_back_db_destroy;
bi->bi_op_search = glue_back_search;
/*
* hooks for slap tools
*/
bi->bi_tool_entry_open = glue_tool_entry_open;
bi->bi_tool_entry_close = glue_tool_entry_close;
bi->bi_tool_entry_first = glue_tool_entry_first;
bi->bi_tool_entry_next = glue_tool_entry_next;
bi->bi_tool_entry_get = glue_tool_entry_get;
bi->bi_tool_entry_put = glue_tool_entry_put;
bi->bi_tool_entry_reindex = glue_tool_entry_reindex;
bi->bi_tool_sync = glue_tool_sync;
} else {
gi = (glueinfo *)ch_realloc(gi,
sizeof(glueinfo) +
gi->nodes * sizeof(gluenode));
}
gi->n[gi->nodes].be = be;
dnParent( &be->be_nsuffix[0], &gi->n[gi->nodes].pdn );
gi->nodes++;
}
if (gi) {
/* One more node for the master */
gi = (glueinfo *)ch_realloc(gi,
sizeof(glueinfo) + gi->nodes * sizeof(gluenode));
2002-11-28 23:47:06 +08:00
gi->n[gi->nodes].be = &gi->bd;
dnParent( &b1->be_nsuffix[0], &gi->n[gi->nodes].pdn );
gi->nodes++;
b1->bd_info = bi;
}
}
/* If there are any unresolved subordinates left, something is wrong */
return cont;
}