2003-11-26 20:17:14 -05:00
|
|
|
/* ctxcsn.c -- Context CSN Management Routines */
|
2003-08-22 22:51:33 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 20:17:14 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2024-03-26 15:45:07 -04:00
|
|
|
* Copyright 2003-2024 The OpenLDAP Foundation.
|
2003-11-26 20:17:14 -05:00
|
|
|
* Portions Copyright 2003 IBM Corporation.
|
|
|
|
|
* All rights reserved.
|
2003-08-22 22:51:33 -04:00
|
|
|
*
|
2003-11-26 20:17:14 -05:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
* Public License.
|
2003-08-22 22:51:33 -04:00
|
|
|
*
|
2003-11-26 20:17:14 -05:00
|
|
|
* 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>.
|
2003-08-22 22:51:33 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
#include <ac/socket.h>
|
|
|
|
|
|
|
|
|
|
#include "lutil.h"
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
#include "lutil_ldap.h"
|
|
|
|
|
|
2009-11-10 22:01:48 -05:00
|
|
|
const struct berval slap_ldapsync_bv = BER_BVC("ldapsync");
|
|
|
|
|
const struct berval slap_ldapsync_cn_bv = BER_BVC("cn=ldapsync");
|
2007-02-03 19:02:38 -05:00
|
|
|
int slap_serverID;
|
2003-09-23 18:52:35 -04:00
|
|
|
|
2009-08-18 19:48:15 -04:00
|
|
|
/* maxcsn->bv_val must point to a char buf[LDAP_PVT_CSNSTR_BUFSIZE] */
|
2003-09-23 18:52:35 -04:00
|
|
|
void
|
2004-12-07 19:46:14 -05:00
|
|
|
slap_get_commit_csn(
|
|
|
|
|
Operation *op,
|
2008-11-02 17:16:20 -05:00
|
|
|
struct berval *maxcsn,
|
|
|
|
|
int *foundit
|
2004-12-07 19:46:14 -05:00
|
|
|
)
|
2003-08-22 22:51:33 -04:00
|
|
|
{
|
2003-12-09 14:09:58 -05:00
|
|
|
struct slap_csn_entry *csne, *committed_csne = NULL;
|
2008-11-02 02:46:46 -05:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2009-03-05 15:43:53 -05:00
|
|
|
int sid = -1;
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2004-12-07 19:46:14 -05:00
|
|
|
if ( maxcsn ) {
|
2009-02-15 19:12:38 -05:00
|
|
|
assert( maxcsn->bv_val != NULL );
|
2009-08-18 19:48:15 -04:00
|
|
|
assert( maxcsn->bv_len >= LDAP_PVT_CSNSTR_BUFSIZE );
|
2004-12-07 19:46:14 -05:00
|
|
|
}
|
2008-11-02 17:16:20 -05:00
|
|
|
if ( foundit ) {
|
|
|
|
|
*foundit = 0;
|
|
|
|
|
}
|
2003-09-23 18:52:35 -04:00
|
|
|
|
2009-03-05 15:43:53 -05:00
|
|
|
if ( !BER_BVISEMPTY( &op->o_csn )) {
|
|
|
|
|
sid = slap_parse_csn_sid( &op->o_csn );
|
|
|
|
|
}
|
|
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcsn_p->be_pcsn_mutex );
|
2013-08-16 21:56:31 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
|
2018-02-01 17:32:45 -05:00
|
|
|
if ( csne->ce_op == op ) {
|
2004-04-05 21:48:36 -04:00
|
|
|
csne->ce_state = SLAP_CSN_COMMIT;
|
2008-11-02 17:16:20 -05:00
|
|
|
if ( foundit ) *foundit = 1;
|
2003-12-09 14:09:58 -05:00
|
|
|
break;
|
|
|
|
|
}
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
|
2009-03-05 15:43:53 -05:00
|
|
|
if ( sid != -1 && sid == csne->ce_sid ) {
|
|
|
|
|
if ( csne->ce_state == SLAP_CSN_COMMIT ) committed_csne = csne;
|
|
|
|
|
if ( csne->ce_state == SLAP_CSN_PENDING ) break;
|
|
|
|
|
}
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
2003-12-09 14:09:58 -05:00
|
|
|
|
2009-02-15 19:12:38 -05:00
|
|
|
if ( maxcsn ) {
|
|
|
|
|
if ( committed_csne ) {
|
|
|
|
|
if ( committed_csne->ce_csn.bv_len < maxcsn->bv_len )
|
|
|
|
|
maxcsn->bv_len = committed_csne->ce_csn.bv_len;
|
|
|
|
|
AC_MEMCPY( maxcsn->bv_val, committed_csne->ce_csn.bv_val,
|
|
|
|
|
maxcsn->bv_len+1 );
|
|
|
|
|
} else {
|
|
|
|
|
maxcsn->bv_len = 0;
|
|
|
|
|
maxcsn->bv_val[0] = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcsn_p->be_pcsn_mutex );
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-08-25 15:15:04 -04:00
|
|
|
slap_rewind_commit_csn( Operation *op )
|
2003-08-22 22:51:33 -04:00
|
|
|
{
|
2003-12-09 14:09:58 -05:00
|
|
|
struct slap_csn_entry *csne;
|
2008-11-02 02:46:46 -05:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcsn_p->be_pcsn_mutex );
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
|
2018-02-01 17:32:45 -05:00
|
|
|
if ( csne->ce_op == op ) {
|
2004-04-05 21:48:36 -04:00
|
|
|
csne->ce_state = SLAP_CSN_PENDING;
|
2003-12-09 14:09:58 -05:00
|
|
|
break;
|
|
|
|
|
}
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcsn_p->be_pcsn_mutex );
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2003-08-25 15:15:04 -04:00
|
|
|
slap_graduate_commit_csn( Operation *op )
|
2003-08-22 22:51:33 -04:00
|
|
|
{
|
2003-12-09 14:09:58 -05:00
|
|
|
struct slap_csn_entry *csne;
|
2008-11-02 02:46:46 -05:00
|
|
|
BackendDB *be;
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2004-04-05 21:48:36 -04:00
|
|
|
if ( op == NULL ) return;
|
|
|
|
|
if ( op->o_bd == NULL ) return;
|
2008-11-02 02:46:46 -05:00
|
|
|
be = op->o_bd->bd_self;
|
2003-09-30 14:01:47 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcsn_p->be_pcsn_mutex );
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
LDAP_TAILQ_FOREACH( csne, &be->be_pcsn_p->be_pcsn_list, ce_csn_link ) {
|
2018-02-01 17:32:45 -05:00
|
|
|
if ( csne->ce_op == op ) {
|
2022-06-18 11:36:00 -04:00
|
|
|
LDAP_TAILQ_REMOVE( &be->be_pcsn_p->be_pcsn_list,
|
2004-04-05 21:48:36 -04:00
|
|
|
csne, ce_csn_link );
|
2008-02-09 21:18:22 -05:00
|
|
|
Debug( LDAP_DEBUG_SYNC, "slap_graduate_commit_csn: removing %p %s\n",
|
2019-02-15 11:49:52 -05:00
|
|
|
csne, csne->ce_csn.bv_val );
|
2005-10-13 07:58:44 -04:00
|
|
|
if ( op->o_csn.bv_val == csne->ce_csn.bv_val ) {
|
|
|
|
|
BER_BVZERO( &op->o_csn );
|
|
|
|
|
}
|
2004-12-06 18:17:58 -05:00
|
|
|
ch_free( csne->ce_csn.bv_val );
|
2003-12-09 14:09:58 -05:00
|
|
|
ch_free( csne );
|
|
|
|
|
break;
|
|
|
|
|
}
|
2003-08-22 22:51:33 -04:00
|
|
|
}
|
|
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcsn_p->be_pcsn_mutex );
|
2003-08-22 22:51:33 -04:00
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
2009-11-10 22:01:48 -05:00
|
|
|
|
|
|
|
|
static struct berval ocbva[] = {
|
|
|
|
|
BER_BVC("top"),
|
|
|
|
|
BER_BVC("subentry"),
|
|
|
|
|
BER_BVC("syncProviderSubentry"),
|
|
|
|
|
BER_BVNULL
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Entry *
|
|
|
|
|
slap_create_context_csn_entry(
|
|
|
|
|
Backend *be,
|
|
|
|
|
struct berval *context_csn )
|
|
|
|
|
{
|
|
|
|
|
Entry* e;
|
|
|
|
|
|
|
|
|
|
struct berval bv;
|
|
|
|
|
|
|
|
|
|
e = entry_alloc();
|
|
|
|
|
|
|
|
|
|
attr_merge( e, slap_schema.si_ad_objectClass,
|
|
|
|
|
ocbva, NULL );
|
|
|
|
|
attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
|
|
|
|
|
&ocbva[1], NULL );
|
|
|
|
|
attr_merge_one( e, slap_schema.si_ad_cn,
|
|
|
|
|
(struct berval *)&slap_ldapsync_bv, NULL );
|
|
|
|
|
|
|
|
|
|
if ( context_csn ) {
|
|
|
|
|
attr_merge_one( e, slap_schema.si_ad_contextCSN,
|
|
|
|
|
context_csn, NULL );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BER_BVSTR( &bv, "{}" );
|
|
|
|
|
attr_merge_one( e, slap_schema.si_ad_subtreeSpecification, &bv, NULL );
|
|
|
|
|
|
|
|
|
|
build_new_dn( &e->e_name, &be->be_nsuffix[0],
|
|
|
|
|
(struct berval *)&slap_ldapsync_cn_bv, NULL );
|
|
|
|
|
ber_dupbv( &e->e_nname, &e->e_name );
|
|
|
|
|
|
|
|
|
|
return e;
|
|
|
|
|
}
|
2003-08-22 22:51:33 -04:00
|
|
|
|
2004-11-26 04:40:22 -05:00
|
|
|
void
|
|
|
|
|
slap_queue_csn(
|
|
|
|
|
Operation *op,
|
|
|
|
|
struct berval *csn )
|
|
|
|
|
{
|
|
|
|
|
struct slap_csn_entry *pending;
|
2008-11-02 02:46:46 -05:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2004-11-26 04:40:22 -05:00
|
|
|
|
|
|
|
|
pending = (struct slap_csn_entry *) ch_calloc( 1,
|
|
|
|
|
sizeof( struct slap_csn_entry ));
|
2008-02-09 21:18:22 -05:00
|
|
|
|
2019-02-15 11:49:52 -05:00
|
|
|
Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queueing %p %s\n", pending, csn->bv_val );
|
2008-02-09 21:18:22 -05:00
|
|
|
|
2004-12-06 18:17:58 -05:00
|
|
|
ber_dupbv( &pending->ce_csn, csn );
|
2006-01-06 11:26:36 -05:00
|
|
|
ber_bvreplace_x( &op->o_csn, &pending->ce_csn, op->o_tmpmemctx );
|
2009-03-05 15:43:53 -05:00
|
|
|
pending->ce_sid = slap_parse_csn_sid( csn );
|
2018-02-01 17:32:45 -05:00
|
|
|
pending->ce_op = op;
|
2004-11-26 04:40:22 -05:00
|
|
|
pending->ce_state = SLAP_CSN_PENDING;
|
2013-08-16 21:56:31 -04:00
|
|
|
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcsn_p->be_pcsn_mutex );
|
|
|
|
|
LDAP_TAILQ_INSERT_TAIL( &be->be_pcsn_p->be_pcsn_list,
|
2004-11-26 04:40:22 -05:00
|
|
|
pending, ce_csn_link );
|
2022-06-18 11:36:00 -04:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcsn_p->be_pcsn_mutex );
|
2004-11-26 04:40:22 -05:00
|
|
|
}
|
|
|
|
|
|
2003-08-25 15:15:04 -04:00
|
|
|
int
|
|
|
|
|
slap_get_csn(
|
|
|
|
|
Operation *op,
|
|
|
|
|
struct berval *csn,
|
2004-04-05 21:48:36 -04:00
|
|
|
int manage_ctxcsn )
|
2003-08-25 15:15:04 -04:00
|
|
|
{
|
2003-11-29 20:19:40 -05:00
|
|
|
if ( csn == NULL ) return LDAP_OTHER;
|
2003-09-29 10:06:48 -04:00
|
|
|
|
2009-08-18 19:48:15 -04:00
|
|
|
csn->bv_len = ldap_pvt_csnstr( csn->bv_val, csn->bv_len, slap_serverID, 0 );
|
2019-06-26 06:22:58 -04:00
|
|
|
Debug( LDAP_DEBUG_SYNC, "slap_get_csn: %s generated new csn=%s manage=%d\n",
|
|
|
|
|
op->o_log_prefix, csn->bv_val, manage_ctxcsn );
|
2004-11-26 04:40:22 -05:00
|
|
|
if ( manage_ctxcsn )
|
|
|
|
|
slap_queue_csn( op, csn );
|
2003-08-25 15:15:04 -04:00
|
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
|
}
|