1 /* ctxcsn.c -- Context CSN Management Routines */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2003-2014 The OpenLDAP Foundation.
6 * Portions Copyright 2003 IBM Corporation.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in the file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
22 #include <ac/string.h>
23 #include <ac/socket.h>
27 #include "lutil_ldap.h"
29 const struct berval slap_ldapsync_bv = BER_BVC("ldapsync");
30 const struct berval slap_ldapsync_cn_bv = BER_BVC("cn=ldapsync");
33 /* maxcsn->bv_val must point to a char buf[LDAP_PVT_CSNSTR_BUFSIZE] */
37 struct berval *maxcsn,
41 struct slap_csn_entry *csne, *committed_csne = NULL;
42 BackendDB *be = op->o_bd->bd_self;
46 assert( maxcsn->bv_val != NULL );
47 assert( maxcsn->bv_len >= LDAP_PVT_CSNSTR_BUFSIZE );
53 if ( !BER_BVISEMPTY( &op->o_csn )) {
54 sid = slap_parse_csn_sid( &op->o_csn );
57 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
59 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
60 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
61 csne->ce_state = SLAP_CSN_COMMIT;
62 if ( foundit ) *foundit = 1;
67 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
68 if ( sid != -1 && sid == csne->ce_sid ) {
69 if ( csne->ce_state == SLAP_CSN_COMMIT ) committed_csne = csne;
70 if ( csne->ce_state == SLAP_CSN_PENDING ) break;
75 if ( committed_csne ) {
76 if ( committed_csne->ce_csn.bv_len < maxcsn->bv_len )
77 maxcsn->bv_len = committed_csne->ce_csn.bv_len;
78 AC_MEMCPY( maxcsn->bv_val, committed_csne->ce_csn.bv_val,
82 maxcsn->bv_val[0] = 0;
85 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
89 slap_rewind_commit_csn( Operation *op )
91 struct slap_csn_entry *csne;
92 BackendDB *be = op->o_bd->bd_self;
94 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
96 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
97 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
98 csne->ce_state = SLAP_CSN_PENDING;
103 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
107 slap_graduate_commit_csn( Operation *op )
109 struct slap_csn_entry *csne;
112 if ( op == NULL ) return;
113 if ( op->o_bd == NULL ) return;
114 be = op->o_bd->bd_self;
116 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
118 LDAP_TAILQ_FOREACH( csne, be->be_pending_csn_list, ce_csn_link ) {
119 if ( csne->ce_opid == op->o_opid && csne->ce_connid == op->o_connid ) {
120 LDAP_TAILQ_REMOVE( be->be_pending_csn_list,
122 Debug( LDAP_DEBUG_SYNC, "slap_graduate_commit_csn: removing %p %s\n",
123 csne->ce_csn.bv_val, csne->ce_csn.bv_val, 0 );
124 if ( op->o_csn.bv_val == csne->ce_csn.bv_val ) {
125 BER_BVZERO( &op->o_csn );
127 ch_free( csne->ce_csn.bv_val );
133 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
138 static struct berval ocbva[] = {
141 BER_BVC("syncProviderSubentry"),
146 slap_create_context_csn_entry(
148 struct berval *context_csn )
156 attr_merge( e, slap_schema.si_ad_objectClass,
158 attr_merge_one( e, slap_schema.si_ad_structuralObjectClass,
160 attr_merge_one( e, slap_schema.si_ad_cn,
161 (struct berval *)&slap_ldapsync_bv, NULL );
164 attr_merge_one( e, slap_schema.si_ad_contextCSN,
168 BER_BVSTR( &bv, "{}" );
169 attr_merge_one( e, slap_schema.si_ad_subtreeSpecification, &bv, NULL );
171 build_new_dn( &e->e_name, &be->be_nsuffix[0],
172 (struct berval *)&slap_ldapsync_cn_bv, NULL );
173 ber_dupbv( &e->e_nname, &e->e_name );
183 struct slap_csn_entry *pending;
184 BackendDB *be = op->o_bd->bd_self;
186 pending = (struct slap_csn_entry *) ch_calloc( 1,
187 sizeof( struct slap_csn_entry ));
189 Debug( LDAP_DEBUG_SYNC, "slap_queue_csn: queing %p %s\n", csn->bv_val, csn->bv_val, 0 );
191 ber_dupbv( &pending->ce_csn, csn );
192 ber_bvreplace_x( &op->o_csn, &pending->ce_csn, op->o_tmpmemctx );
193 pending->ce_sid = slap_parse_csn_sid( csn );
194 pending->ce_connid = op->o_connid;
195 pending->ce_opid = op->o_opid;
196 pending->ce_state = SLAP_CSN_PENDING;
198 ldap_pvt_thread_mutex_lock( &be->be_pcl_mutex );
199 LDAP_TAILQ_INSERT_TAIL( be->be_pending_csn_list,
200 pending, ce_csn_link );
201 ldap_pvt_thread_mutex_unlock( &be->be_pcl_mutex );
210 if ( csn == NULL ) return LDAP_OTHER;
212 csn->bv_len = ldap_pvt_csnstr( csn->bv_val, csn->bv_len, slap_serverID, 0 );
214 slap_queue_csn( op, csn );