2005-09-01 19:45:04 +08:00
|
|
|
/* backglue.c - backend glue */
|
2004-11-30 04:55:50 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2021-01-12 03:25:53 +08:00
|
|
|
* Copyright 2001-2021 The OpenLDAP Foundation.
|
2004-11-30 04:55:50 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in the file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* -- Howard Chu
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
#define SLAPD_TOOLS
|
|
|
|
#include "slap.h"
|
2010-04-03 03:15:42 +08:00
|
|
|
#include "lutil.h"
|
2021-01-29 07:22:46 +08:00
|
|
|
#include "slap-config.h"
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
typedef struct gluenode {
|
|
|
|
BackendDB *gn_be;
|
|
|
|
struct berval gn_pdn;
|
|
|
|
} gluenode;
|
|
|
|
|
|
|
|
typedef struct glueinfo {
|
|
|
|
int gi_nodes;
|
|
|
|
struct berval gi_pdn;
|
|
|
|
gluenode gi_n[1];
|
|
|
|
} glueinfo;
|
|
|
|
|
|
|
|
static slap_overinst glue;
|
|
|
|
|
|
|
|
static int glueMode;
|
|
|
|
static BackendDB *glueBack;
|
2009-03-03 08:07:17 +08:00
|
|
|
static BackendDB glueBackDone;
|
|
|
|
#define GLUEBACK_DONE (&glueBackDone)
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2010-04-07 04:33:05 +08:00
|
|
|
static slap_overinst * glue_tool_inst( BackendInfo *bi);
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static slap_response glue_op_response;
|
|
|
|
|
|
|
|
/* Just like select_backend, but only for our backends */
|
|
|
|
static BackendDB *
|
|
|
|
glue_back_select (
|
|
|
|
BackendDB *be,
|
|
|
|
struct berval *dn
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
|
|
|
glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
|
|
|
|
int i;
|
|
|
|
|
2006-06-10 18:31:17 +08:00
|
|
|
for (i = gi->gi_nodes-1; i >= 0; i--) {
|
2005-07-18 14:22:33 +08:00
|
|
|
assert( gi->gi_n[i].gn_be->be_nsuffix != NULL );
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
if (dnIsSuffix(dn, &gi->gi_n[i].gn_be->be_nsuffix[0])) {
|
|
|
|
return gi->gi_n[i].gn_be;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
be->bd_info = on->on_info->oi_orig;
|
|
|
|
return be;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct glue_state {
|
2006-04-05 15:03:25 +08:00
|
|
|
char *matched;
|
|
|
|
BerVarray refs;
|
|
|
|
LDAPControl **ctrls;
|
2004-11-30 04:55:50 +08:00
|
|
|
int err;
|
|
|
|
int matchlen;
|
|
|
|
int nrefs;
|
2006-04-05 15:03:25 +08:00
|
|
|
int nctrls;
|
2004-11-30 04:55:50 +08:00
|
|
|
} glue_state;
|
|
|
|
|
2006-12-19 06:42:46 +08:00
|
|
|
static int
|
|
|
|
glue_op_cleanup( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
/* This is not a final result */
|
|
|
|
if (rs->sr_type == REP_RESULT )
|
|
|
|
rs->sr_type = REP_GLUE_RESULT;
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static int
|
|
|
|
glue_op_response ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
glue_state *gs = op->o_callback->sc_private;
|
|
|
|
|
|
|
|
switch(rs->sr_type) {
|
|
|
|
case REP_SEARCH:
|
|
|
|
case REP_SEARCHREF:
|
2006-02-27 17:20:55 +08:00
|
|
|
case REP_INTERMEDIATE:
|
2004-11-30 04:55:50 +08:00
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (rs->sr_err == LDAP_SUCCESS ||
|
|
|
|
rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ||
|
|
|
|
rs->sr_err == LDAP_TIMELIMIT_EXCEEDED ||
|
|
|
|
rs->sr_err == LDAP_ADMINLIMIT_EXCEEDED ||
|
|
|
|
rs->sr_err == LDAP_NO_SUCH_OBJECT ||
|
|
|
|
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) {
|
|
|
|
int i, j, k;
|
|
|
|
BerVarray new;
|
|
|
|
|
|
|
|
for (i=0; rs->sr_ref[i].bv_val; i++);
|
|
|
|
|
|
|
|
j = gs->nrefs;
|
|
|
|
if (!j) {
|
|
|
|
new = ch_malloc ((i+1)*sizeof(struct berval));
|
|
|
|
} else {
|
|
|
|
new = ch_realloc(gs->refs,
|
|
|
|
(j+i+1)*sizeof(struct berval));
|
|
|
|
}
|
|
|
|
for (k=0; k<i; j++,k++) {
|
|
|
|
ber_dupbv( &new[j], &rs->sr_ref[k] );
|
|
|
|
}
|
|
|
|
new[j].bv_val = NULL;
|
|
|
|
gs->nrefs = j;
|
|
|
|
gs->refs = new;
|
|
|
|
}
|
2006-04-05 15:03:25 +08:00
|
|
|
if (rs->sr_ctrls) {
|
|
|
|
int i, j, k;
|
|
|
|
LDAPControl **newctrls;
|
|
|
|
|
|
|
|
for (i=0; rs->sr_ctrls[i]; i++);
|
|
|
|
|
|
|
|
j = gs->nctrls;
|
|
|
|
if (!j) {
|
2010-04-03 03:15:42 +08:00
|
|
|
newctrls = op->o_tmpalloc((i+1)*sizeof(LDAPControl *),
|
|
|
|
op->o_tmpmemctx);
|
2006-04-05 15:03:25 +08:00
|
|
|
} else {
|
2007-11-01 23:11:22 +08:00
|
|
|
/* Forget old pagedResults response if we're sending
|
|
|
|
* a new one now
|
|
|
|
*/
|
|
|
|
if ( get_pagedresults( op ) > SLAP_CONTROL_IGNORED ) {
|
|
|
|
int newpage = 0;
|
|
|
|
for ( k=0; k<i; k++ ) {
|
|
|
|
if ( !strcmp(rs->sr_ctrls[k]->ldctl_oid,
|
|
|
|
LDAP_CONTROL_PAGEDRESULTS )) {
|
|
|
|
newpage = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ( newpage ) {
|
|
|
|
for ( k=0; k<j; k++ ) {
|
|
|
|
if ( !strcmp(gs->ctrls[k]->ldctl_oid,
|
2010-04-03 03:15:42 +08:00
|
|
|
LDAP_CONTROL_PAGEDRESULTS ))
|
|
|
|
{
|
|
|
|
op->o_tmpfree(gs->ctrls[k], op->o_tmpmemctx);
|
|
|
|
gs->ctrls[k] = gs->ctrls[--j];
|
|
|
|
gs->ctrls[j] = NULL;
|
|
|
|
break;
|
2007-11-01 23:11:22 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-04-03 03:15:42 +08:00
|
|
|
newctrls = op->o_tmprealloc(gs->ctrls,
|
|
|
|
(j+i+1)*sizeof(LDAPControl *), op->o_tmpmemctx);
|
2006-04-05 15:03:25 +08:00
|
|
|
}
|
|
|
|
for (k=0; k<i; j++,k++) {
|
2010-04-03 03:15:42 +08:00
|
|
|
ber_len_t oidlen = strlen( rs->sr_ctrls[k]->ldctl_oid );
|
|
|
|
newctrls[j] = op->o_tmpalloc(sizeof(LDAPControl) + oidlen + 1 + rs->sr_ctrls[k]->ldctl_value.bv_len + 1,
|
|
|
|
op->o_tmpmemctx);
|
|
|
|
newctrls[j]->ldctl_iscritical = rs->sr_ctrls[k]->ldctl_iscritical;
|
|
|
|
newctrls[j]->ldctl_oid = (char *)&newctrls[j][1];
|
|
|
|
lutil_strcopy( newctrls[j]->ldctl_oid, rs->sr_ctrls[k]->ldctl_oid );
|
|
|
|
if ( !BER_BVISNULL( &rs->sr_ctrls[k]->ldctl_value ) ) {
|
|
|
|
newctrls[j]->ldctl_value.bv_val = &newctrls[j]->ldctl_oid[oidlen + 1];
|
|
|
|
newctrls[j]->ldctl_value.bv_len = rs->sr_ctrls[k]->ldctl_value.bv_len;
|
|
|
|
lutil_memcopy( newctrls[j]->ldctl_value.bv_val,
|
|
|
|
rs->sr_ctrls[k]->ldctl_value.bv_val,
|
|
|
|
rs->sr_ctrls[k]->ldctl_value.bv_len + 1 );
|
|
|
|
} else {
|
|
|
|
BER_BVZERO( &newctrls[j]->ldctl_value );
|
|
|
|
}
|
2006-04-05 15:03:25 +08:00
|
|
|
}
|
|
|
|
newctrls[j] = NULL;
|
|
|
|
gs->nctrls = j;
|
|
|
|
gs->ctrls = newctrls;
|
|
|
|
}
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-12-05 03:26:22 +08:00
|
|
|
static int
|
|
|
|
glue_op_func ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
BackendDB *b0 = op->o_bd;
|
2013-12-11 21:40:45 +08:00
|
|
|
BackendInfo *bi0 = op->o_bd->bd_info, *bi1;
|
2005-11-07 07:27:09 +08:00
|
|
|
slap_operation_t which = op_bind;
|
2004-12-05 03:26:22 +08:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
op->o_bd = glue_back_select (b0, &op->o_req_ndn);
|
2006-04-05 08:27:16 +08:00
|
|
|
|
2020-06-16 04:06:35 +08:00
|
|
|
/* If we're on the primary backend, let overlay framework handle it */
|
2006-04-05 08:27:16 +08:00
|
|
|
if ( op->o_bd == b0 )
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
2004-12-05 03:26:22 +08:00
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
|
|
|
|
switch(op->o_tag) {
|
2005-07-22 00:35:20 +08:00
|
|
|
case LDAP_REQ_ADD: which = op_add; break;
|
|
|
|
case LDAP_REQ_DELETE: which = op_delete; break;
|
|
|
|
case LDAP_REQ_MODIFY: which = op_modify; break;
|
|
|
|
case LDAP_REQ_MODRDN: which = op_modrdn; break;
|
2006-12-19 06:29:45 +08:00
|
|
|
case LDAP_REQ_EXTENDED: which = op_extended; break;
|
2005-11-07 07:27:09 +08:00
|
|
|
default: assert( 0 ); break;
|
2004-12-05 03:26:22 +08:00
|
|
|
}
|
|
|
|
|
2013-12-11 21:40:45 +08:00
|
|
|
bi1 = op->o_bd->bd_info;
|
|
|
|
rc = (&bi1->bi_op_bind)[ which ] ?
|
|
|
|
(&bi1->bi_op_bind)[ which ]( op, rs ) : SLAP_CB_BYPASS;
|
2004-12-05 03:26:22 +08:00
|
|
|
|
|
|
|
op->o_bd = b0;
|
|
|
|
op->o_bd->bd_info = bi0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2011-08-24 04:48:59 +08:00
|
|
|
static int
|
|
|
|
glue_op_abandon( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
|
|
|
|
BackendDB *b0 = op->o_bd;
|
|
|
|
BackendInfo *bi0 = op->o_bd->bd_info;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
|
|
|
|
for (i = gi->gi_nodes-1; i >= 0; i--) {
|
|
|
|
assert( gi->gi_n[i].gn_be->be_nsuffix != NULL );
|
|
|
|
op->o_bd = gi->gi_n[i].gn_be;
|
|
|
|
if ( op->o_bd == b0 )
|
|
|
|
continue;
|
|
|
|
if ( op->o_bd->bd_info->bi_op_abandon )
|
|
|
|
op->o_bd->bd_info->bi_op_abandon( op, rs );
|
|
|
|
}
|
|
|
|
op->o_bd = b0;
|
|
|
|
op->o_bd->bd_info = bi0;
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
}
|
|
|
|
|
2006-12-13 11:03:47 +08:00
|
|
|
static int
|
|
|
|
glue_response ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
BackendDB *be = op->o_bd;
|
|
|
|
be = glue_back_select (op->o_bd, &op->o_req_ndn);
|
|
|
|
|
2020-06-16 04:06:35 +08:00
|
|
|
/* If we're on the primary backend, let overlay framework handle it.
|
2006-12-13 11:03:47 +08:00
|
|
|
* Otherwise, bail out.
|
|
|
|
*/
|
|
|
|
return ( op->o_bd == be ) ? SLAP_CB_CONTINUE : SLAP_CB_BYPASS;
|
|
|
|
}
|
|
|
|
|
2005-01-29 05:38:02 +08:00
|
|
|
static int
|
|
|
|
glue_chk_referrals ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
BackendDB *b0 = op->o_bd;
|
|
|
|
BackendInfo *bi0 = op->o_bd->bd_info;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
op->o_bd = glue_back_select (b0, &op->o_req_ndn);
|
2006-04-05 08:27:16 +08:00
|
|
|
if ( op->o_bd == b0 )
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
2005-01-29 05:38:02 +08:00
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
|
|
|
|
if ( op->o_bd->bd_info->bi_chk_referrals )
|
|
|
|
rc = ( *op->o_bd->bd_info->bi_chk_referrals )( op, rs );
|
|
|
|
else
|
|
|
|
rc = SLAP_CB_CONTINUE;
|
|
|
|
|
|
|
|
op->o_bd = b0;
|
|
|
|
op->o_bd->bd_info = bi0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-01-30 03:04:06 +08:00
|
|
|
static int
|
|
|
|
glue_chk_controls ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
BackendDB *b0 = op->o_bd;
|
|
|
|
BackendInfo *bi0 = op->o_bd->bd_info;
|
2005-01-31 06:02:37 +08:00
|
|
|
int rc = SLAP_CB_CONTINUE;
|
2005-01-30 03:04:06 +08:00
|
|
|
|
|
|
|
op->o_bd = glue_back_select (b0, &op->o_req_ndn);
|
2006-04-05 08:27:16 +08:00
|
|
|
if ( op->o_bd == b0 )
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
2005-01-30 03:04:06 +08:00
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
|
2005-01-31 06:02:37 +08:00
|
|
|
/* if the subordinate database has overlays, the bi_chk_controls()
|
|
|
|
* hook is actually over_aux_chk_controls(); in case it actually
|
|
|
|
* wraps a missing hok, we need to mimic the behavior
|
|
|
|
* of the frontend applied to that database */
|
|
|
|
if ( op->o_bd->bd_info->bi_chk_controls ) {
|
2005-01-30 03:04:06 +08:00
|
|
|
rc = ( *op->o_bd->bd_info->bi_chk_controls )( op, rs );
|
2005-01-31 06:02:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ( rc == SLAP_CB_CONTINUE ) {
|
|
|
|
rc = backend_check_controls( op, rs );
|
|
|
|
}
|
2005-01-30 03:04:06 +08:00
|
|
|
|
|
|
|
op->o_bd = b0;
|
|
|
|
op->o_bd->bd_info = bi0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2006-07-15 08:18:44 +08:00
|
|
|
/* ITS#4615 - overlays configured above the glue overlay should be
|
|
|
|
* invoked for the entire glued tree. Overlays configured below the
|
2020-06-16 04:06:35 +08:00
|
|
|
* glue overlay should only be invoked on the primary backend.
|
2006-07-15 08:18:44 +08:00
|
|
|
* So, if we're searching on any subordinates, we need to force the
|
|
|
|
* current overlay chain to stop processing, without stopping the
|
|
|
|
* overall callback flow.
|
|
|
|
*/
|
2006-04-05 08:27:16 +08:00
|
|
|
static int
|
|
|
|
glue_sub_search( Operation *op, SlapReply *rs, BackendDB *b0,
|
|
|
|
slap_overinst *on )
|
|
|
|
{
|
2020-06-16 04:06:35 +08:00
|
|
|
/* Process any overlays on the primary backend */
|
2006-04-05 08:27:16 +08:00
|
|
|
if ( op->o_bd == b0 && on->on_next ) {
|
|
|
|
BackendInfo *bi = op->o_bd->bd_info;
|
2006-04-07 12:17:44 +08:00
|
|
|
int rc = SLAP_CB_CONTINUE;
|
2006-04-05 08:27:16 +08:00
|
|
|
for ( on=on->on_next; on; on=on->on_next ) {
|
|
|
|
op->o_bd->bd_info = (BackendInfo *)on;
|
2006-04-07 12:17:44 +08:00
|
|
|
if ( on->on_bi.bi_op_search ) {
|
|
|
|
rc = on->on_bi.bi_op_search( op, rs );
|
|
|
|
if ( rc != SLAP_CB_CONTINUE )
|
|
|
|
break;
|
|
|
|
}
|
2006-04-05 08:27:16 +08:00
|
|
|
}
|
|
|
|
op->o_bd->bd_info = bi;
|
|
|
|
if ( rc != SLAP_CB_CONTINUE )
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
return op->o_bd->be_search( op, rs );
|
|
|
|
}
|
|
|
|
|
2010-04-07 06:04:58 +08:00
|
|
|
static const ID glueID = NOID;
|
|
|
|
static const struct berval gluecookie = { sizeof( glueID ), (char *)&glueID };
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static int
|
|
|
|
glue_op_search ( Operation *op, SlapReply *rs )
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
|
|
|
|
glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
|
|
|
|
BackendDB *b0 = op->o_bd;
|
2007-11-12 20:16:05 +08:00
|
|
|
BackendDB *b1 = NULL, *btmp;
|
2004-11-30 04:55:50 +08:00
|
|
|
BackendInfo *bi0 = op->o_bd->bd_info;
|
|
|
|
int i;
|
2006-05-09 08:01:35 +08:00
|
|
|
long stoptime = 0, starttime;
|
2006-04-05 15:03:25 +08:00
|
|
|
glue_state gs = {NULL, NULL, NULL, 0, 0, 0, 0};
|
2006-12-19 06:42:46 +08:00
|
|
|
slap_callback cb = { NULL, glue_op_response, glue_op_cleanup, NULL };
|
2005-11-26 04:50:34 +08:00
|
|
|
int scope0, tlimit0;
|
2004-11-30 04:55:50 +08:00
|
|
|
struct berval dn, ndn, *pdn;
|
|
|
|
|
|
|
|
cb.sc_private = &gs;
|
|
|
|
|
|
|
|
cb.sc_next = op->o_callback;
|
|
|
|
|
2006-05-09 08:01:35 +08:00
|
|
|
starttime = op->o_time;
|
2004-11-30 04:55:50 +08:00
|
|
|
stoptime = slap_get_time () + op->ors_tlimit;
|
|
|
|
|
2010-04-07 06:04:58 +08:00
|
|
|
/* reset dummy cookie used to keep paged results going across databases */
|
|
|
|
if ( get_pagedresults( op ) > SLAP_CONTROL_IGNORED
|
|
|
|
&& bvmatch( &((PagedResultsState *)op->o_pagedresults_state)->ps_cookieval, &gluecookie ) )
|
|
|
|
{
|
|
|
|
PagedResultsState *ps = op->o_pagedresults_state;
|
|
|
|
BerElementBuffer berbuf;
|
|
|
|
BerElement *ber = (BerElement *)&berbuf;
|
|
|
|
struct berval cookie = BER_BVC(""), value;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for (c = 0; op->o_ctrls[c] != NULL; c++) {
|
|
|
|
if (strcmp(op->o_ctrls[c]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert( op->o_ctrls[c] != NULL );
|
|
|
|
|
|
|
|
ber_init2( ber, NULL, LBER_USE_DER );
|
|
|
|
ber_printf( ber, "{iO}", ps->ps_size, &cookie );
|
|
|
|
ber_flatten2( ber, &value, 0 );
|
|
|
|
assert( op->o_ctrls[c]->ldctl_value.bv_len >= value.bv_len );
|
|
|
|
op->o_ctrls[c]->ldctl_value.bv_len = value.bv_len;
|
|
|
|
lutil_memcopy( op->o_ctrls[c]->ldctl_value.bv_val,
|
|
|
|
value.bv_val, value.bv_len );
|
|
|
|
ber_free_buf( ber );
|
|
|
|
|
|
|
|
ps->ps_cookie = (PagedResultsCookie)0;
|
|
|
|
BER_BVZERO( &ps->ps_cookieval );
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
op->o_bd = glue_back_select (b0, &op->o_req_ndn);
|
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
|
|
|
|
switch (op->ors_scope) {
|
|
|
|
case LDAP_SCOPE_BASE:
|
2006-04-05 08:27:16 +08:00
|
|
|
if ( op->o_bd == b0 )
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
2005-03-17 05:03:51 +08:00
|
|
|
if (op->o_bd && op->o_bd->be_search) {
|
|
|
|
rs->sr_err = op->o_bd->be_search( op, rs );
|
2010-12-31 07:59:23 +08:00
|
|
|
} else {
|
|
|
|
rs->sr_err = LDAP_UNWILLING_TO_PERFORM;
|
2005-03-17 05:03:51 +08:00
|
|
|
}
|
|
|
|
return rs->sr_err;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
case LDAP_SCOPE_ONELEVEL:
|
|
|
|
case LDAP_SCOPE_SUBTREE:
|
|
|
|
case LDAP_SCOPE_SUBORDINATE: /* FIXME */
|
|
|
|
op->o_callback = &cb;
|
|
|
|
rs->sr_err = gs.err = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
scope0 = op->ors_scope;
|
|
|
|
tlimit0 = op->ors_tlimit;
|
|
|
|
dn = op->o_req_dn;
|
|
|
|
ndn = op->o_req_ndn;
|
2007-11-12 20:16:05 +08:00
|
|
|
b1 = op->o_bd;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
/*
|
2006-06-10 18:31:17 +08:00
|
|
|
* Execute in reverse order, most specific first
|
2004-11-30 04:55:50 +08:00
|
|
|
*/
|
|
|
|
for (i = gi->gi_nodes; i >= 0; i--) {
|
|
|
|
if ( i == gi->gi_nodes ) {
|
|
|
|
btmp = b0;
|
|
|
|
pdn = &gi->gi_pdn;
|
|
|
|
} else {
|
|
|
|
btmp = gi->gi_n[i].gn_be;
|
|
|
|
pdn = &gi->gi_n[i].gn_pdn;
|
|
|
|
}
|
|
|
|
if (!btmp || !btmp->be_search)
|
|
|
|
continue;
|
2007-11-12 20:16:05 +08:00
|
|
|
if (!dnIsSuffix(&btmp->be_nsuffix[0], &b1->be_nsuffix[0]))
|
2007-11-01 23:11:22 +08:00
|
|
|
continue;
|
2007-11-12 20:16:05 +08:00
|
|
|
if (get_no_subordinate_glue(op) && btmp != b1)
|
2004-11-30 04:55:50 +08:00
|
|
|
continue;
|
2007-11-01 23:11:22 +08:00
|
|
|
/* If we remembered which backend we were on before,
|
|
|
|
* skip down to it now
|
|
|
|
*/
|
|
|
|
if ( get_pagedresults( op ) > SLAP_CONTROL_IGNORED &&
|
|
|
|
op->o_conn->c_pagedresults_state.ps_be &&
|
|
|
|
op->o_conn->c_pagedresults_state.ps_be != btmp )
|
2006-06-10 20:31:22 +08:00
|
|
|
continue;
|
2006-06-10 18:31:17 +08:00
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
if (tlimit0 != SLAP_NO_LIMIT) {
|
2006-05-09 08:01:35 +08:00
|
|
|
op->o_time = slap_get_time();
|
|
|
|
op->ors_tlimit = stoptime - op->o_time;
|
2004-11-30 04:55:50 +08:00
|
|
|
if (op->ors_tlimit <= 0) {
|
|
|
|
rs->sr_err = gs.err = LDAP_TIMELIMIT_EXCEEDED;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
rs->sr_err = 0;
|
|
|
|
/*
|
|
|
|
* check for abandon
|
|
|
|
*/
|
|
|
|
if (op->o_abandon) {
|
|
|
|
goto end_of_loop;
|
|
|
|
}
|
|
|
|
op->o_bd = btmp;
|
|
|
|
|
2005-07-18 14:22:33 +08:00
|
|
|
assert( op->o_bd->be_suffix != NULL );
|
|
|
|
assert( op->o_bd->be_nsuffix != NULL );
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
if (scope0 == LDAP_SCOPE_ONELEVEL &&
|
|
|
|
dn_match(pdn, &ndn))
|
|
|
|
{
|
2008-09-07 00:24:27 +08:00
|
|
|
struct berval mdn, mndn;
|
2004-11-30 04:55:50 +08:00
|
|
|
op->ors_scope = LDAP_SCOPE_BASE;
|
2008-09-07 00:24:27 +08:00
|
|
|
mdn = op->o_req_dn = op->o_bd->be_suffix[0];
|
|
|
|
mndn = op->o_req_ndn = op->o_bd->be_nsuffix[0];
|
2004-11-30 04:55:50 +08:00
|
|
|
rs->sr_err = op->o_bd->be_search(op, rs);
|
2005-12-09 09:20:05 +08:00
|
|
|
if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
|
|
|
|
gs.err = LDAP_SUCCESS;
|
|
|
|
}
|
2006-06-17 05:58:40 +08:00
|
|
|
op->ors_scope = LDAP_SCOPE_ONELEVEL;
|
2008-09-07 00:24:27 +08:00
|
|
|
if ( op->o_req_dn.bv_val == mdn.bv_val )
|
|
|
|
op->o_req_dn = dn;
|
|
|
|
if ( op->o_req_ndn.bv_val == mndn.bv_val )
|
|
|
|
op->o_req_ndn = ndn;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
} else if (scope0 == LDAP_SCOPE_SUBTREE &&
|
|
|
|
dn_match(&op->o_bd->be_nsuffix[0], &ndn))
|
|
|
|
{
|
2006-04-05 08:27:16 +08:00
|
|
|
rs->sr_err = glue_sub_search( op, rs, b0, on );
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
} else if (scope0 == LDAP_SCOPE_SUBTREE &&
|
|
|
|
dnIsSuffix(&op->o_bd->be_nsuffix[0], &ndn))
|
|
|
|
{
|
2008-09-07 00:24:27 +08:00
|
|
|
struct berval mdn, mndn;
|
|
|
|
mdn = op->o_req_dn = op->o_bd->be_suffix[0];
|
|
|
|
mndn = op->o_req_ndn = op->o_bd->be_nsuffix[0];
|
2006-04-05 08:27:16 +08:00
|
|
|
rs->sr_err = glue_sub_search( op, rs, b0, on );
|
2004-11-30 04:55:50 +08:00
|
|
|
if ( rs->sr_err == LDAP_NO_SUCH_OBJECT ) {
|
|
|
|
gs.err = LDAP_SUCCESS;
|
|
|
|
}
|
2008-09-07 00:24:27 +08:00
|
|
|
if ( op->o_req_dn.bv_val == mdn.bv_val )
|
|
|
|
op->o_req_dn = dn;
|
|
|
|
if ( op->o_req_ndn.bv_val == mndn.bv_val )
|
|
|
|
op->o_req_ndn = ndn;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
} else if (dnIsSuffix(&ndn, &op->o_bd->be_nsuffix[0])) {
|
2006-04-05 08:27:16 +08:00
|
|
|
rs->sr_err = glue_sub_search( op, rs, b0, on );
|
2004-11-30 04:55:50 +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:
|
|
|
|
case LDAP_NO_SUCH_OBJECT:
|
2005-01-31 19:22:12 +08:00
|
|
|
#ifdef LDAP_CONTROL_X_CHAINING_BEHAVIOR
|
2005-11-03 09:27:07 +08:00
|
|
|
case LDAP_X_CANNOT_CHAIN:
|
2005-01-31 19:22:12 +08:00
|
|
|
#endif /* LDAP_CONTROL_X_CHAINING_BEHAVIOR */
|
2004-11-30 04:55:50 +08:00
|
|
|
goto end_of_loop;
|
2007-11-01 23:11:22 +08:00
|
|
|
|
|
|
|
case LDAP_SUCCESS:
|
|
|
|
if ( get_pagedresults( op ) > SLAP_CONTROL_IGNORED ) {
|
|
|
|
PagedResultsState *ps = op->o_pagedresults_state;
|
|
|
|
|
|
|
|
/* Assume this backend can be forgotten now */
|
|
|
|
op->o_conn->c_pagedresults_state.ps_be = NULL;
|
|
|
|
|
|
|
|
/* If we have a full page, exit the loop. We may
|
|
|
|
* need to remember this backend so we can continue
|
|
|
|
* from here on a subsequent request.
|
|
|
|
*/
|
|
|
|
if ( rs->sr_nentries >= ps->ps_size ) {
|
2010-04-09 03:51:18 +08:00
|
|
|
PagedResultsState *cps = &op->o_conn->c_pagedresults_state;
|
|
|
|
|
2007-11-01 23:11:22 +08:00
|
|
|
/* Don't bother to remember the first backend.
|
|
|
|
* Only remember the last one if there's more state left.
|
|
|
|
*/
|
|
|
|
if ( op->o_bd != b0 &&
|
2010-04-09 03:51:18 +08:00
|
|
|
( cps->ps_cookie != NOID
|
|
|
|
|| !BER_BVISNULL( &cps->ps_cookieval )
|
|
|
|
|| op->o_bd != gi->gi_n[0].gn_be ) )
|
2010-04-07 08:53:36 +08:00
|
|
|
{
|
2007-11-01 23:11:22 +08:00
|
|
|
op->o_conn->c_pagedresults_state.ps_be = op->o_bd;
|
2010-04-07 08:53:36 +08:00
|
|
|
}
|
2010-04-07 06:04:58 +08:00
|
|
|
|
|
|
|
/* Check whether the cookie is empty,
|
|
|
|
* and give remaining databases a chance
|
|
|
|
*/
|
2010-04-09 03:51:18 +08:00
|
|
|
if ( op->o_bd != gi->gi_n[0].gn_be || cps->ps_cookie == NOID ) {
|
2010-04-07 06:04:58 +08:00
|
|
|
int c;
|
|
|
|
|
|
|
|
for ( c = 0; gs.ctrls[c] != NULL; c++ ) {
|
|
|
|
if ( strcmp( gs.ctrls[c]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS ) == 0 ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( gs.ctrls[c] != NULL ) {
|
|
|
|
BerElementBuffer berbuf;
|
|
|
|
BerElement *ber = (BerElement *)&berbuf;
|
|
|
|
ber_tag_t tag;
|
|
|
|
ber_int_t size;
|
|
|
|
struct berval cookie, value;
|
|
|
|
|
|
|
|
ber_init2( ber, &gs.ctrls[c]->ldctl_value, LBER_USE_DER );
|
|
|
|
|
|
|
|
tag = ber_scanf( ber, "{im}", &size, &cookie );
|
|
|
|
assert( tag != LBER_ERROR );
|
|
|
|
|
2010-04-09 01:16:38 +08:00
|
|
|
if ( BER_BVISEMPTY( &cookie ) && op->o_bd != gi->gi_n[0].gn_be ) {
|
2010-04-08 08:27:18 +08:00
|
|
|
/* delete old, create new cookie with NOID */
|
|
|
|
PagedResultsCookie respcookie = (PagedResultsCookie)NOID;
|
|
|
|
ber_len_t oidlen = strlen( gs.ctrls[c]->ldctl_oid );
|
|
|
|
LDAPControl *newctrl;
|
|
|
|
|
2010-04-09 01:16:38 +08:00
|
|
|
/* it's next database's turn */
|
2010-04-07 06:04:58 +08:00
|
|
|
if ( btmp == b0 ) {
|
|
|
|
op->o_conn->c_pagedresults_state.ps_be = gi->gi_n[gi->gi_nodes - 1].gn_be;
|
|
|
|
|
2010-04-07 08:53:36 +08:00
|
|
|
} else {
|
|
|
|
op->o_conn->c_pagedresults_state.ps_be = gi->gi_n[(i > 0 ? i - 1: 0)].gn_be;
|
2010-04-07 06:04:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
cookie.bv_val = (char *)&respcookie;
|
|
|
|
cookie.bv_len = sizeof( PagedResultsCookie );
|
|
|
|
|
|
|
|
ber_init2( ber, NULL, LBER_USE_DER );
|
|
|
|
ber_printf( ber, "{iO}", 0, &cookie );
|
|
|
|
ber_flatten2( ber, &value, 0 );
|
|
|
|
|
|
|
|
newctrl = op->o_tmprealloc( gs.ctrls[c],
|
|
|
|
sizeof(LDAPControl) + oidlen + 1 + value.bv_len + 1,
|
|
|
|
op->o_tmpmemctx);
|
|
|
|
newctrl->ldctl_iscritical = gs.ctrls[c]->ldctl_iscritical;
|
|
|
|
newctrl->ldctl_oid = (char *)&newctrl[1];
|
|
|
|
lutil_strcopy( newctrl->ldctl_oid, gs.ctrls[c]->ldctl_oid );
|
|
|
|
newctrl->ldctl_value.bv_len = value.bv_len;
|
|
|
|
lutil_memcopy( newctrl->ldctl_value.bv_val,
|
|
|
|
value.bv_val, value.bv_len );
|
|
|
|
|
|
|
|
gs.ctrls[c] = newctrl;
|
|
|
|
|
|
|
|
ber_free_buf( ber );
|
2010-04-07 08:53:36 +08:00
|
|
|
|
2010-04-09 03:51:18 +08:00
|
|
|
} else if ( !BER_BVISEMPTY( &cookie ) && op->o_bd != b0 ) {
|
2010-04-09 01:16:38 +08:00
|
|
|
/* if cookie not empty, it's again this database's turn */
|
2010-04-07 08:53:36 +08:00
|
|
|
op->o_conn->c_pagedresults_state.ps_be = op->o_bd;
|
2010-04-07 06:04:58 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-01 23:11:22 +08:00
|
|
|
goto end_of_loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This backend has run out of entries, but more responses
|
|
|
|
* can fit in the page. Fake a reset of the state so the
|
|
|
|
* next backend will start up properly. Only back-[bh]db
|
|
|
|
* and back-sql look at this state info.
|
|
|
|
*/
|
2010-04-09 03:51:18 +08:00
|
|
|
ps->ps_cookie = (PagedResultsCookie)0;
|
|
|
|
BER_BVZERO( &ps->ps_cookieval );
|
2010-04-03 03:15:42 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
/* change the size of the page in the request
|
2010-04-07 06:04:58 +08:00
|
|
|
* that will be propagated, and reset the cookie */
|
2010-04-03 03:15:42 +08:00
|
|
|
BerElementBuffer berbuf;
|
|
|
|
BerElement *ber = (BerElement *)&berbuf;
|
|
|
|
int size = ps->ps_size - rs->sr_nentries;
|
|
|
|
struct berval cookie = BER_BVC(""), value;
|
|
|
|
int c;
|
|
|
|
|
|
|
|
for (c = 0; op->o_ctrls[c] != NULL; c++) {
|
|
|
|
if (strcmp(op->o_ctrls[c]->ldctl_oid, LDAP_CONTROL_PAGEDRESULTS) == 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2010-04-07 06:04:58 +08:00
|
|
|
assert( op->o_ctrls[c] != NULL );
|
|
|
|
|
2010-04-03 03:15:42 +08:00
|
|
|
ber_init2( ber, NULL, LBER_USE_DER );
|
|
|
|
ber_printf( ber, "{iO}", size, &cookie );
|
|
|
|
ber_flatten2( ber, &value, 0 );
|
|
|
|
assert( op->o_ctrls[c]->ldctl_value.bv_len >= value.bv_len );
|
|
|
|
op->o_ctrls[c]->ldctl_value.bv_len = value.bv_len;
|
|
|
|
lutil_memcopy( op->o_ctrls[c]->ldctl_value.bv_val,
|
|
|
|
value.bv_val, value.bv_len );
|
|
|
|
ber_free_buf( ber );
|
|
|
|
}
|
2007-11-01 23:11:22 +08:00
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end_of_loop:;
|
|
|
|
op->ors_scope = scope0;
|
|
|
|
op->ors_tlimit = tlimit0;
|
2006-05-09 08:01:35 +08:00
|
|
|
op->o_time = starttime;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
2009-05-11 12:29:21 +08:00
|
|
|
|
|
|
|
op->o_callback = cb.sc_next;
|
2005-02-19 20:10:40 +08:00
|
|
|
if ( op->o_abandon ) {
|
|
|
|
rs->sr_err = SLAPD_ABANDON;
|
|
|
|
} else {
|
2004-11-30 04:55:50 +08:00
|
|
|
rs->sr_err = gs.err;
|
|
|
|
rs->sr_matched = gs.matched;
|
|
|
|
rs->sr_ref = gs.refs;
|
|
|
|
}
|
2009-05-11 12:29:21 +08:00
|
|
|
rs->sr_ctrls = gs.ctrls;
|
|
|
|
|
|
|
|
send_ldap_result( op, rs );
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
op->o_bd = b0;
|
|
|
|
op->o_bd->bd_info = bi0;
|
|
|
|
if (gs.matched)
|
|
|
|
free (gs.matched);
|
|
|
|
if (gs.refs)
|
|
|
|
ber_bvarray_free(gs.refs);
|
2006-04-05 15:03:25 +08:00
|
|
|
if (gs.ctrls) {
|
2006-04-05 22:15:34 +08:00
|
|
|
for (i = gs.nctrls; --i >= 0; ) {
|
2010-04-03 03:15:42 +08:00
|
|
|
op->o_tmpfree(gs.ctrls[i], op->o_tmpmemctx);
|
2006-04-05 15:03:25 +08:00
|
|
|
}
|
2010-04-03 03:15:42 +08:00
|
|
|
op->o_tmpfree(gs.ctrls, op->o_tmpmemctx);
|
2006-04-05 15:03:25 +08:00
|
|
|
}
|
2004-11-30 04:55:50 +08:00
|
|
|
return rs->sr_err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static BackendDB toolDB;
|
|
|
|
|
|
|
|
static int
|
|
|
|
glue_tool_entry_open (
|
|
|
|
BackendDB *b0,
|
|
|
|
int mode
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinfo *oi = (slap_overinfo *)b0->bd_info;
|
|
|
|
|
|
|
|
/* We don't know which backend to talk to yet, so just
|
|
|
|
* remember the mode and move on...
|
|
|
|
*/
|
|
|
|
|
|
|
|
glueMode = mode;
|
|
|
|
glueBack = NULL;
|
|
|
|
toolDB = *b0;
|
|
|
|
toolDB.bd_info = oi->oi_orig;
|
|
|
|
|
2010-04-07 04:33:05 +08:00
|
|
|
/* Sanity checks */
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( b0->bd_info );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < gi->gi_nodes; i++) {
|
|
|
|
BackendDB *bd;
|
|
|
|
struct berval pdn;
|
|
|
|
|
|
|
|
dnParent( &gi->gi_n[i].gn_be->be_nsuffix[0], &pdn );
|
|
|
|
bd = select_backend( &pdn, 0 );
|
|
|
|
if ( bd ) {
|
|
|
|
ID id;
|
|
|
|
BackendDB db;
|
|
|
|
|
|
|
|
if ( overlay_is_over( bd ) ) {
|
|
|
|
slap_overinfo *oi = (slap_overinfo *)bd->bd_info;
|
|
|
|
db = *bd;
|
|
|
|
db.bd_info = oi->oi_orig;
|
|
|
|
bd = &db;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !bd->bd_info->bi_tool_dn2id_get
|
|
|
|
|| !bd->bd_info->bi_tool_entry_open
|
|
|
|
|| !bd->bd_info->bi_tool_entry_close )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
bd->bd_info->bi_tool_entry_open( bd, 0 );
|
|
|
|
id = bd->bd_info->bi_tool_dn2id_get( bd, &gi->gi_n[i].gn_be->be_nsuffix[0] );
|
|
|
|
bd->bd_info->bi_tool_entry_close( bd );
|
|
|
|
if ( id != NOID ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"glue_tool_entry_open: subordinate database suffix entry DN=\"%s\" also present in superior database rooted at DN=\"%s\"\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
gi->gi_n[i].gn_be->be_suffix[0].bv_val, bd->be_suffix[0].bv_val );
|
2010-04-07 04:33:05 +08:00
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
glue_tool_entry_close (
|
|
|
|
BackendDB *b0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
2009-03-03 08:07:17 +08:00
|
|
|
if (glueBack && glueBack != GLUEBACK_DONE) {
|
2004-11-30 04:55:50 +08:00
|
|
|
if (!glueBack->be_entry_close)
|
|
|
|
return 0;
|
|
|
|
rc = glueBack->be_entry_close (glueBack);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static slap_overinst *
|
|
|
|
glue_tool_inst(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinfo *oi = (slap_overinfo *)bi;
|
|
|
|
slap_overinst *on;
|
|
|
|
|
|
|
|
for ( on = oi->oi_list; on; on=on->on_next ) {
|
|
|
|
if ( !strcmp( on->on_bi.bi_type, glue.on_bi.bi_type ))
|
|
|
|
return on;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function will only be called in tool mode */
|
|
|
|
static int
|
|
|
|
glue_open (
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( bi );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
2004-12-05 14:44:54 +08:00
|
|
|
static int glueOpened = 0;
|
2005-04-26 08:46:00 +08:00
|
|
|
int i, j, same, bsame = 0, rc = 0;
|
2008-03-20 09:24:33 +08:00
|
|
|
ConfigReply cr = {0};
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2004-12-05 14:44:54 +08:00
|
|
|
if (glueOpened) return 0;
|
|
|
|
|
|
|
|
glueOpened = 1;
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
/* If we were invoked in tool mode, open all the underlying backends */
|
|
|
|
if (slapMode & SLAP_TOOL_MODE) {
|
2005-04-26 08:46:00 +08:00
|
|
|
for (i = 0; i<gi->gi_nodes; i++) {
|
|
|
|
same = 0;
|
2005-09-09 15:40:54 +08:00
|
|
|
/* Same bi_open as our main backend? */
|
|
|
|
if ( gi->gi_n[i].gn_be->bd_info->bi_open ==
|
|
|
|
on->on_info->oi_orig->bi_open )
|
2005-04-26 08:46:00 +08:00
|
|
|
bsame = 1;
|
|
|
|
|
|
|
|
/* Loop thru the bd_info's and make sure we only
|
|
|
|
* invoke their bi_open functions once each.
|
|
|
|
*/
|
|
|
|
for ( j = 0; j<i; j++ ) {
|
2005-09-09 15:40:54 +08:00
|
|
|
if ( gi->gi_n[i].gn_be->bd_info->bi_open ==
|
|
|
|
gi->gi_n[j].gn_be->bd_info->bi_open ) {
|
2005-04-26 08:46:00 +08:00
|
|
|
same = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* OK, it's unique and non-NULL, call it. */
|
|
|
|
if ( !same && gi->gi_n[i].gn_be->bd_info->bi_open )
|
|
|
|
rc = gi->gi_n[i].gn_be->bd_info->bi_open(
|
|
|
|
gi->gi_n[i].gn_be->bd_info );
|
|
|
|
/* Let backend.c take care of the rest of startup */
|
|
|
|
if ( !rc )
|
2008-03-20 09:24:33 +08:00
|
|
|
rc = backend_startup_one( gi->gi_n[i].gn_be, &cr );
|
2005-04-26 08:46:00 +08:00
|
|
|
if ( rc ) break;
|
|
|
|
}
|
|
|
|
if ( !rc && !bsame && on->on_info->oi_orig->bi_open )
|
|
|
|
rc = on->on_info->oi_orig->bi_open( on->on_info->oi_orig );
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
} /* other case is impossible */
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function will only be called in tool mode */
|
|
|
|
static int
|
|
|
|
glue_close (
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
2004-12-05 14:44:54 +08:00
|
|
|
static int glueClosed = 0;
|
2005-07-15 03:32:21 +08:00
|
|
|
int rc = 0;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2004-12-05 14:44:54 +08:00
|
|
|
if (glueClosed) return 0;
|
|
|
|
|
|
|
|
glueClosed = 1;
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
if (slapMode & SLAP_TOOL_MODE) {
|
2004-12-05 14:44:54 +08:00
|
|
|
rc = backend_shutdown( NULL );
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2007-02-06 12:18:14 +08:00
|
|
|
static int
|
|
|
|
glue_entry_get_rw (
|
|
|
|
Operation *op,
|
|
|
|
struct berval *dn,
|
|
|
|
ObjectClass *oc,
|
|
|
|
AttributeDescription *ad,
|
|
|
|
int rw,
|
|
|
|
Entry **e )
|
|
|
|
{
|
2007-02-15 09:41:56 +08:00
|
|
|
int rc;
|
2007-02-06 12:18:14 +08:00
|
|
|
BackendDB *b0 = op->o_bd;
|
|
|
|
op->o_bd = glue_back_select( b0, dn );
|
|
|
|
|
|
|
|
if ( op->o_bd->be_fetch ) {
|
|
|
|
rc = op->o_bd->be_fetch( op, dn, oc, ad, rw, e );
|
|
|
|
} else {
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
}
|
|
|
|
op->o_bd =b0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-12-05 14:44:54 +08:00
|
|
|
static int
|
|
|
|
glue_entry_release_rw (
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
|
|
|
int rw
|
|
|
|
)
|
|
|
|
{
|
2007-02-06 12:18:14 +08:00
|
|
|
BackendDB *b0 = op->o_bd;
|
2005-07-01 17:25:55 +08:00
|
|
|
int rc = -1;
|
2004-12-05 14:44:54 +08:00
|
|
|
|
2007-02-06 12:18:14 +08:00
|
|
|
op->o_bd = glue_back_select (b0, &e->e_nname);
|
2004-12-05 14:44:54 +08:00
|
|
|
|
2005-07-01 17:25:55 +08:00
|
|
|
if ( op->o_bd->be_release ) {
|
|
|
|
rc = op->o_bd->be_release( op, e, rw );
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* FIXME: mimic be_entry_release_rw
|
|
|
|
* when no be_release() available */
|
|
|
|
/* free entry */
|
|
|
|
entry_free( e );
|
|
|
|
rc = 0;
|
|
|
|
}
|
2004-12-05 14:44:54 +08:00
|
|
|
op->o_bd = b0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-01-18 23:00:40 +08:00
|
|
|
static struct berval *glue_base;
|
|
|
|
static int glue_scope;
|
|
|
|
static Filter *glue_filter;
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static ID
|
|
|
|
glue_tool_entry_first (
|
|
|
|
BackendDB *b0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( b0->bd_info );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
|
|
|
int i;
|
2009-03-03 08:07:17 +08:00
|
|
|
ID rc;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
/* If we're starting from scratch, start at the most general */
|
|
|
|
if (!glueBack) {
|
|
|
|
if ( toolDB.be_entry_open && toolDB.be_entry_first ) {
|
|
|
|
glueBack = &toolDB;
|
|
|
|
} else {
|
|
|
|
for (i = gi->gi_nodes-1; i >= 0; i--) {
|
|
|
|
if (gi->gi_n[i].gn_be->be_entry_open &&
|
|
|
|
gi->gi_n[i].gn_be->be_entry_first) {
|
|
|
|
glueBack = gi->gi_n[i].gn_be;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!glueBack || !glueBack->be_entry_open || !glueBack->be_entry_first ||
|
|
|
|
glueBack->be_entry_open (glueBack, glueMode) != 0)
|
|
|
|
return NOID;
|
|
|
|
|
2009-03-03 08:07:17 +08:00
|
|
|
rc = glueBack->be_entry_first (glueBack);
|
|
|
|
while ( rc == NOID ) {
|
|
|
|
if ( glueBack && glueBack->be_entry_close )
|
|
|
|
glueBack->be_entry_close (glueBack);
|
|
|
|
for (i=0; i<gi->gi_nodes; i++) {
|
|
|
|
if (gi->gi_n[i].gn_be == glueBack)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == 0) {
|
|
|
|
glueBack = GLUEBACK_DONE;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
glueBack = gi->gi_n[i-1].gn_be;
|
|
|
|
rc = glue_tool_entry_first (b0);
|
|
|
|
if ( glueBack == GLUEBACK_DONE ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
|
2010-01-18 23:00:40 +08:00
|
|
|
static ID
|
|
|
|
glue_tool_entry_first_x (
|
|
|
|
BackendDB *b0,
|
|
|
|
struct berval *base,
|
|
|
|
int scope,
|
|
|
|
Filter *f
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( b0->bd_info );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
|
|
|
int i;
|
|
|
|
ID rc;
|
|
|
|
|
|
|
|
glue_base = base;
|
|
|
|
glue_scope = scope;
|
|
|
|
glue_filter = f;
|
|
|
|
|
|
|
|
/* If we're starting from scratch, start at the most general */
|
|
|
|
if (!glueBack) {
|
|
|
|
if ( toolDB.be_entry_open && toolDB.be_entry_first_x ) {
|
|
|
|
glueBack = &toolDB;
|
|
|
|
} else {
|
|
|
|
for (i = gi->gi_nodes-1; i >= 0; i--) {
|
|
|
|
if (gi->gi_n[i].gn_be->be_entry_open &&
|
|
|
|
gi->gi_n[i].gn_be->be_entry_first_x)
|
|
|
|
{
|
|
|
|
glueBack = gi->gi_n[i].gn_be;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!glueBack || !glueBack->be_entry_open || !glueBack->be_entry_first_x ||
|
|
|
|
glueBack->be_entry_open (glueBack, glueMode) != 0)
|
|
|
|
return NOID;
|
|
|
|
|
|
|
|
rc = glueBack->be_entry_first_x (glueBack,
|
|
|
|
glue_base, glue_scope, glue_filter);
|
|
|
|
while ( rc == NOID ) {
|
|
|
|
if ( glueBack && glueBack->be_entry_close )
|
|
|
|
glueBack->be_entry_close (glueBack);
|
|
|
|
for (i=0; i<gi->gi_nodes; i++) {
|
|
|
|
if (gi->gi_n[i].gn_be == glueBack)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == 0) {
|
|
|
|
glueBack = GLUEBACK_DONE;
|
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
glueBack = gi->gi_n[i-1].gn_be;
|
|
|
|
rc = glue_tool_entry_first_x (b0,
|
|
|
|
glue_base, glue_scope, glue_filter);
|
|
|
|
if ( glueBack == GLUEBACK_DONE ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static ID
|
|
|
|
glue_tool_entry_next (
|
|
|
|
BackendDB *b0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( b0->bd_info );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
|
|
|
int i;
|
|
|
|
ID rc;
|
|
|
|
|
|
|
|
if (!glueBack || !glueBack->be_entry_next)
|
|
|
|
return NOID;
|
|
|
|
|
|
|
|
rc = glueBack->be_entry_next (glueBack);
|
|
|
|
|
|
|
|
/* If we ran out of entries in one database, move on to the next */
|
|
|
|
while (rc == NOID) {
|
|
|
|
if ( glueBack && glueBack->be_entry_close )
|
|
|
|
glueBack->be_entry_close (glueBack);
|
|
|
|
for (i=0; i<gi->gi_nodes; i++) {
|
|
|
|
if (gi->gi_n[i].gn_be == glueBack)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == 0) {
|
2009-03-03 08:07:17 +08:00
|
|
|
glueBack = GLUEBACK_DONE;
|
2004-11-30 04:55:50 +08:00
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
glueBack = gi->gi_n[i-1].gn_be;
|
2010-01-18 23:00:40 +08:00
|
|
|
if ( glue_base || glue_filter ) {
|
|
|
|
/* using entry_first_x() */
|
|
|
|
rc = glue_tool_entry_first_x (b0,
|
|
|
|
glue_base, glue_scope, glue_filter);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* using entry_first() */
|
|
|
|
rc = glue_tool_entry_first (b0);
|
|
|
|
}
|
2009-03-03 08:07:17 +08:00
|
|
|
if ( glueBack == GLUEBACK_DONE ) {
|
|
|
|
break;
|
|
|
|
}
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2008-03-21 07:34:04 +08:00
|
|
|
static ID
|
|
|
|
glue_tool_dn2id_get (
|
|
|
|
BackendDB *b0,
|
|
|
|
struct berval *dn
|
|
|
|
)
|
|
|
|
{
|
|
|
|
BackendDB *be, b2;
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
b2 = *b0;
|
|
|
|
b2.bd_info = (BackendInfo *)glue_tool_inst( b0->bd_info );
|
|
|
|
be = glue_back_select (&b2, dn);
|
|
|
|
if ( be == &b2 ) be = &toolDB;
|
|
|
|
|
|
|
|
if (!be->be_dn2id_get)
|
|
|
|
return NOID;
|
|
|
|
|
|
|
|
if (!glueBack) {
|
|
|
|
if ( be->be_entry_open ) {
|
|
|
|
rc = be->be_entry_open (be, glueMode);
|
|
|
|
}
|
|
|
|
if (rc != 0) {
|
|
|
|
return NOID;
|
|
|
|
}
|
|
|
|
} 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.
|
|
|
|
*/
|
|
|
|
if ( glueBack->be_entry_close ) {
|
|
|
|
glueBack->be_entry_close (glueBack);
|
|
|
|
}
|
|
|
|
if ( be->be_entry_open ) {
|
|
|
|
rc = be->be_entry_open (be, glueMode);
|
|
|
|
}
|
|
|
|
if (rc != 0) {
|
|
|
|
return NOID;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
glueBack = be;
|
|
|
|
return be->be_dn2id_get (be, dn);
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static Entry *
|
|
|
|
glue_tool_entry_get (
|
|
|
|
BackendDB *b0,
|
|
|
|
ID id
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!glueBack || !glueBack->be_entry_get)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return glueBack->be_entry_get (glueBack, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ID
|
|
|
|
glue_tool_entry_put (
|
|
|
|
BackendDB *b0,
|
|
|
|
Entry *e,
|
|
|
|
struct berval *text
|
|
|
|
)
|
|
|
|
{
|
|
|
|
BackendDB *be, b2;
|
2005-07-17 20:14:42 +08:00
|
|
|
int rc = -1;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
|
|
|
b2 = *b0;
|
|
|
|
b2.bd_info = (BackendInfo *)glue_tool_inst( b0->bd_info );
|
|
|
|
be = glue_back_select (&b2, &e->e_nname);
|
|
|
|
if ( be == &b2 ) be = &toolDB;
|
|
|
|
|
|
|
|
if (!be->be_entry_put)
|
|
|
|
return NOID;
|
|
|
|
|
|
|
|
if (!glueBack) {
|
2005-07-01 17:53:20 +08:00
|
|
|
if ( be->be_entry_open ) {
|
|
|
|
rc = be->be_entry_open (be, glueMode);
|
|
|
|
}
|
|
|
|
if (rc != 0) {
|
2004-11-30 04:55:50 +08:00
|
|
|
return NOID;
|
2005-07-01 17:53:20 +08:00
|
|
|
}
|
2004-11-30 04:55:50 +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.
|
|
|
|
*/
|
2005-07-01 17:53:20 +08:00
|
|
|
if ( glueBack->be_entry_close ) {
|
|
|
|
glueBack->be_entry_close (glueBack);
|
|
|
|
}
|
|
|
|
if ( be->be_entry_open ) {
|
|
|
|
rc = be->be_entry_open (be, glueMode);
|
|
|
|
}
|
|
|
|
if (rc != 0) {
|
2004-11-30 04:55:50 +08:00
|
|
|
return NOID;
|
2005-07-01 17:53:20 +08:00
|
|
|
}
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
glueBack = be;
|
|
|
|
return be->be_entry_put (be, e, text);
|
|
|
|
}
|
|
|
|
|
2008-03-21 07:34:04 +08:00
|
|
|
static ID
|
|
|
|
glue_tool_entry_modify (
|
|
|
|
BackendDB *b0,
|
|
|
|
Entry *e,
|
|
|
|
struct berval *text
|
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!glueBack || !glueBack->be_entry_modify)
|
|
|
|
return NOID;
|
|
|
|
|
|
|
|
return glueBack->be_entry_modify (glueBack, e, text);
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static int
|
|
|
|
glue_tool_entry_reindex (
|
|
|
|
BackendDB *b0,
|
2007-01-15 09:20:08 +08:00
|
|
|
ID id,
|
|
|
|
AttributeDescription **adv
|
2004-11-30 04:55:50 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
if (!glueBack || !glueBack->be_entry_reindex)
|
|
|
|
return -1;
|
|
|
|
|
2007-01-15 09:20:08 +08:00
|
|
|
return glueBack->be_entry_reindex (glueBack, id, adv);
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
glue_tool_sync (
|
|
|
|
BackendDB *b0
|
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = glue_tool_inst( b0->bd_info );
|
|
|
|
glueinfo *gi = on->on_bi.bi_private;
|
2004-12-05 16:19:28 +08:00
|
|
|
BackendInfo *bi = b0->bd_info;
|
2004-11-30 04:55:50 +08:00
|
|
|
int i;
|
|
|
|
|
|
|
|
/* just sync everyone */
|
|
|
|
for (i = 0; i<gi->gi_nodes; i++)
|
|
|
|
if (gi->gi_n[i].gn_be->be_sync)
|
|
|
|
gi->gi_n[i].gn_be->be_sync (gi->gi_n[i].gn_be);
|
2004-12-05 16:19:28 +08:00
|
|
|
b0->bd_info = on->on_info->oi_orig;
|
|
|
|
if ( b0->be_sync )
|
|
|
|
b0->be_sync( b0 );
|
|
|
|
b0->bd_info = bi;
|
2004-11-30 04:55:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-02-06 05:44:21 +08:00
|
|
|
typedef struct glue_Addrec {
|
|
|
|
struct glue_Addrec *ga_next;
|
|
|
|
BackendDB *ga_be;
|
|
|
|
} glue_Addrec;
|
|
|
|
|
|
|
|
/* List of added subordinates */
|
|
|
|
static glue_Addrec *ga_list;
|
2009-02-06 06:59:02 +08:00
|
|
|
static int ga_adding;
|
2009-02-06 05:44:21 +08:00
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
static int
|
|
|
|
glue_db_init(
|
2007-07-26 01:21:05 +08:00
|
|
|
BackendDB *be,
|
2007-08-03 20:02:07 +08:00
|
|
|
ConfigReply *cr
|
2004-11-30 04:55:50 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
|
|
|
slap_overinfo *oi = on->on_info;
|
2005-09-09 19:37:00 +08:00
|
|
|
BackendInfo *bi = oi->oi_orig;
|
2004-11-30 04:55:50 +08:00
|
|
|
glueinfo *gi;
|
|
|
|
|
2006-07-15 08:18:44 +08:00
|
|
|
if ( SLAP_GLUE_SUBORDINATE( be )) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "glue: backend %s is already subordinate, "
|
|
|
|
"cannot have glue overlay!\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
be->be_suffix[0].bv_val );
|
2006-07-15 08:18:44 +08:00
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
gi = ch_calloc( 1, sizeof(glueinfo));
|
|
|
|
on->on_bi.bi_private = gi;
|
|
|
|
dnParent( be->be_nsuffix, &gi->gi_pdn );
|
|
|
|
|
|
|
|
/* Currently the overlay framework doesn't handle these entry points
|
|
|
|
* but we need them....
|
|
|
|
*/
|
|
|
|
oi->oi_bi.bi_open = glue_open;
|
|
|
|
oi->oi_bi.bi_close = glue_close;
|
|
|
|
|
2005-09-09 19:37:00 +08:00
|
|
|
/* Only advertise these if the root DB supports them */
|
|
|
|
if ( bi->bi_tool_entry_open )
|
|
|
|
oi->oi_bi.bi_tool_entry_open = glue_tool_entry_open;
|
|
|
|
if ( bi->bi_tool_entry_close )
|
|
|
|
oi->oi_bi.bi_tool_entry_close = glue_tool_entry_close;
|
|
|
|
if ( bi->bi_tool_entry_first )
|
|
|
|
oi->oi_bi.bi_tool_entry_first = glue_tool_entry_first;
|
2010-01-18 23:00:40 +08:00
|
|
|
/* FIXME: check whether all support bi_tool_entry_first_x() ? */
|
|
|
|
if ( bi->bi_tool_entry_first_x )
|
|
|
|
oi->oi_bi.bi_tool_entry_first_x = glue_tool_entry_first_x;
|
2005-09-09 19:37:00 +08:00
|
|
|
if ( bi->bi_tool_entry_next )
|
|
|
|
oi->oi_bi.bi_tool_entry_next = glue_tool_entry_next;
|
|
|
|
if ( bi->bi_tool_entry_get )
|
|
|
|
oi->oi_bi.bi_tool_entry_get = glue_tool_entry_get;
|
2008-03-21 07:34:04 +08:00
|
|
|
if ( bi->bi_tool_dn2id_get )
|
|
|
|
oi->oi_bi.bi_tool_dn2id_get = glue_tool_dn2id_get;
|
2005-09-09 19:37:00 +08:00
|
|
|
if ( bi->bi_tool_entry_put )
|
|
|
|
oi->oi_bi.bi_tool_entry_put = glue_tool_entry_put;
|
|
|
|
if ( bi->bi_tool_entry_reindex )
|
|
|
|
oi->oi_bi.bi_tool_entry_reindex = glue_tool_entry_reindex;
|
2008-03-21 07:34:04 +08:00
|
|
|
if ( bi->bi_tool_entry_modify )
|
|
|
|
oi->oi_bi.bi_tool_entry_modify = glue_tool_entry_modify;
|
2005-09-09 19:37:00 +08:00
|
|
|
if ( bi->bi_tool_sync )
|
|
|
|
oi->oi_bi.bi_tool_sync = glue_tool_sync;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_INSTANCE;
|
|
|
|
|
2018-06-27 17:32:04 +08:00
|
|
|
if ( ga_list && ( slapMode & SLAP_SERVER_MODE ) ) {
|
2009-02-11 09:48:09 +08:00
|
|
|
be->bd_info = (BackendInfo *)oi;
|
2009-02-06 05:44:21 +08:00
|
|
|
glue_sub_attach( 1 );
|
2009-02-10 12:32:15 +08:00
|
|
|
}
|
2009-02-06 05:44:21 +08:00
|
|
|
|
2004-11-30 04:55:50 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
glue_db_destroy (
|
2007-07-26 01:21:05 +08:00
|
|
|
BackendDB *be,
|
2007-08-03 20:02:07 +08:00
|
|
|
ConfigReply *cr
|
2004-11-30 04:55:50 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
|
|
|
glueinfo *gi = (glueinfo *)on->on_bi.bi_private;
|
|
|
|
|
|
|
|
free (gi);
|
2021-01-20 19:37:01 +08:00
|
|
|
return 0;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
|
2004-12-05 15:07:50 +08:00
|
|
|
static int
|
|
|
|
glue_db_close(
|
2007-07-26 01:21:05 +08:00
|
|
|
BackendDB *be,
|
2007-08-03 20:02:07 +08:00
|
|
|
ConfigReply *cr
|
2004-12-05 15:07:50 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
slap_overinst *on = (slap_overinst *)be->bd_info;
|
|
|
|
|
2006-04-03 03:54:24 +08:00
|
|
|
on->on_info->oi_bi.bi_db_close = 0;
|
2004-12-05 15:30:12 +08:00
|
|
|
return 0;
|
2004-12-05 15:07:50 +08:00
|
|
|
}
|
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
int
|
|
|
|
glue_sub_del( BackendDB *b0 )
|
2004-11-30 04:55:50 +08:00
|
|
|
{
|
2005-09-01 19:45:04 +08:00
|
|
|
BackendDB *be;
|
|
|
|
int rc = 0;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
/* Find the top backend for this subordinate */
|
|
|
|
be = b0;
|
2005-09-04 01:03:36 +08:00
|
|
|
while ( (be=LDAP_STAILQ_NEXT( be, be_next )) != NULL ) {
|
2005-09-01 19:45:04 +08:00
|
|
|
slap_overinfo *oi;
|
|
|
|
slap_overinst *on;
|
|
|
|
glueinfo *gi;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if ( SLAP_GLUE_SUBORDINATE( be ))
|
|
|
|
continue;
|
|
|
|
if ( !SLAP_GLUE_INSTANCE( be ))
|
|
|
|
continue;
|
|
|
|
if ( !dnIsSuffix( &b0->be_nsuffix[0], &be->be_nsuffix[0] ))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* OK, got the right backend, find the overlay */
|
|
|
|
oi = (slap_overinfo *)be->bd_info;
|
|
|
|
for ( on=oi->oi_list; on; on=on->on_next ) {
|
|
|
|
if ( on->on_bi.bi_type == glue.on_bi.bi_type )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert( on != NULL );
|
|
|
|
gi = on->on_bi.bi_private;
|
|
|
|
for ( i=0; i < gi->gi_nodes; i++ ) {
|
|
|
|
if ( gi->gi_n[i].gn_be == b0 ) {
|
|
|
|
int j;
|
2005-01-31 08:15:45 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
for (j=i+1; j < gi->gi_nodes; j++)
|
|
|
|
gi->gi_n[j-1] = gi->gi_n[j];
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
gi->gi_nodes--;
|
|
|
|
}
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
}
|
|
|
|
if ( be == NULL )
|
|
|
|
rc = LDAP_NO_SUCH_OBJECT;
|
2005-01-31 08:15:45 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
return rc;
|
|
|
|
}
|
2005-01-31 08:15:45 +08:00
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
|
|
|
|
/* Attach all the subordinate backends to their superior */
|
2005-09-27 23:10:57 +08:00
|
|
|
int
|
2009-02-06 05:44:21 +08:00
|
|
|
glue_sub_attach( int online )
|
2005-09-01 19:45:04 +08:00
|
|
|
{
|
|
|
|
glue_Addrec *ga, *gnext = NULL;
|
|
|
|
int rc = 0;
|
|
|
|
|
2009-02-06 06:59:02 +08:00
|
|
|
if ( ga_adding )
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
ga_adding = 1;
|
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
/* For all the subordinate backends */
|
|
|
|
for ( ga=ga_list; ga != NULL; ga = gnext ) {
|
|
|
|
BackendDB *be;
|
|
|
|
|
|
|
|
gnext = ga->ga_next;
|
|
|
|
|
|
|
|
/* Find the top backend for this subordinate */
|
|
|
|
be = ga->ga_be;
|
2005-09-04 01:03:36 +08:00
|
|
|
while ( (be=LDAP_STAILQ_NEXT( be, be_next )) != NULL ) {
|
2005-09-01 19:45:04 +08:00
|
|
|
slap_overinfo *oi;
|
|
|
|
slap_overinst *on;
|
|
|
|
glueinfo *gi;
|
|
|
|
|
|
|
|
if ( SLAP_GLUE_SUBORDINATE( be ))
|
|
|
|
continue;
|
|
|
|
if ( !dnIsSuffix( &ga->ga_be->be_nsuffix[0], &be->be_nsuffix[0] ))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* If it's not already configured, set up the overlay */
|
|
|
|
if ( !SLAP_GLUE_INSTANCE( be )) {
|
2008-05-30 22:49:24 +08:00
|
|
|
rc = overlay_config( be, glue.on_bi.bi_type, -1, NULL, NULL);
|
2005-09-01 19:45:04 +08:00
|
|
|
if ( rc )
|
|
|
|
break;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
/* Find the overlay instance */
|
|
|
|
oi = (slap_overinfo *)be->bd_info;
|
|
|
|
for ( on=oi->oi_list; on; on=on->on_next ) {
|
|
|
|
if ( on->on_bi.bi_type == glue.on_bi.bi_type )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
assert( on != NULL );
|
|
|
|
gi = on->on_bi.bi_private;
|
|
|
|
gi = (glueinfo *)ch_realloc( gi, sizeof(glueinfo) +
|
|
|
|
gi->gi_nodes * sizeof(gluenode));
|
|
|
|
gi->gi_n[gi->gi_nodes].gn_be = ga->ga_be;
|
|
|
|
dnParent( &ga->ga_be->be_nsuffix[0],
|
|
|
|
&gi->gi_n[gi->gi_nodes].gn_pdn );
|
|
|
|
gi->gi_nodes++;
|
|
|
|
on->on_bi.bi_private = gi;
|
2009-02-06 05:54:11 +08:00
|
|
|
ga->ga_be->be_flags |= SLAP_DBFLAG_GLUE_LINKED;
|
2005-09-01 19:45:04 +08:00
|
|
|
break;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
if ( !be ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "glue: no superior found for sub %s!\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
ga->ga_be->be_suffix[0].bv_val );
|
2009-02-06 05:44:21 +08:00
|
|
|
/* allow this for now, assume a superior will
|
|
|
|
* be added later
|
|
|
|
*/
|
2009-02-06 06:59:02 +08:00
|
|
|
if ( online ) {
|
|
|
|
rc = 0;
|
|
|
|
gnext = ga_list;
|
|
|
|
break;
|
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
rc = LDAP_NO_SUCH_OBJECT;
|
2005-01-31 08:15:45 +08:00
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
ch_free( ga );
|
|
|
|
if ( rc ) break;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
|
|
|
|
ga_list = gnext;
|
|
|
|
|
2009-02-06 06:59:02 +08:00
|
|
|
ga_adding = 0;
|
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
return rc;
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2005-09-01 19:45:04 +08:00
|
|
|
glue_sub_add( BackendDB *be, int advert, int online )
|
2004-11-30 04:55:50 +08:00
|
|
|
{
|
2005-09-01 19:45:04 +08:00
|
|
|
glue_Addrec *ga;
|
|
|
|
int rc = 0;
|
|
|
|
|
2006-07-15 08:18:44 +08:00
|
|
|
if ( overlay_is_inst( be, "glue" )) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "glue: backend %s already has glue overlay, "
|
|
|
|
"cannot be a subordinate!\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
be->be_suffix[0].bv_val );
|
2006-07-15 08:18:44 +08:00
|
|
|
return LDAP_OTHER;
|
|
|
|
}
|
2005-09-01 19:45:04 +08:00
|
|
|
SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_SUBORDINATE;
|
|
|
|
if ( advert )
|
|
|
|
SLAP_DBFLAGS( be ) |= SLAP_DBFLAG_GLUE_ADVERTISE;
|
|
|
|
|
|
|
|
ga = ch_malloc( sizeof( glue_Addrec ));
|
2005-09-09 19:43:13 +08:00
|
|
|
ga->ga_next = ga_list;
|
2005-09-01 19:45:04 +08:00
|
|
|
ga->ga_be = be;
|
2005-09-09 19:43:13 +08:00
|
|
|
ga_list = ga;
|
2005-09-01 19:45:04 +08:00
|
|
|
|
|
|
|
if ( online )
|
2009-02-06 05:44:21 +08:00
|
|
|
rc = glue_sub_attach( online );
|
2005-09-01 19:45:04 +08:00
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2010-02-02 23:51:32 +08:00
|
|
|
static int
|
|
|
|
glue_access_allowed(
|
|
|
|
Operation *op,
|
|
|
|
Entry *e,
|
|
|
|
AttributeDescription *desc,
|
|
|
|
struct berval *val,
|
|
|
|
slap_access_t access,
|
|
|
|
AccessControlState *state,
|
|
|
|
slap_mask_t *maskp )
|
|
|
|
{
|
|
|
|
BackendDB *b0, *be = glue_back_select( op->o_bd, &e->e_nname );
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
if ( be == NULL || be == op->o_bd || be->bd_info->bi_access_allowed == NULL )
|
|
|
|
return SLAP_CB_CONTINUE;
|
|
|
|
|
|
|
|
b0 = op->o_bd;
|
|
|
|
op->o_bd = be;
|
|
|
|
rc = be->bd_info->bi_access_allowed ( op, e, desc, val, access, state, maskp );
|
|
|
|
op->o_bd = b0;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2005-09-01 19:45:04 +08:00
|
|
|
int
|
|
|
|
glue_sub_init()
|
|
|
|
{
|
2004-11-30 04:55:50 +08:00
|
|
|
glue.on_bi.bi_type = "glue";
|
|
|
|
|
|
|
|
glue.on_bi.bi_db_init = glue_db_init;
|
2004-12-05 15:07:50 +08:00
|
|
|
glue.on_bi.bi_db_close = glue_db_close;
|
2004-11-30 04:55:50 +08:00
|
|
|
glue.on_bi.bi_db_destroy = glue_db_destroy;
|
|
|
|
|
|
|
|
glue.on_bi.bi_op_search = glue_op_search;
|
2004-12-05 03:26:22 +08:00
|
|
|
glue.on_bi.bi_op_modify = glue_op_func;
|
|
|
|
glue.on_bi.bi_op_modrdn = glue_op_func;
|
2005-09-01 19:45:04 +08:00
|
|
|
glue.on_bi.bi_op_add = glue_op_func;
|
2004-12-05 03:26:22 +08:00
|
|
|
glue.on_bi.bi_op_delete = glue_op_func;
|
2011-08-24 04:48:59 +08:00
|
|
|
glue.on_bi.bi_op_abandon = glue_op_abandon;
|
2006-12-19 06:29:45 +08:00
|
|
|
glue.on_bi.bi_extended = glue_op_func;
|
2004-11-30 04:55:50 +08:00
|
|
|
|
2005-01-29 05:38:02 +08:00
|
|
|
glue.on_bi.bi_chk_referrals = glue_chk_referrals;
|
2005-01-30 03:04:06 +08:00
|
|
|
glue.on_bi.bi_chk_controls = glue_chk_controls;
|
2007-02-06 12:18:14 +08:00
|
|
|
glue.on_bi.bi_entry_get_rw = glue_entry_get_rw;
|
|
|
|
glue.on_bi.bi_entry_release_rw = glue_entry_release_rw;
|
2010-02-02 23:51:32 +08:00
|
|
|
glue.on_bi.bi_access_allowed = glue_access_allowed;
|
2007-02-06 12:18:14 +08:00
|
|
|
|
2006-12-13 11:03:47 +08:00
|
|
|
glue.on_response = glue_response;
|
2005-01-29 05:38:02 +08:00
|
|
|
|
2005-09-27 23:10:57 +08:00
|
|
|
return overlay_register( &glue );
|
2004-11-30 04:55:50 +08:00
|
|
|
}
|