2003-11-27 09:17:14 +08:00
|
|
|
/* ctxcsn.c -- Context CSN Management Routines */
|
2003-08-23 10:51:33 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-27 09:17:14 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2020-01-10 00:50:21 +08:00
|
|
|
* Copyright 2003-2020 The OpenLDAP Foundation.
|
2003-11-27 09:17:14 +08:00
|
|
|
* Portions Copyright 2003 IBM Corporation.
|
|
|
|
* All rights reserved.
|
2003-08-23 10:51:33 +08:00
|
|
|
*
|
2003-11-27 09:17:14 +08: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-23 10:51:33 +08:00
|
|
|
*
|
2003-11-27 09:17:14 +08: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-23 10:51:33 +08: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-11 11:01:48 +08:00
|
|
|
const struct berval slap_ldapsync_bv = BER_BVC("ldapsync");
|
|
|
|
const struct berval slap_ldapsync_cn_bv = BER_BVC("cn=ldapsync");
|
2007-02-04 08:02:38 +08:00
|
|
|
int slap_serverID;
|
2003-09-24 06:52:35 +08:00
|
|
|
|
2009-08-19 07:48:15 +08:00
|
|
|
/* maxcsn->bv_val must point to a char buf[LDAP_PVT_CSNSTR_BUFSIZE] */
|
2003-09-24 06:52:35 +08:00
|
|
|
void
|
2004-12-08 08:46:14 +08:00
|
|
|
slap_get_commit_csn(
|
|
|
|
Operation *op,
|
2008-11-03 06:16:20 +08:00
|
|
|
struct berval *maxcsn,
|
|
|
|
int *foundit
|
2004-12-08 08:46:14 +08:00
|
|
|
)
|
2003-08-23 10:51:33 +08:00
|
|
|
{
|
2003-12-10 03:09:58 +08:00
|
|
|
struct slap_csn_entry *csne, *committed_csne = NULL;
|
2008-11-02 15:46:46 +08:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2009-03-06 04:43:53 +08:00
|
|
|
int sid = -1;
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2004-12-08 08:46:14 +08:00
|
|
|
if ( maxcsn ) {
|
2009-02-16 08:12:38 +08:00
|
|
|
assert( maxcsn->bv_val != NULL );
|
2009-08-19 07:48:15 +08:00
|
|
|
assert( maxcsn->bv_len >= LDAP_PVT_CSNSTR_BUFSIZE );
|
2004-12-08 08:46:14 +08:00
|
|
|
}
|
2008-11-03 06:16:20 +08:00
|
|
|
if ( foundit ) {
|
|
|
|
*foundit = 0;
|
|
|
|
}
|
2003-09-24 06:52:35 +08:00
|
|
|
|
2009-03-06 04:43:53 +08:00
|
|
|
if ( !BER_BVISEMPTY( &op->o_csn )) {
|
|
|
|
sid = slap_parse_csn_sid( &op->o_csn );
|
|
|
|
}
|
|
|
|
|
2013-08-17 09:56:31 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
|
|
|
|
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
|
2018-02-02 06:32:45 +08:00
|
|
|
if ( csne->ce_op == op ) {
|
2004-04-06 09:48:36 +08:00
|
|
|
csne->ce_state = SLAP_CSN_COMMIT;
|
2008-11-03 06:16:20 +08:00
|
|
|
if ( foundit ) *foundit = 1;
|
2003-12-10 03:09:58 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-08-23 10:51:33 +08:00
|
|
|
}
|
|
|
|
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
|
2009-03-06 04:43:53 +08: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-23 10:51:33 +08:00
|
|
|
}
|
2003-12-10 03:09:58 +08:00
|
|
|
|
2009-02-16 08:12:38 +08: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;
|
|
|
|
}
|
|
|
|
}
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
|
2003-08-23 10:51:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-08-26 03:15:04 +08:00
|
|
|
slap_rewind_commit_csn( Operation *op )
|
2003-08-23 10:51:33 +08:00
|
|
|
{
|
2003-12-10 03:09:58 +08:00
|
|
|
struct slap_csn_entry *csne;
|
2008-11-02 15:46:46 +08:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
|
2018-02-02 06:32:45 +08:00
|
|
|
if ( csne->ce_op == op ) {
|
2004-04-06 09:48:36 +08:00
|
|
|
csne->ce_state = SLAP_CSN_PENDING;
|
2003-12-10 03:09:58 +08:00
|
|
|
break;
|
|
|
|
}
|
2003-08-23 10:51:33 +08:00
|
|
|
}
|
|
|
|
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
|
2003-08-23 10:51:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-08-26 03:15:04 +08:00
|
|
|
slap_graduate_commit_csn( Operation *op )
|
2003-08-23 10:51:33 +08:00
|
|
|
{
|
2003-12-10 03:09:58 +08:00
|
|
|
struct slap_csn_entry *csne;
|
2008-11-02 15:46:46 +08:00
|
|
|
BackendDB *be;
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2004-04-06 09:48:36 +08:00
|
|
|
if ( op == NULL ) return;
|
|
|
|
if ( op->o_bd == NULL ) return;
|
2008-11-02 15:46:46 +08:00
|
|
|
be = op->o_bd->bd_self;
|
2003-10-01 02:01:47 +08:00
|
|
|
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
|
2003-08-23 10:51:33 +08:00
|
|
|
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
|
2018-02-02 06:32:45 +08:00
|
|
|
if ( csne->ce_op == op ) {
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_REMOVE( be->be_pending_csn_list,
|
2004-04-06 09:48:36 +08:00
|
|
|
csne, ce_csn_link );
|
2008-02-10 10:18:22 +08:00
|
|
|
Debug( LDAP_DEBUG_SYNC, "slap_graduate_commit_csn: removing %p %s\n",
|
2019-02-16 00:49:52 +08:00
|
|
|
csne, csne->ce_csn.bv_val );
|
2005-10-13 19:58:44 +08:00
|
|
|
if ( op->o_csn.bv_val == csne->ce_csn.bv_val ) {
|
|
|
|
BER_BVZERO( &op->o_csn );
|
|
|
|
}
|
2004-12-07 07:17:58 +08:00
|
|
|
ch_free( csne->ce_csn.bv_val );
|
2003-12-10 03:09:58 +08:00
|
|
|
ch_free( csne );
|
|
|
|
break;
|
|
|
|
}
|
2003-08-23 10:51:33 +08:00
|
|
|
}
|
|
|
|
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
|
2003-08-23 10:51:33 +08:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2009-11-11 11:01:48 +08: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-23 10:51:33 +08:00
|
|
|
|
2004-11-26 17:40:22 +08:00
|
|
|
void
|
|
|
|
slap_queue_csn(
|
|
|
|
Operation *op,
|
|
|
|
struct berval *csn )
|
|
|
|
{
|
|
|
|
struct slap_csn_entry *pending;
|
2008-11-02 15:46:46 +08:00
|
|
|
BackendDB *be = op->o_bd->bd_self;
|
2004-11-26 17:40:22 +08:00
|
|
|
|
|
|
|
pending = (struct slap_csn_entry *) ch_calloc( 1,
|
|
|
|
sizeof( struct slap_csn_entry ));
|
2008-02-10 10:18:22 +08:00
|
|
|
|
2019-02-16 00:49:52 +08:00
|
|
|
Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queueing %p %s\n", pending, csn->bv_val );
|
2008-02-10 10:18:22 +08:00
|
|
|
|
2004-12-07 07:17:58 +08:00
|
|
|
ber_dupbv( &pending->ce_csn, csn );
|
2006-01-07 00:26:36 +08:00
|
|
|
ber_bvreplace_x( &op->o_csn, &pending->ce_csn, op->o_tmpmemctx );
|
2009-03-06 04:43:53 +08:00
|
|
|
pending->ce_sid = slap_parse_csn_sid( csn );
|
2018-02-02 06:32:45 +08:00
|
|
|
pending->ce_op = op;
|
2004-11-26 17:40:22 +08:00
|
|
|
pending->ce_state = SLAP_CSN_PENDING;
|
2013-08-17 09:56:31 +08:00
|
|
|
|
|
|
|
ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
|
2008-11-02 15:46:46 +08:00
|
|
|
LDAP_TAILQ_INSERT_TAIL( be->be_pending_csn_list,
|
2004-11-26 17:40:22 +08:00
|
|
|
pending, ce_csn_link );
|
2008-11-02 15:58:50 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
|
2004-11-26 17:40:22 +08:00
|
|
|
}
|
|
|
|
|
2003-08-26 03:15:04 +08:00
|
|
|
int
|
|
|
|
slap_get_csn(
|
|
|
|
Operation *op,
|
|
|
|
struct berval *csn,
|
2004-04-06 09:48:36 +08:00
|
|
|
int manage_ctxcsn )
|
2003-08-26 03:15:04 +08:00
|
|
|
{
|
2003-11-30 09:19:40 +08:00
|
|
|
if ( csn == NULL ) return LDAP_OTHER;
|
2003-09-29 22:06:48 +08:00
|
|
|
|
2009-08-19 07:48:15 +08:00
|
|
|
csn->bv_len = ldap_pvt_csnstr( csn->bv_val, csn->bv_len, slap_serverID, 0 );
|
2004-11-26 17:40:22 +08:00
|
|
|
if ( manage_ctxcsn )
|
|
|
|
slap_queue_csn( op, csn );
|
2003-08-26 03:15:04 +08:00
|
|
|
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|