1 /* syncrepl.c -- Replication Engine which uses the LDAP Sync protocol */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2003-2010 The OpenLDAP Foundation.
6 * Portions Copyright 2003 by IBM Corporation.
7 * Portions Copyright 2003-2008 by Howard Chu, Symas Corporation.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
14 * A copy of this license is available in the file LICENSE in the
15 * top-level directory of the distribution or, alternatively, at
16 * <http://www.OpenLDAP.org/license.html>.
23 #include <ac/string.h>
24 #include <ac/socket.h>
28 #include "lutil_ldap.h"
34 struct nonpresent_entry {
35 struct berval *npe_name;
36 struct berval *npe_nname;
37 LDAP_LIST_ENTRY(nonpresent_entry) npe_link;
40 typedef struct cookie_state {
41 ldap_pvt_thread_mutex_t cs_mutex;
45 struct berval *cs_vals;
48 /* pending changes, not yet committed */
49 ldap_pvt_thread_mutex_t cs_pmutex;
51 struct berval *cs_pvals;
55 #define SYNCDATA_DEFAULT 0 /* entries are plain LDAP entries */
56 #define SYNCDATA_ACCESSLOG 1 /* entries are accesslog format */
57 #define SYNCDATA_CHANGELOG 2 /* entries are changelog format */
59 #define SYNCLOG_LOGGING 0 /* doing a log-based update */
60 #define SYNCLOG_FALLBACK 1 /* doing a full refresh */
62 #define RETRYNUM_FOREVER (-1) /* retry forever */
63 #define RETRYNUM_TAIL (-2) /* end of retrynum array */
64 #define RETRYNUM_VALID(n) ((n) >= RETRYNUM_FOREVER) /* valid retrynum */
65 #define RETRYNUM_FINITE(n) ((n) > RETRYNUM_FOREVER) /* not forever */
67 typedef struct syncinfo_s {
68 struct syncinfo_s *si_next;
73 char si_ridtxt[ STRLENOF("rid=999") + 1 ];
74 slap_bindconf si_bindconf;
75 struct berval si_base;
76 struct berval si_logbase;
77 struct berval si_filterstr;
79 struct berval si_logfilterstr;
80 struct berval si_contextdn;
84 AttributeName *si_anlist;
85 AttributeName *si_exanlist;
90 int si_schemachecking;
91 int si_type; /* the active type */
92 int si_ctype; /* the configured type */
94 time_t *si_retryinterval;
95 int *si_retrynum_init;
97 struct sync_cookie si_syncCookie;
98 cookie_state *si_cookieState;
103 int si_refreshDelete;
104 int si_refreshPresent;
110 Avlnode *si_presentlist;
113 LDAP_LIST_HEAD(np, nonpresent_entry) si_nonpresentlist;
114 ldap_pvt_thread_mutex_t si_mutex;
117 static int syncuuid_cmp( const void *, const void * );
118 static int avl_presentlist_insert( syncinfo_t* si, struct berval *syncUUID );
119 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray, struct sync_cookie *, int );
120 static int syncrepl_message_to_op(
121 syncinfo_t *, Operation *, LDAPMessage * );
122 static int syncrepl_message_to_entry(
123 syncinfo_t *, Operation *, LDAPMessage *,
124 Modifications **, Entry **, int );
125 static int syncrepl_entry(
126 syncinfo_t *, Operation*, Entry*,
127 Modifications**,int, struct berval*,
128 struct berval *cookieCSN );
129 static int syncrepl_updateCookie(
130 syncinfo_t *, Operation *,
131 struct sync_cookie * );
132 static struct berval * slap_uuidstr_from_normalized(
133 struct berval *, struct berval *, void * );
135 /* callback functions */
136 static int dn_callback( Operation *, SlapReply * );
137 static int nonpresent_callback( Operation *, SlapReply * );
138 static int null_callback( Operation *, SlapReply * );
140 static AttributeDescription *sync_descs[4];
143 syncrepl_state2str( int state )
146 case LDAP_SYNC_PRESENT:
152 case LDAP_SYNC_MODIFY:
155 case LDAP_SYNC_DELETE:
163 init_syncrepl(syncinfo_t *si)
166 char **attrs, **exattrs;
168 if ( !sync_descs[0] ) {
169 sync_descs[0] = slap_schema.si_ad_objectClass;
170 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
171 sync_descs[2] = slap_schema.si_ad_entryCSN;
172 sync_descs[3] = NULL;
175 if ( si->si_allattrs && si->si_allopattrs )
178 attrs = anlist2attrs( si->si_anlist );
181 if ( si->si_allattrs ) {
184 if ( !is_at_operational( at_find( attrs[i] ) ) ) {
185 for ( j = i; attrs[j] != NULL; j++ ) {
188 attrs[j] = attrs[j+1];
194 attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
195 attrs[i] = ch_strdup("*");
198 } else if ( si->si_allopattrs ) {
201 if ( is_at_operational( at_find( attrs[i] ) ) ) {
202 for ( j = i; attrs[j] != NULL; j++ ) {
205 attrs[j] = attrs[j+1];
211 attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
212 attrs[i] = ch_strdup("+");
216 for ( i = 0; sync_descs[i] != NULL; i++ ) {
219 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
220 for ( k = j; attrs[k] != NULL; k++ ) {
223 attrs[k] = attrs[k+1];
231 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
233 if ( si->si_allopattrs ) {
234 attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ) );
236 attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ) );
240 if ( si->si_allopattrs ) {
241 attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
243 for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
244 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
252 if ( si->si_allattrs == si->si_allopattrs ) {
253 attrs = (char**) ch_malloc( 3 * sizeof(char*) );
254 attrs[i++] = ch_strdup( "*" );
255 attrs[i++] = ch_strdup( "+" );
256 } else if ( si->si_allattrs && !si->si_allopattrs ) {
257 for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
258 attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
259 attrs[i++] = ch_strdup( "*" );
260 for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
261 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
263 } else if ( !si->si_allattrs && si->si_allopattrs ) {
264 attrs = (char**) ch_malloc( 3 * sizeof(char*) );
265 attrs[i++] = ch_strdup( "+" );
266 attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
271 si->si_attrs = attrs;
273 exattrs = anlist2attrs( si->si_exanlist );
276 for ( n = 0; exattrs[n] != NULL; n++ ) ;
278 for ( i = 0; sync_descs[i] != NULL; i++ ) {
280 while ( exattrs[j] != NULL ) {
281 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
282 ch_free( exattrs[j] );
283 for ( k = j; exattrs[k] != NULL; k++ ) {
284 exattrs[k] = exattrs[k+1];
292 for ( i = 0; exattrs[i] != NULL; i++ ) {
293 for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
295 if ( ( oc = si->si_anlist[j].an_oc ) ) {
297 while ( oc->soc_required[k] ) {
298 if ( !strcmp( exattrs[i],
299 oc->soc_required[k]->sat_cname.bv_val ) ) {
300 ch_free( exattrs[i] );
301 for ( l = i; exattrs[l]; l++ ) {
302 exattrs[l] = exattrs[l+1];
312 for ( i = 0; exattrs[i] != NULL; i++ ) ;
315 exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *) );
318 si->si_exattrs = exattrs;
321 typedef struct logschema {
323 struct berval ls_req;
324 struct berval ls_mod;
325 struct berval ls_newRdn;
326 struct berval ls_delRdn;
327 struct berval ls_newSup;
330 static logschema changelog_sc = {
332 BER_BVC("changeType"),
335 BER_BVC("deleteOldRDN"),
336 BER_BVC("newSuperior")
339 static logschema accesslog_sc = {
343 BER_BVC("reqNewRDN"),
344 BER_BVC("reqDeleteOldRDN"),
345 BER_BVC("reqNewSuperior")
353 BerElementBuffer berbuf;
354 BerElement *ber = (BerElement *)&berbuf;
355 LDAPControl c[3], *ctrls[4];
359 char **attrs, *lattrs[8];
364 /* setup LDAP SYNC control */
365 ber_init2( ber, NULL, LBER_USE_DER );
366 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
368 /* If we're using a log but we have no state, then fallback to
369 * normal mode for a full refresh.
371 if ( si->si_syncdata && !si->si_syncCookie.numcsns ) {
372 si->si_logstate = SYNCLOG_FALLBACK;
375 /* Use the log parameters if we're in log mode */
376 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
378 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
382 lattrs[0] = ls->ls_dn.bv_val;
383 lattrs[1] = ls->ls_req.bv_val;
384 lattrs[2] = ls->ls_mod.bv_val;
385 lattrs[3] = ls->ls_newRdn.bv_val;
386 lattrs[4] = ls->ls_delRdn.bv_val;
387 lattrs[5] = ls->ls_newSup.bv_val;
388 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
392 base = si->si_logbase.bv_val;
393 filter = si->si_logfilterstr.bv_val;
396 scope = LDAP_SCOPE_SUBTREE;
399 base = si->si_base.bv_val;
400 filter = si->si_filterstr.bv_val;
401 attrs = si->si_attrs;
402 attrsonly = si->si_attrsonly;
403 scope = si->si_scope;
405 if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
406 si->si_type = LDAP_SYNC_REFRESH_ONLY;
408 si->si_type = si->si_ctype;
411 if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
413 ber_printf( ber, "{eOb}",
414 abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
416 ber_printf( ber, "{eb}",
417 abs(si->si_type), rhint );
420 if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 ) ) == -1 ) {
425 c[0].ldctl_oid = LDAP_CONTROL_SYNC;
426 c[0].ldctl_iscritical = si->si_type < 0;
429 c[1].ldctl_oid = LDAP_CONTROL_MANAGEDSAIT;
430 BER_BVZERO( &c[1].ldctl_value );
431 c[1].ldctl_iscritical = 1;
434 if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
435 c[2].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
436 c[2].ldctl_value = si->si_bindconf.sb_authzId;
437 c[2].ldctl_iscritical = 1;
444 rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
445 ctrls, NULL, NULL, si->si_slimit, &si->si_msgid );
459 int i, j, changed = 0;
461 /* Look for contextCSN from syncprov overlay. If
462 * there's no overlay, this will be a no-op. That means
463 * this is a pure consumer, so local changes will not be
464 * allowed, and all changes will already be reflected in
467 a.a_desc = slap_schema.si_ad_contextCSN;
469 e.e_name = si->si_contextdn;
470 e.e_nname = si->si_contextdn;
471 at[0].an_name = a.a_desc->ad_cname;
472 at[0].an_desc = a.a_desc;
473 BER_BVZERO( &at[1].an_name );
475 rs.sr_flags = REP_ENTRY_MODIFIABLE;
477 op->o_req_dn = e.e_name;
478 op->o_req_ndn = e.e_nname;
480 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
481 i = backend_operational( op, &rs );
482 if ( i == LDAP_SUCCESS && a.a_nvals ) {
483 int num = a.a_numvals;
484 /* check for differences */
485 if ( num != si->si_cookieState->cs_num ) {
488 for ( i=0; i<num; i++ ) {
489 if ( ber_bvcmp( &a.a_nvals[i],
490 &si->si_cookieState->cs_vals[i] )) {
497 ber_bvarray_free( si->si_cookieState->cs_vals );
498 ch_free( si->si_cookieState->cs_sids );
499 si->si_cookieState->cs_num = num;
500 si->si_cookieState->cs_vals = a.a_nvals;
501 si->si_cookieState->cs_sids = slap_parse_csn_sids( a.a_nvals,
503 si->si_cookieState->cs_age++;
505 ber_bvarray_free( a.a_nvals );
507 ber_bvarray_free( a.a_vals );
509 /* See if the cookieState has changed due to anything outside
510 * this particular consumer. That includes other consumers in
511 * the same context, or local changes detected above.
513 if ( si->si_cookieState->cs_num > 0 && si->si_cookieAge !=
514 si->si_cookieState->cs_age ) {
515 if ( !si->si_syncCookie.numcsns ) {
516 ber_bvarray_free( si->si_syncCookie.ctxcsn );
517 ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
518 si->si_cookieState->cs_vals, NULL );
521 for (i=0; !BER_BVISNULL( &si->si_syncCookie.ctxcsn[i] ); i++) {
522 /* bogus, just dup everything */
523 if ( si->si_syncCookie.sids[i] == -1 ) {
524 ber_bvarray_free( si->si_syncCookie.ctxcsn );
525 ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
526 si->si_cookieState->cs_vals, NULL );
530 for (j=0; j<si->si_cookieState->cs_num; j++) {
531 if ( si->si_syncCookie.sids[i] !=
532 si->si_cookieState->cs_sids[j] )
534 if ( bvmatch( &si->si_syncCookie.ctxcsn[i],
535 &si->si_cookieState->cs_vals[j] ))
537 ber_bvreplace( &si->si_syncCookie.ctxcsn[i],
538 &si->si_cookieState->cs_vals[j] );
546 si->si_cookieAge = si->si_cookieState->cs_age;
547 ch_free( si->si_syncCookie.octet_str.bv_val );
548 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
549 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
550 si->si_syncCookie.sid );
552 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
562 int cmdline_cookie_found = 0;
564 struct sync_cookie *sc = NULL;
569 rc = slap_client_connect( &si->si_ld, &si->si_bindconf );
570 if ( rc != LDAP_SUCCESS ) {
573 op->o_protocol = LDAP_VERSION3;
575 /* Set SSF to strongest of TLS, SASL SSFs */
578 op->o_transport_ssf = 0;
580 if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
581 == LDAP_SUCCESS && ssl != NULL )
583 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
585 #endif /* HAVE_TLS */
587 ber_len_t ssf; /* ITS#5403, 3864 LDAP_OPT_X_SASL_SSF probably ought
588 to use sasl_ssf_t but currently uses ber_len_t */
589 if ( ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &ssf )
591 op->o_sasl_ssf = ssf;
593 op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
594 ? op->o_sasl_ssf : op->o_tls_ssf;
596 ldap_set_option( si->si_ld, LDAP_OPT_TIMELIMIT, &si->si_tlimit );
598 rc = LDAP_DEREF_NEVER; /* actually could allow DEREF_FINDING */
599 ldap_set_option( si->si_ld, LDAP_OPT_DEREF, &rc );
601 ldap_set_option( si->si_ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF );
603 si->si_syncCookie.rid = si->si_rid;
605 /* whenever there are multiple data sources possible, advertise sid */
606 si->si_syncCookie.sid = ( SLAP_MULTIMASTER( si->si_be ) || si->si_be != si->si_wbe ) ?
609 /* We've just started up, or the remote server hasn't sent us
610 * any meaningful state.
612 if ( BER_BVISNULL( &si->si_syncCookie.octet_str ) ) {
615 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
616 if ( si->si_rid == sc->rid ) {
617 cmdline_cookie_found = 1;
622 if ( cmdline_cookie_found ) {
623 /* cookie is supplied in the command line */
625 LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
627 /* ctxcsn wasn't parsed yet, do it now */
628 slap_parse_sync_cookie( sc, op->o_tmpmemctx );
629 slap_sync_cookie_free( &si->si_syncCookie, 0 );
630 slap_dup_sync_cookie( &si->si_syncCookie, sc );
631 slap_sync_cookie_free( sc, 1 );
633 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
634 if ( !si->si_cookieState->cs_num ) {
635 /* get contextCSN shadow replica from database */
636 BerVarray csn = NULL;
637 void *ctx = op->o_tmpmemctx;
639 op->o_req_ndn = si->si_contextdn;
640 op->o_req_dn = op->o_req_ndn;
642 /* try to read stored contextCSN */
643 op->o_tmpmemctx = NULL;
644 backend_attribute( op, NULL, &op->o_req_ndn,
645 slap_schema.si_ad_contextCSN, &csn, ACL_READ );
646 op->o_tmpmemctx = ctx;
648 si->si_cookieState->cs_vals = csn;
649 for (i=0; !BER_BVISNULL( &csn[i] ); i++);
650 si->si_cookieState->cs_num = i;
651 si->si_cookieState->cs_sids = slap_parse_csn_sids( csn, i, NULL );
654 if ( si->si_cookieState->cs_num ) {
655 ber_bvarray_free( si->si_syncCookie.ctxcsn );
656 if ( ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
657 si->si_cookieState->cs_vals, NULL )) {
659 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
662 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
663 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num *
665 for ( i=0; i<si->si_syncCookie.numcsns; i++ )
666 si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
668 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
671 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
672 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
673 si->si_syncCookie.sid );
675 /* ITS#6367: recreate the cookie so it has our SID, not our peer's */
676 ch_free( si->si_syncCookie.octet_str.bv_val );
677 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
678 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
679 si->si_syncCookie.sid );
680 /* Look for contextCSN from syncprov overlay. */
681 check_syncprov( op, si );
684 si->si_refreshDone = 0;
686 rc = ldap_sync_search( si, op->o_tmpmemctx );
688 if( rc != LDAP_SUCCESS ) {
689 Debug( LDAP_DEBUG_ANY, "do_syncrep1: %s "
690 "ldap_search_ext: %s (%d)\n",
691 si->si_ridtxt, ldap_err2string( rc ), rc );
697 ldap_unbind_ext( si->si_ld, NULL, NULL );
706 compare_csns( struct sync_cookie *sc1, struct sync_cookie *sc2, int *which )
713 if ( sc1->numcsns < sc2->numcsns ) {
714 *which = sc1->numcsns;
718 for (j=0; j<sc2->numcsns; j++) {
719 for (i=0; i<sc1->numcsns; i++) {
720 if ( sc1->sids[i] != sc2->sids[j] )
722 value_match( &match, slap_schema.si_ad_entryCSN,
723 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
724 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
725 &sc1->ctxcsn[i], &sc2->ctxcsn[j], &text );
732 if ( i == sc1->numcsns ) {
733 /* sc2 has a sid sc1 lacks */
741 #define SYNC_PAUSED -3
748 LDAPControl **rctrls = NULL;
750 BerElementBuffer berbuf;
751 BerElement *ber = (BerElement *)&berbuf;
753 LDAPMessage *msg = NULL;
756 struct berval *retdata = NULL;
761 struct berval syncUUID = BER_BVNULL;
762 struct sync_cookie syncCookie = { NULL };
763 struct sync_cookie syncCookie_req = { NULL };
764 struct berval cookie = BER_BVNULL;
770 Modifications *modlist = NULL;
772 int match, m, punlock = -1;
774 struct timeval *tout_p = NULL;
775 struct timeval tout = { 0, 0 };
777 int refreshDeletes = 0;
778 BerVarray syncUUIDs = NULL;
781 if ( slapd_shutdown ) {
786 ber_init2( ber, NULL, LBER_USE_DER );
787 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
789 Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2 %s\n", si->si_ridtxt, 0, 0 );
791 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
793 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
799 while ( ( rc = ldap_result( si->si_ld, si->si_msgid, LDAP_MSG_ONE,
800 tout_p, &msg ) ) > 0 )
802 LDAPControl *rctrlp = NULL;
804 if ( slapd_shutdown ) {
808 switch( ldap_msgtype( msg ) ) {
809 case LDAP_RES_SEARCH_ENTRY:
810 ldap_get_entry_controls( si->si_ld, msg, &rctrls );
811 /* we can't work without the control */
813 LDAPControl **next = NULL;
814 /* NOTE: make sure we use the right one;
815 * a better approach would be to run thru
816 * the whole list and take care of all */
817 /* NOTE: since we issue the search request,
818 * we should know what controls to expect,
819 * and there should be none apart from the
820 * sync-related control */
821 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_STATE, rctrls, &next );
822 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_STATE, next, NULL ) )
824 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
825 "got search entry with multiple "
826 "Sync State control\n", si->si_ridtxt, 0, 0 );
827 ldap_controls_free( rctrls );
832 if ( rctrlp == NULL ) {
833 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
834 "got search entry without "
835 "Sync State control\n", si->si_ridtxt, 0, 0 );
839 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
840 ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
841 /* FIXME: what if syncUUID is NULL or empty?
842 * (happens with back-sql...) */
843 if ( BER_BVISEMPTY( &syncUUID ) ) {
844 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
845 "got empty syncUUID with LDAP_SYNC_%s\n",
847 syncrepl_state2str( syncstate ), 0 );
848 ldap_controls_free( rctrls );
852 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
853 ber_scanf( ber, /*"{"*/ "m}", &cookie );
855 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
857 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
859 if ( !BER_BVISNULL( &cookie ) ) {
860 ch_free( syncCookie.octet_str.bv_val );
861 ber_dupbv( &syncCookie.octet_str, &cookie );
863 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
865 slap_parse_sync_cookie( &syncCookie, NULL );
866 if ( syncCookie.ctxcsn ) {
867 int i, sid = slap_parse_csn_sid( syncCookie.ctxcsn );
868 check_syncprov( op, si );
869 for ( i =0; i<si->si_cookieState->cs_num; i++ ) {
870 if ( si->si_cookieState->cs_sids[i] == sid ) {
871 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_vals[i] ) <= 0 ) {
872 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring %s\n",
873 si->si_ridtxt, syncCookie.ctxcsn->bv_val, 0 );
874 ldap_controls_free( rctrls );
881 /* check pending CSNs too */
882 while ( ldap_pvt_thread_mutex_trylock( &si->si_cookieState->cs_pmutex )) {
883 if ( slapd_shutdown ) {
887 if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
888 ldap_pvt_thread_yield();
890 for ( i =0; i<si->si_cookieState->cs_pnum; i++ ) {
891 if ( si->si_cookieState->cs_psids[i] == sid ) {
892 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_pvals[i] ) <= 0 ) {
893 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN pending, ignoring %s\n",
894 si->si_ridtxt, syncCookie.ctxcsn->bv_val, 0 );
895 ldap_controls_free( rctrls );
897 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
900 ber_bvreplace( &si->si_cookieState->cs_pvals[i],
905 /* new SID, add it */
906 if ( i == si->si_cookieState->cs_pnum ) {
907 value_add( &si->si_cookieState->cs_pvals, syncCookie.ctxcsn );
908 si->si_cookieState->cs_pnum++;
909 si->si_cookieState->cs_psids = ch_realloc( si->si_cookieState->cs_psids, si->si_cookieState->cs_pnum * sizeof(int));
910 si->si_cookieState->cs_psids[i] = sid;
914 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
918 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
920 if ( ( rc = syncrepl_message_to_op( si, op, msg ) ) == LDAP_SUCCESS &&
923 rc = syncrepl_updateCookie( si, op, &syncCookie );
924 } else switch ( rc ) {
925 case LDAP_ALREADY_EXISTS:
926 case LDAP_NO_SUCH_OBJECT:
927 case LDAP_NO_SUCH_ATTRIBUTE:
928 case LDAP_TYPE_OR_VALUE_EXISTS:
929 rc = LDAP_SYNC_REFRESH_REQUIRED;
930 si->si_logstate = SYNCLOG_FALLBACK;
931 ldap_abandon_ext( si->si_ld, si->si_msgid, NULL, NULL );
936 } else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
937 &modlist, &entry, syncstate ) ) == LDAP_SUCCESS )
939 if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
940 syncstate, &syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
943 rc = syncrepl_updateCookie( si, op, &syncCookie );
946 if ( punlock >= 0 ) {
947 /* on failure, revert pending CSN */
948 if ( rc != LDAP_SUCCESS ) {
950 for ( i = 0; i<si->si_cookieState->cs_num; i++ ) {
951 if ( si->si_cookieState->cs_sids[i] == si->si_cookieState->cs_psids[punlock] ) {
952 ber_bvreplace( &si->si_cookieState->cs_pvals[punlock],
953 &si->si_cookieState->cs_vals[i] );
957 if ( i == si->si_cookieState->cs_num )
958 si->si_cookieState->cs_pvals[punlock].bv_val[0] = '\0';
960 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
962 ldap_controls_free( rctrls );
964 slap_mods_free( modlist, 1 );
970 case LDAP_RES_SEARCH_REFERENCE:
971 Debug( LDAP_DEBUG_ANY,
972 "do_syncrep2: %s reference received error\n",
973 si->si_ridtxt, 0, 0 );
976 case LDAP_RES_SEARCH_RESULT:
977 Debug( LDAP_DEBUG_SYNC,
978 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT\n",
979 si->si_ridtxt, 0, 0 );
980 ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
982 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
983 if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
984 /* map old result code to registered code */
985 err = LDAP_SYNC_REFRESH_REQUIRED;
988 if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
989 if ( si->si_logstate == SYNCLOG_LOGGING ) {
990 si->si_logstate = SYNCLOG_FALLBACK;
996 Debug( LDAP_DEBUG_ANY,
997 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT (%d) %s\n",
998 si->si_ridtxt, err, ldap_err2string( err ) );
1001 LDAPControl **next = NULL;
1002 /* NOTE: make sure we use the right one;
1003 * a better approach would be to run thru
1004 * the whole list and take care of all */
1005 /* NOTE: since we issue the search request,
1006 * we should know what controls to expect,
1007 * and there should be none apart from the
1008 * sync-related control */
1009 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_DONE, rctrls, &next );
1010 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_DONE, next, NULL ) )
1012 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1013 "got search result with multiple "
1014 "Sync State control\n", si->si_ridtxt, 0, 0 );
1015 ldap_controls_free( rctrls );
1021 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
1023 ber_scanf( ber, "{" /*"}"*/);
1024 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
1025 ber_scanf( ber, "m", &cookie );
1027 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1029 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1031 if ( !BER_BVISNULL( &cookie ) ) {
1032 ch_free( syncCookie.octet_str.bv_val );
1033 ber_dupbv( &syncCookie.octet_str, &cookie);
1035 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1037 slap_parse_sync_cookie( &syncCookie, NULL );
1038 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1041 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
1043 ber_scanf( ber, "b", &refreshDeletes );
1045 ber_scanf( ber, /*"{"*/ "}" );
1047 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1048 slap_sync_cookie_free( &syncCookie_req, 0 );
1049 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1051 if ( !syncCookie.ctxcsn ) {
1053 } else if ( !syncCookie_req.ctxcsn ) {
1057 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1060 ldap_controls_free( rctrls );
1062 if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
1063 /* FIXME : different error behaviors according to
1064 * 1) err code : LDAP_BUSY ...
1065 * 2) on err policy : stop service, stop sync, retry
1067 if ( refreshDeletes == 0 && match < 0 &&
1068 err == LDAP_SUCCESS &&
1069 syncCookie_req.numcsns == syncCookie.numcsns )
1071 syncrepl_del_nonpresent( op, si, NULL,
1074 avl_free( si->si_presentlist, ch_free );
1075 si->si_presentlist = NULL;
1078 if ( syncCookie.ctxcsn && match < 0 && err == LDAP_SUCCESS )
1080 rc = syncrepl_updateCookie( si, op, &syncCookie );
1082 if ( err == LDAP_SUCCESS
1083 && si->si_logstate == SYNCLOG_FALLBACK ) {
1084 si->si_logstate = SYNCLOG_LOGGING;
1085 rc = LDAP_SYNC_REFRESH_REQUIRED;
1092 case LDAP_RES_INTERMEDIATE:
1093 rc = ldap_parse_intermediate( si->si_ld, msg,
1094 &retoid, &retdata, NULL, 0 );
1095 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
1096 ber_init2( ber, retdata, LBER_USE_DER );
1098 switch ( si_tag = ber_peek_tag( ber, &len ) ) {
1100 case LDAP_TAG_SYNC_NEW_COOKIE:
1101 Debug( LDAP_DEBUG_SYNC,
1102 "do_syncrep2: %s %s - %s\n",
1104 "LDAP_RES_INTERMEDIATE",
1106 ber_scanf( ber, "tm", &tag, &cookie );
1107 Debug( LDAP_DEBUG_SYNC,
1108 "do_syncrep2: %s NEW_COOKIE: %s\n",
1111 if ( !BER_BVISNULL( &cookie ) ) {
1112 ch_free( syncCookie.octet_str.bv_val );
1113 ber_dupbv( &syncCookie.octet_str, &cookie );
1115 if (!BER_BVISNULL( &syncCookie.octet_str ) ) {
1116 slap_parse_sync_cookie( &syncCookie, NULL );
1117 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1120 case LDAP_TAG_SYNC_REFRESH_DELETE:
1121 case LDAP_TAG_SYNC_REFRESH_PRESENT:
1122 Debug( LDAP_DEBUG_SYNC,
1123 "do_syncrep2: %s %s - %s\n",
1125 "LDAP_RES_INTERMEDIATE",
1126 si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
1127 "REFRESH_PRESENT" : "REFRESH_DELETE" );
1128 if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
1129 si->si_refreshDelete = 1;
1131 si->si_refreshPresent = 1;
1133 ber_scanf( ber, "t{" /*"}"*/, &tag );
1134 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
1136 ber_scanf( ber, "m", &cookie );
1138 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1140 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1142 if ( !BER_BVISNULL( &cookie ) ) {
1143 ch_free( syncCookie.octet_str.bv_val );
1144 ber_dupbv( &syncCookie.octet_str, &cookie );
1146 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1148 slap_parse_sync_cookie( &syncCookie, NULL );
1149 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1152 /* Defaults to TRUE */
1153 if ( ber_peek_tag( ber, &len ) ==
1154 LDAP_TAG_REFRESHDONE )
1156 ber_scanf( ber, "b", &si->si_refreshDone );
1159 si->si_refreshDone = 1;
1161 ber_scanf( ber, /*"{"*/ "}" );
1163 case LDAP_TAG_SYNC_ID_SET:
1164 Debug( LDAP_DEBUG_SYNC,
1165 "do_syncrep2: %s %s - %s\n",
1167 "LDAP_RES_INTERMEDIATE",
1169 ber_scanf( ber, "t{" /*"}"*/, &tag );
1170 if ( ber_peek_tag( ber, &len ) ==
1171 LDAP_TAG_SYNC_COOKIE )
1173 ber_scanf( ber, "m", &cookie );
1175 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1177 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1179 if ( !BER_BVISNULL( &cookie ) ) {
1180 ch_free( syncCookie.octet_str.bv_val );
1181 ber_dupbv( &syncCookie.octet_str, &cookie );
1183 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1185 slap_parse_sync_cookie( &syncCookie, NULL );
1186 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1187 compare_csns( &syncCookie_req, &syncCookie, &m );
1190 if ( ber_peek_tag( ber, &len ) ==
1191 LDAP_TAG_REFRESHDELETES )
1193 ber_scanf( ber, "b", &refreshDeletes );
1195 ber_scanf( ber, "[W]", &syncUUIDs );
1196 ber_scanf( ber, /*"{"*/ "}" );
1197 if ( refreshDeletes ) {
1198 syncrepl_del_nonpresent( op, si, syncUUIDs,
1200 ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
1203 for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
1204 (void)avl_presentlist_insert( si, &syncUUIDs[i] );
1205 slap_sl_free( syncUUIDs[i].bv_val, op->o_tmpmemctx );
1207 slap_sl_free( syncUUIDs, op->o_tmpmemctx );
1209 slap_sync_cookie_free( &syncCookie, 0 );
1212 Debug( LDAP_DEBUG_ANY,
1213 "do_syncrep2: %s unknown syncinfo tag (%ld)\n",
1214 si->si_ridtxt, (long) si_tag, 0 );
1215 ldap_memfree( retoid );
1216 ber_bvfree( retdata );
1220 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1221 slap_sync_cookie_free( &syncCookie_req, 0 );
1222 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1224 if ( !syncCookie.ctxcsn ) {
1226 } else if ( !syncCookie_req.ctxcsn ) {
1230 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1234 if ( si->si_refreshPresent == 1 &&
1235 si_tag != LDAP_TAG_SYNC_NEW_COOKIE &&
1236 syncCookie_req.numcsns == syncCookie.numcsns ) {
1237 syncrepl_del_nonpresent( op, si, NULL,
1241 if ( syncCookie.ctxcsn )
1243 rc = syncrepl_updateCookie( si, op, &syncCookie);
1247 ldap_memfree( retoid );
1248 ber_bvfree( retdata );
1252 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1253 "unknown intermediate response (%d)\n",
1254 si->si_ridtxt, rc, 0 );
1255 ldap_memfree( retoid );
1256 ber_bvfree( retdata );
1262 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1263 "unknown message (0x%02lx)\n",
1265 (unsigned long)ldap_msgtype( msg ), 0 );
1269 if ( !BER_BVISNULL( &syncCookie.octet_str ) ) {
1270 slap_sync_cookie_free( &syncCookie_req, 0 );
1271 slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
1272 slap_sync_cookie_free( &syncCookie, 0 );
1274 ldap_msgfree( msg );
1276 if ( ldap_pvt_thread_pool_pausing( &connection_pool )) {
1277 slap_sync_cookie_free( &syncCookie, 0 );
1278 slap_sync_cookie_free( &syncCookie_req, 0 );
1284 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
1289 if ( err != LDAP_SUCCESS ) {
1290 Debug( LDAP_DEBUG_ANY,
1291 "do_syncrep2: %s (%d) %s\n",
1292 si->si_ridtxt, err, ldap_err2string( err ) );
1295 slap_sync_cookie_free( &syncCookie, 0 );
1296 slap_sync_cookie_free( &syncCookie_req, 0 );
1298 if ( msg ) ldap_msgfree( msg );
1300 if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1301 if ( si->si_conn ) {
1302 connection_client_stop( si->si_conn );
1305 ldap_unbind_ext( si->si_ld, NULL, NULL );
1317 struct re_s* rtask = arg;
1318 syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1319 Connection conn = {0};
1320 OperationBuffer opbuf;
1322 int rc = LDAP_SUCCESS;
1325 int i, defer = 1, fail = 0, freeinfo = 0;
1330 if ( slapd_shutdown )
1333 Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl %s\n", si->si_ridtxt, 0, 0 );
1335 /* Don't get stuck here while a pause is initiated */
1336 while ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
1337 if ( slapd_shutdown )
1339 if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
1340 ldap_pvt_thread_yield();
1343 if ( si->si_ctype < 1 ) {
1347 switch( abs( si->si_type ) ) {
1348 case LDAP_SYNC_REFRESH_ONLY:
1349 case LDAP_SYNC_REFRESH_AND_PERSIST:
1352 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1356 if ( slapd_shutdown ) {
1358 if ( si->si_conn ) {
1359 connection_client_stop( si->si_conn );
1362 ldap_unbind_ext( si->si_ld, NULL, NULL );
1365 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1369 connection_fake_init( &conn, &opbuf, ctx );
1371 /* o_connids must be unique for slap_graduate_commit_csn */
1372 op->o_connid = SLAPD_SYNC_RID2SYNCCONN(si->si_rid);
1374 op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1377 /* Coordinate contextCSN updates with any syncprov overlays
1378 * in use. This may be complicated by the use of the glue
1381 * Typically there is a single syncprov mastering the entire
1382 * glued tree. In that case, our contextCSN updates should
1383 * go to the master DB. But if there is no syncprov on the
1384 * master DB, then nothing special is needed here.
1386 * Alternatively, there may be individual syncprov overlays
1387 * on each glued branch. In that case, each syncprov only
1388 * knows about changes within its own branch. And so our
1389 * contextCSN updates should only go to the local DB.
1391 if ( !si->si_wbe ) {
1392 if ( SLAP_GLUE_SUBORDINATE( be ) && !overlay_is_inst( be, "syncprov" )) {
1393 BackendDB * top_be = select_backend( &be->be_nsuffix[0], 1 );
1394 if ( overlay_is_inst( top_be, "syncprov" ))
1395 si->si_wbe = top_be;
1401 if ( SLAP_SYNC_SUBENTRY( si->si_wbe )) {
1402 build_new_dn( &si->si_contextdn, &si->si_wbe->be_nsuffix[0],
1403 (struct berval *)&slap_ldapsync_cn_bv, NULL );
1405 si->si_contextdn = si->si_wbe->be_nsuffix[0];
1408 if ( !si->si_schemachecking )
1409 op->o_no_schema_check = 1;
1411 /* Establish session, do search */
1413 si->si_refreshDelete = 0;
1414 si->si_refreshPresent = 0;
1416 /* use main DB when retrieving contextCSN */
1417 op->o_bd = si->si_wbe;
1418 op->o_dn = op->o_bd->be_rootdn;
1419 op->o_ndn = op->o_bd->be_rootndn;
1420 rc = do_syncrep1( op, si );
1424 /* Process results */
1425 if ( rc == LDAP_SUCCESS ) {
1426 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1428 /* use current DB */
1430 op->o_dn = op->o_bd->be_rootdn;
1431 op->o_ndn = op->o_bd->be_rootndn;
1432 rc = do_syncrep2( op, si );
1433 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1434 rc = ldap_sync_search( si, op->o_tmpmemctx );
1439 /* We got deleted while running on cn=config */
1440 if ( si->si_ctype < 1 ) {
1441 if ( si->si_ctype == -1 ) {
1450 if ( rc != SYNC_PAUSED ) {
1451 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1452 /* If we succeeded, enable the connection for further listening.
1453 * If we failed, tear down the connection and reschedule.
1455 if ( rc == LDAP_SUCCESS ) {
1456 if ( si->si_conn ) {
1457 connection_client_enable( si->si_conn );
1459 si->si_conn = connection_client_setup( s, do_syncrepl, arg );
1461 } else if ( si->si_conn ) {
1465 if ( rc == -2 ) rc = 0;
1470 /* At this point, we have 5 cases:
1471 * 1) for any hard failure, give up and remove this task
1472 * 2) for ServerDown, reschedule this task to run later
1473 * 3) for threadpool pause, reschedule to run immediately
1474 * 4) for Refresh and Success, reschedule to run
1475 * 5) for Persist and Success, reschedule to defer
1477 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1479 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask ) ) {
1480 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1484 connection_client_stop( si->si_conn );
1488 if ( rc == SYNC_PAUSED ) {
1489 rtask->interval.tv_sec = 0;
1490 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1491 rtask->interval.tv_sec = si->si_interval;
1493 } else if ( rc == LDAP_SUCCESS ) {
1494 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1497 rtask->interval.tv_sec = si->si_interval;
1498 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1499 if ( si->si_retrynum ) {
1500 for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1501 si->si_retrynum[i] = si->si_retrynum_init[i];
1503 si->si_retrynum[i] = RETRYNUM_TAIL;
1506 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1507 if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1511 if ( si->si_ctype < 1
1512 || !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1514 ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1517 fail = RETRYNUM_TAIL;
1518 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1519 if ( si->si_retrynum[i] > 0 )
1520 si->si_retrynum[i]--;
1521 fail = si->si_retrynum[i];
1522 rtask->interval.tv_sec = si->si_retryinterval[i];
1523 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1524 slap_wake_listener();
1528 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1529 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1532 if ( fail == RETRYNUM_TAIL ) {
1533 Debug( LDAP_DEBUG_ANY,
1534 "do_syncrepl: %s rc %d quitting\n",
1535 si->si_ridtxt, rc, 0 );
1536 } else if ( fail > 0 ) {
1537 Debug( LDAP_DEBUG_ANY,
1538 "do_syncrepl: %s rc %d retrying (%d retries left)\n",
1539 si->si_ridtxt, rc, fail );
1541 Debug( LDAP_DEBUG_ANY,
1542 "do_syncrepl: %s rc %d retrying\n",
1543 si->si_ridtxt, rc, 0 );
1547 /* Do final delete cleanup */
1549 syncinfo_free( si, 0 );
1554 static slap_verbmasks modops[] = {
1555 { BER_BVC("add"), LDAP_REQ_ADD },
1556 { BER_BVC("delete"), LDAP_REQ_DELETE },
1557 { BER_BVC("modify"), LDAP_REQ_MODIFY },
1558 { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1562 static Modifications *
1563 syncrepl_accesslog_mods(
1570 AttributeDescription *ad;
1571 struct berval bv, bv2;
1573 Modifications *mod = NULL, *modlist = NULL, **modtail;
1578 for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1582 colon = ber_bvchr( &bv, ':' );
1588 bv.bv_len = colon - bv.bv_val;
1589 if ( slap_bv2ad( &bv, &ad, &text ) ) {
1594 /* Ignore dynamically generated attrs */
1595 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1599 /* Ignore excluded attrs */
1600 if ( ldap_charray_inlist( si->si_exattrs,
1601 ad->ad_type->sat_cname.bv_val ) )
1607 case '+': op = LDAP_MOD_ADD; break;
1608 case '-': op = LDAP_MOD_DELETE; break;
1609 case '=': op = LDAP_MOD_REPLACE; break;
1610 case '#': op = LDAP_MOD_INCREMENT; break;
1614 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1615 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1618 mod->sml_next = NULL;
1620 mod->sml_type = ad->ad_cname;
1621 mod->sml_values = NULL;
1622 mod->sml_nvalues = NULL;
1623 mod->sml_numvals = 0;
1626 modtail = &mod->sml_next;
1628 if ( colon[2] == ' ' ) {
1629 bv.bv_val = colon + 3;
1630 bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1631 ber_dupbv( &bv2, &bv );
1632 ber_bvarray_add( &mod->sml_values, &bv2 );
1639 static Modifications *
1640 syncrepl_changelog_mods(
1645 return NULL; /* FIXME */
1649 syncrepl_message_to_op(
1655 BerElement *ber = NULL;
1656 Modifications *modlist = NULL;
1658 SlapReply rs = { REP_RESULT };
1659 slap_callback cb = { NULL, null_callback, NULL, NULL };
1662 char txtbuf[SLAP_TEXT_BUFLEN];
1663 size_t textlen = sizeof txtbuf;
1665 struct berval bdn, dn = BER_BVNULL, ndn;
1666 struct berval bv, *bvals = NULL;
1667 struct berval rdn = BER_BVNULL, sup = BER_BVNULL,
1668 prdn = BER_BVNULL, nrdn = BER_BVNULL,
1669 psup = BER_BVNULL, nsup = BER_BVNULL;
1670 int rc, deleteOldRdn = 0, freeReqDn = 0;
1671 int do_graduate = 0;
1673 if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1674 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1675 "Message type should be entry (%d)",
1676 si->si_ridtxt, ldap_msgtype( msg ), 0 );
1680 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1685 rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1687 if ( rc != LDAP_SUCCESS ) {
1688 Debug( LDAP_DEBUG_ANY,
1689 "syncrepl_message_to_op: %s dn get failed (%d)",
1690 si->si_ridtxt, rc, 0 );
1694 op->o_tag = LBER_DEFAULT;
1695 op->o_bd = si->si_wbe;
1697 if ( BER_BVISEMPTY( &bdn ) && !BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] ) ) {
1698 Debug( LDAP_DEBUG_ANY,
1699 "syncrepl_message_to_op: %s got empty dn",
1700 si->si_ridtxt, 0, 0 );
1704 while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ) )
1706 if ( bv.bv_val == NULL )
1709 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn ) ) {
1711 rc = dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1712 if ( rc != LDAP_SUCCESS ) {
1713 Debug( LDAP_DEBUG_ANY,
1714 "syncrepl_message_to_op: %s "
1715 "dn \"%s\" normalization failed (%d)",
1716 si->si_ridtxt, bdn.bv_val, rc );
1721 ber_dupbv( &op->o_req_dn, &dn );
1722 ber_dupbv( &op->o_req_ndn, &ndn );
1723 slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1724 slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1726 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req ) ) {
1727 int i = verb_to_mask( bvals[0].bv_val, modops );
1729 Debug( LDAP_DEBUG_ANY,
1730 "syncrepl_message_to_op: %s unknown op %s",
1731 si->si_ridtxt, bvals[0].bv_val, 0 );
1736 op->o_tag = modops[i].mask;
1737 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod ) ) {
1738 /* Parse attribute into modlist */
1739 if ( si->si_syncdata == SYNCDATA_ACCESSLOG ) {
1740 modlist = syncrepl_accesslog_mods( si, bvals );
1742 modlist = syncrepl_changelog_mods( si, bvals );
1744 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn ) ) {
1746 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn ) ) {
1747 if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ) ) {
1750 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup ) ) {
1752 } else if ( !ber_bvstrcasecmp( &bv,
1753 &slap_schema.si_ad_entryCSN->ad_cname ) )
1755 slap_queue_csn( op, bvals );
1761 /* If we didn't get a mod type or a target DN, bail out */
1762 if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn ) ) {
1767 op->o_callback = &cb;
1768 slap_op_time( &op->o_time, &op->o_tincr );
1770 switch( op->o_tag ) {
1772 case LDAP_REQ_MODIFY:
1773 /* If we didn't get required data, bail */
1774 if ( !modlist ) goto done;
1776 rc = slap_mods_check( op, modlist, &text, txtbuf, textlen, NULL );
1778 if ( rc != LDAP_SUCCESS ) {
1779 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1780 "mods check (%s)\n",
1781 si->si_ridtxt, text, 0 );
1785 if ( op->o_tag == LDAP_REQ_ADD ) {
1786 Entry *e = entry_alloc();
1788 op->ora_e->e_name = op->o_req_dn;
1789 op->ora_e->e_nname = op->o_req_ndn;
1791 rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
1792 if( rc != LDAP_SUCCESS ) {
1793 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1794 "mods2entry (%s)\n",
1795 si->si_ridtxt, text, 0 );
1797 rc = op->o_bd->be_add( op, &rs );
1798 Debug( LDAP_DEBUG_SYNC,
1799 "syncrepl_message_to_op: %s be_add %s (%d)\n",
1800 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1803 if ( e == op->ora_e )
1804 be_entry_release_w( op, op->ora_e );
1806 op->orm_modlist = modlist;
1807 op->o_bd = si->si_wbe;
1808 rc = op->o_bd->be_modify( op, &rs );
1809 modlist = op->orm_modlist;
1810 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1811 "syncrepl_message_to_op: %s be_modify %s (%d)\n",
1812 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1813 op->o_bd = si->si_be;
1817 case LDAP_REQ_MODRDN:
1818 if ( BER_BVISNULL( &rdn ) ) goto done;
1820 if ( rdnPretty( NULL, &rdn, &prdn, NULL ) ) {
1823 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ) ) {
1826 if ( !BER_BVISNULL( &sup ) ) {
1827 if ( dnPrettyNormal( NULL, &sup, &psup, &nsup, NULL ) ) {
1830 op->orr_newSup = &psup;
1831 op->orr_nnewSup = ⊅
1833 op->orr_newSup = NULL;
1834 op->orr_nnewSup = NULL;
1836 op->orr_newrdn = prdn;
1837 op->orr_nnewrdn = nrdn;
1838 op->orr_deleteoldrdn = deleteOldRdn;
1839 op->orr_modlist = NULL;
1840 if ( slap_modrdn2mods( op, &rs ) ) {
1844 /* Append modlist for operational attrs */
1848 for ( m = op->orr_modlist; m->sml_next; m = m->sml_next )
1850 m->sml_next = modlist;
1853 rc = op->o_bd->be_modrdn( op, &rs );
1854 slap_mods_free( op->orr_modlist, 1 );
1855 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1856 "syncrepl_message_to_op: %s be_modrdn %s (%d)\n",
1857 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1860 case LDAP_REQ_DELETE:
1861 rc = op->o_bd->be_delete( op, &rs );
1862 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1863 "syncrepl_message_to_op: %s be_delete %s (%d)\n",
1864 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1870 slap_graduate_commit_csn( op );
1871 op->o_bd = si->si_be;
1872 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
1873 BER_BVZERO( &op->o_csn );
1875 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
1877 if ( !BER_BVISNULL( &rdn ) ) {
1878 if ( !BER_BVISNULL( &nsup ) ) {
1879 ch_free( nsup.bv_val );
1881 if ( !BER_BVISNULL( &psup ) ) {
1882 ch_free( psup.bv_val );
1884 if ( !BER_BVISNULL( &nrdn ) ) {
1885 ch_free( nrdn.bv_val );
1887 if ( !BER_BVISNULL( &prdn ) ) {
1888 ch_free( prdn.bv_val );
1892 ch_free( op->o_req_ndn.bv_val );
1893 ch_free( op->o_req_dn.bv_val );
1900 syncrepl_message_to_entry(
1904 Modifications **modlist,
1910 BerElement *ber = NULL;
1913 Modifications **modtail = modlist;
1916 char txtbuf[SLAP_TEXT_BUFLEN];
1917 size_t textlen = sizeof txtbuf;
1919 struct berval bdn = BER_BVNULL, dn, ndn;
1924 if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1925 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s "
1926 "Message type should be entry (%d)",
1927 si->si_ridtxt, ldap_msgtype( msg ), 0 );
1931 op->o_tag = LDAP_REQ_ADD;
1933 rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1934 if ( rc != LDAP_SUCCESS ) {
1935 Debug( LDAP_DEBUG_ANY,
1936 "syncrepl_message_to_entry: %s dn get failed (%d)",
1937 si->si_ridtxt, rc, 0 );
1941 if ( BER_BVISEMPTY( &bdn ) && !BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] ) ) {
1942 Debug( LDAP_DEBUG_ANY,
1943 "syncrepl_message_to_entry: %s got empty dn",
1944 si->si_ridtxt, 0, 0 );
1948 if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1949 /* NOTE: this could be done even before decoding the DN,
1950 * although encoding errors wouldn't be detected */
1955 if ( entry == NULL ) {
1959 rc = dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1960 if ( rc != LDAP_SUCCESS ) {
1961 /* One of the things that could happen is that the schema
1962 * is not lined-up; this could result in unknown attributes.
1963 * A value non conformant to the syntax should be unlikely,
1964 * except when replicating between different versions
1965 * of the software, or when syntax validation bugs are fixed
1967 Debug( LDAP_DEBUG_ANY,
1968 "syncrepl_message_to_entry: "
1969 "%s dn \"%s\" normalization failed (%d)",
1970 si->si_ridtxt, bdn.bv_val, rc );
1974 ber_dupbv( &op->o_req_dn, &dn );
1975 ber_dupbv( &op->o_req_ndn, &ndn );
1976 slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1977 slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1979 is_ctx = dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] );
1982 e->e_name = op->o_req_dn;
1983 e->e_nname = op->o_req_ndn;
1985 while ( ber_remaining( ber ) ) {
1986 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1987 LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1992 /* Drop all updates to the contextCSN of the context entry
1995 if ( is_ctx && !strcasecmp( tmp.sml_type.bv_val,
1996 slap_schema.si_ad_contextCSN->ad_cname.bv_val )) {
1997 ber_bvarray_free( tmp.sml_values );
2001 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
2003 mod->sml_op = LDAP_MOD_REPLACE;
2005 mod->sml_next = NULL;
2006 mod->sml_desc = NULL;
2007 mod->sml_type = tmp.sml_type;
2008 mod->sml_values = tmp.sml_values;
2009 mod->sml_nvalues = NULL;
2010 mod->sml_numvals = 0; /* slap_mods_check will set this */
2013 modtail = &mod->sml_next;
2016 if ( *modlist == NULL ) {
2017 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s no attributes\n",
2018 si->si_ridtxt, 0, 0 );
2023 rc = slap_mods_check( op, *modlist, &text, txtbuf, textlen, NULL );
2025 if ( rc != LDAP_SUCCESS ) {
2026 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods check (%s)\n",
2027 si->si_ridtxt, text, 0 );
2031 /* Strip out dynamically generated attrs */
2032 for ( modtail = modlist; *modtail ; ) {
2034 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
2035 *modtail = mod->sml_next;
2036 slap_mod_free( &mod->sml_mod, 0 );
2039 modtail = &mod->sml_next;
2043 /* Strip out attrs in exattrs list */
2044 for ( modtail = modlist; *modtail ; ) {
2046 if ( ldap_charray_inlist( si->si_exattrs,
2047 mod->sml_desc->ad_type->sat_cname.bv_val ) )
2049 *modtail = mod->sml_next;
2050 slap_mod_free( &mod->sml_mod, 0 );
2053 modtail = &mod->sml_next;
2057 rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
2058 if( rc != LDAP_SUCCESS ) {
2059 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods2entry (%s)\n",
2060 si->si_ridtxt, text, 0 );
2065 if ( rc != LDAP_SUCCESS ) {
2077 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
2079 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
2080 * entry if a previous refresh was interrupted before sending us a new
2081 * context state. We try to compare the new entry to the existing entry
2082 * and ignore the new entry if they are the same.
2084 * Also, we may get an update where the entryDN has changed, due to
2085 * a ModDn on the provider. We detect this as well, so we can issue
2086 * the corresponding operation locally.
2088 * In the case of a modify, we get a list of all the attributes
2089 * in the original entry. Rather than deleting the entry and re-adding it,
2090 * we issue a Modify request that deletes all the attributes and adds all
2091 * the new ones. This avoids the issue of trying to delete/add a non-leaf
2094 * We otherwise distinguish ModDN from Modify; in the case of
2095 * a ModDN we just use the CSN, modifyTimestamp and modifiersName
2096 * operational attributes from the entry, and do a regular ModDN.
2098 typedef struct dninfo {
2102 struct berval nnewSup;
2103 int renamed; /* Was an existing entry renamed? */
2104 int delOldRDN; /* Was old RDN deleted? */
2105 Modifications **modlist; /* the modlist we received */
2106 Modifications *mods; /* the modlist we compared */
2107 Attribute *oldNattr; /* old naming attr */
2108 AttributeDescription *oldDesc; /* for renames */
2109 AttributeDescription *newDesc; /* for renames */
2112 /* return 1 if inserted, 0 otherwise */
2114 avl_presentlist_insert(
2116 struct berval *syncUUID )
2118 struct berval *syncuuid_bv = ch_malloc( sizeof( struct berval ) + syncUUID->bv_len + 1 );
2120 syncuuid_bv->bv_len = syncUUID->bv_len;
2121 syncuuid_bv->bv_val = (char *)&syncuuid_bv[1];
2122 AC_MEMCPY( syncuuid_bv->bv_val, syncUUID->bv_val, syncUUID->bv_len );
2123 syncuuid_bv->bv_val[ syncuuid_bv->bv_len ] = '\0';
2125 if ( avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
2126 syncuuid_cmp, avl_dup_error ) )
2128 ch_free( syncuuid_bv );
2140 Modifications** modlist,
2142 struct berval* syncUUID,
2143 struct berval* syncCSN )
2145 Backend *be = op->o_bd;
2146 slap_callback cb = { NULL, NULL, NULL, NULL };
2147 int syncuuid_inserted = 0;
2148 struct berval syncUUID_strrep = BER_BVNULL;
2150 SlapReply rs_search = {REP_RESULT};
2151 SlapReply rs_delete = {REP_RESULT};
2152 SlapReply rs_add = {REP_RESULT};
2153 SlapReply rs_modify = {REP_RESULT};
2155 AttributeAssertion ava = ATTRIBUTEASSERTION_INIT;
2156 int rc = LDAP_SUCCESS;
2158 struct berval pdn = BER_BVNULL;
2163 Debug( LDAP_DEBUG_SYNC,
2164 "syncrepl_entry: %s LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_%s)\n",
2165 si->si_ridtxt, syncrepl_state2str( syncstate ), 0 );
2167 if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD ) ) {
2168 if ( !si->si_refreshPresent && !si->si_refreshDone ) {
2169 syncuuid_inserted = avl_presentlist_insert( si, syncUUID );
2173 if ( syncstate == LDAP_SYNC_PRESENT ) {
2175 } else if ( syncstate != LDAP_SYNC_DELETE ) {
2176 if ( entry == NULL ) {
2181 (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
2182 if ( syncstate != LDAP_SYNC_DELETE ) {
2183 Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
2186 /* add if missing */
2187 attr_merge_one( entry, slap_schema.si_ad_entryUUID,
2188 &syncUUID_strrep, syncUUID );
2190 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
2191 /* replace only if necessary */
2192 if ( a->a_nvals != a->a_vals ) {
2193 ber_memfree( a->a_nvals[0].bv_val );
2194 ber_dupbv( &a->a_nvals[0], syncUUID );
2196 ber_memfree( a->a_vals[0].bv_val );
2197 ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
2201 f.f_choice = LDAP_FILTER_EQUALITY;
2203 ava.aa_desc = slap_schema.si_ad_entryUUID;
2204 ava.aa_value = *syncUUID;
2206 if ( syncuuid_inserted ) {
2207 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
2208 si->si_ridtxt, syncUUID_strrep.bv_val, 0 );
2210 op->ors_filter = &f;
2212 op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
2213 op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
2214 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx );
2215 AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
2216 AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
2217 syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
2218 op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
2219 op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
2221 op->o_tag = LDAP_REQ_SEARCH;
2222 op->ors_scope = LDAP_SCOPE_SUBTREE;
2223 op->ors_deref = LDAP_DEREF_NEVER;
2225 /* get the entry for this UUID */
2226 op->o_req_dn = si->si_base;
2227 op->o_req_ndn = si->si_base;
2229 op->o_time = slap_get_time();
2230 op->ors_tlimit = SLAP_NO_LIMIT;
2232 op->ors_limit = NULL;
2234 op->ors_attrs = slap_anlist_all_attributes;
2235 op->ors_attrsonly = 0;
2237 /* set callback function */
2238 op->o_callback = &cb;
2239 cb.sc_response = dn_callback;
2240 cb.sc_private = &dni;
2241 dni.new_entry = entry;
2242 dni.modlist = modlist;
2244 rc = be->be_search( op, &rs_search );
2245 Debug( LDAP_DEBUG_SYNC,
2246 "syncrepl_entry: %s be_search (%d)\n",
2247 si->si_ridtxt, rc, 0 );
2249 if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
2250 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2253 cb.sc_response = null_callback;
2256 if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
2257 Debug( LDAP_DEBUG_SYNC,
2258 "syncrepl_entry: %s %s\n",
2259 si->si_ridtxt, entry->e_name.bv_val, 0 );
2261 Debug( LDAP_DEBUG_SYNC,
2262 "syncrepl_entry: %s %s\n",
2263 si->si_ridtxt, dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0 );
2266 assert( BER_BVISNULL( &op->o_csn ) );
2268 slap_queue_csn( op, syncCSN );
2271 slap_op_time( &op->o_time, &op->o_tincr );
2272 switch ( syncstate ) {
2274 case LDAP_SYNC_MODIFY:
2275 if ( BER_BVISNULL( &op->o_csn ))
2278 Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
2280 /* FIXME: op->o_csn is assumed to be
2281 * on the thread's slab; this needs
2282 * to be cleared ASAP.
2283 * What happens if already present?
2285 assert( BER_BVISNULL( &op->o_csn ) );
2286 op->o_csn = a->a_vals[0];
2291 if ( BER_BVISNULL( &dni.dn ) ) {
2293 op->o_req_dn = entry->e_name;
2294 op->o_req_ndn = entry->e_nname;
2295 op->o_tag = LDAP_REQ_ADD;
2297 op->o_bd = si->si_wbe;
2299 rc = op->o_bd->be_add( op, &rs_add );
2300 Debug( LDAP_DEBUG_SYNC,
2301 "syncrepl_entry: %s be_add %s (%d)\n",
2302 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2303 switch ( rs_add.sr_err ) {
2305 if ( op->ora_e == entry ) {
2306 be_entry_release_w( op, entry );
2312 /* we assume that LDAP_NO_SUCH_OBJECT is returned
2313 * only if the suffix entry is not present */
2314 case LDAP_NO_SUCH_OBJECT:
2315 rc = syncrepl_add_glue( op, entry );
2319 /* if an entry was added via syncrepl_add_glue(),
2320 * it likely has no entryUUID, so the previous
2321 * be_search() doesn't find it. In this case,
2322 * give syncrepl a chance to modify it. Also
2323 * allow for entries that were recreated with the
2324 * same DN but a different entryUUID.
2326 case LDAP_ALREADY_EXISTS:
2328 Operation op2 = *op;
2329 SlapReply rs2 = { 0 };
2330 slap_callback cb2 = { 0 };
2333 op2.o_tag = LDAP_REQ_SEARCH;
2334 op2.o_req_dn = entry->e_name;
2335 op2.o_req_ndn = entry->e_nname;
2336 op2.ors_scope = LDAP_SCOPE_BASE;
2337 op2.ors_deref = LDAP_DEREF_NEVER;
2338 op2.ors_attrs = slap_anlist_all_attributes;
2339 op2.ors_attrsonly = 0;
2340 op2.ors_limit = NULL;
2342 op2.ors_tlimit = SLAP_NO_LIMIT;
2344 f.f_choice = LDAP_FILTER_PRESENT;
2345 f.f_desc = slap_schema.si_ad_objectClass;
2346 op2.ors_filter = &f;
2347 op2.ors_filterstr = generic_filterstr;
2349 op2.o_callback = &cb2;
2350 cb2.sc_response = dn_callback;
2351 cb2.sc_private = &dni;
2353 rc = be->be_search( &op2, &rs2 );
2354 if ( rc ) goto done;
2357 slap_op_time( &op->o_time, &op->o_tincr );
2363 Debug( LDAP_DEBUG_ANY,
2364 "syncrepl_entry: %s be_add %s failed (%d)\n",
2365 si->si_ridtxt, op->o_req_dn.bv_val, rs_add.sr_err );
2373 op->o_req_dn = dni.dn;
2374 op->o_req_ndn = dni.ndn;
2375 if ( dni.renamed ) {
2376 struct berval noldp, newp;
2377 Modifications *mod, **modtail, **ml, *m2;
2378 int i, got_replace = 0, just_rename = 0;
2380 op->o_tag = LDAP_REQ_MODRDN;
2381 dnRdn( &entry->e_name, &op->orr_newrdn );
2382 dnRdn( &entry->e_nname, &op->orr_nnewrdn );
2384 if ( !BER_BVISNULL( &dni.nnewSup )) {
2385 dnParent( &entry->e_name, &newp );
2386 op->orr_newSup = &newp;
2387 op->orr_nnewSup = &dni.nnewSup;
2389 op->orr_newSup = NULL;
2390 op->orr_nnewSup = NULL;
2392 op->orr_deleteoldrdn = dni.delOldRDN;
2393 op->orr_modlist = NULL;
2394 if ( ( rc = slap_modrdn2mods( op, &rs_modify ) ) ) {
2398 /* Drop the RDN-related mods from this op, because their
2399 * equivalents were just setup by slap_modrdn2mods.
2401 * If delOldRDN is TRUE then we should see a delete modop
2402 * for oldDesc. We might see a replace instead.
2403 * delete with no values: therefore newDesc != oldDesc.
2404 * if oldNattr had only one value, then Drop this op.
2405 * delete with 1 value: can only be the oldRDN value. Drop op.
2406 * delete with N values: Drop oldRDN value, keep remainder.
2407 * replace with 1 value: if oldNattr had only one value and
2408 * newDesc == oldDesc, Drop this op.
2409 * Any other cases must be left intact.
2411 * We should also see an add modop for newDesc. (But not if
2412 * we got a replace modop due to delOldRDN.) If it has
2413 * multiple values, we'll have to drop the new RDN value.
2415 modtail = &op->orr_modlist;
2416 if ( dni.delOldRDN ) {
2417 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2418 if ( (*ml)->sml_desc == dni.oldDesc ) {
2420 if ( mod->sml_op == LDAP_MOD_REPLACE &&
2421 dni.oldDesc != dni.newDesc ) {
2422 /* This Replace is due to other Mods.
2427 if ( mod->sml_numvals <= 1 &&
2428 dni.oldNattr->a_numvals == 1 &&
2429 ( mod->sml_op == LDAP_MOD_DELETE ||
2430 mod->sml_op == LDAP_MOD_REPLACE )) {
2431 if ( mod->sml_op == LDAP_MOD_REPLACE )
2434 *ml = mod->sml_next;
2435 mod->sml_next = NULL;
2436 slap_mods_free( mod, 1 );
2439 if ( mod->sml_op != LDAP_MOD_DELETE || mod->sml_numvals == 0 )
2441 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2442 if ( m2->sml_desc == dni.oldDesc &&
2443 m2->sml_op == LDAP_MOD_DELETE ) break;
2445 for ( i=0; i<mod->sml_numvals; i++ ) {
2446 if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2448 ch_free( mod->sml_values[i].bv_val );
2449 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2450 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2451 if ( mod->sml_nvalues ) {
2452 ch_free( mod->sml_nvalues[i].bv_val );
2453 mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2454 BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2459 if ( !mod->sml_numvals ) {
2461 *ml = mod->sml_next;
2462 mod->sml_next = NULL;
2463 slap_mods_free( mod, 1 );
2469 if ( !got_replace ) {
2470 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2471 if ( (*ml)->sml_desc == dni.newDesc ) {
2473 if ( mod->sml_op != LDAP_MOD_ADD )
2475 if ( mod->sml_numvals == 1 ) {
2477 *ml = mod->sml_next;
2478 mod->sml_next = NULL;
2479 slap_mods_free( mod, 1 );
2482 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2483 if ( m2->sml_desc == dni.oldDesc &&
2484 m2->sml_op == SLAP_MOD_SOFTADD ) break;
2486 for ( i=0; i<mod->sml_numvals; i++ ) {
2487 if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2489 ch_free( mod->sml_values[i].bv_val );
2490 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2491 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2492 if ( mod->sml_nvalues ) {
2493 ch_free( mod->sml_nvalues[i].bv_val );
2494 mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2495 BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2505 /* RDNs must be NUL-terminated for back-ldap */
2506 noldp = op->orr_newrdn;
2507 ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
2508 noldp = op->orr_nnewrdn;
2509 ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
2511 /* Setup opattrs too */
2513 static AttributeDescription *nullattr = NULL;
2514 static AttributeDescription **const opattrs[] = {
2515 &slap_schema.si_ad_entryCSN,
2516 &slap_schema.si_ad_modifiersName,
2517 &slap_schema.si_ad_modifyTimestamp,
2520 AttributeDescription *opattr;
2524 /* pull mod off incoming modlist */
2525 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
2526 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next )
2528 if ( (*ml)->sml_desc == opattr ) {
2530 *ml = mod->sml_next;
2531 mod->sml_next = NULL;
2533 modtail = &mod->sml_next;
2538 /* If there are still Modifications left, put the opattrs
2539 * back, and let be_modify run. Otherwise, append the opattrs
2540 * to the orr_modlist.
2544 /* don't set a CSN for the rename op */
2546 slap_graduate_commit_csn( op );
2548 mod = op->orr_modlist;
2551 for ( ; mod->sml_next; mod=mod->sml_next );
2554 op->o_bd = si->si_wbe;
2555 rc = op->o_bd->be_modrdn( op, &rs_modify );
2556 op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
2557 op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
2559 slap_mods_free( op->orr_modlist, 1 );
2560 Debug( LDAP_DEBUG_SYNC,
2561 "syncrepl_entry: %s be_modrdn %s (%d)\n",
2562 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2564 /* Renamed entries may still have other mods so just fallthru */
2565 op->o_req_dn = entry->e_name;
2566 op->o_req_ndn = entry->e_nname;
2567 /* Use CSN on the modify */
2571 slap_queue_csn( op, syncCSN );
2574 op->o_tag = LDAP_REQ_MODIFY;
2575 op->orm_modlist = dni.mods;
2576 op->orm_no_opattrs = 1;
2577 op->o_bd = si->si_wbe;
2579 rc = op->o_bd->be_modify( op, &rs_modify );
2580 slap_mods_free( op->orm_modlist, 1 );
2581 op->orm_no_opattrs = 0;
2582 Debug( LDAP_DEBUG_SYNC,
2583 "syncrepl_entry: %s be_modify %s (%d)\n",
2584 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2585 if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2586 Debug( LDAP_DEBUG_ANY,
2587 "syncrepl_entry: %s be_modify failed (%d)\n",
2588 si->si_ridtxt, rs_modify.sr_err, 0 );
2592 } else if ( !dni.renamed ) {
2593 Debug( LDAP_DEBUG_SYNC,
2594 "syncrepl_entry: %s entry unchanged, ignored (%s)\n",
2595 si->si_ridtxt, op->o_req_dn.bv_val, 0 );
2597 slap_graduate_commit_csn( op );
2602 case LDAP_SYNC_DELETE :
2603 if ( !BER_BVISNULL( &dni.dn ) ) {
2604 op->o_req_dn = dni.dn;
2605 op->o_req_ndn = dni.ndn;
2606 op->o_tag = LDAP_REQ_DELETE;
2607 op->o_bd = si->si_wbe;
2608 rc = op->o_bd->be_delete( op, &rs_delete );
2609 Debug( LDAP_DEBUG_SYNC,
2610 "syncrepl_entry: %s be_delete %s (%d)\n",
2611 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2613 while ( rs_delete.sr_err == LDAP_SUCCESS
2614 && op->o_delete_glue_parent ) {
2615 op->o_delete_glue_parent = 0;
2616 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2617 slap_callback cb = { NULL };
2618 cb.sc_response = slap_null_cb;
2619 dnParent( &op->o_req_ndn, &pdn );
2621 op->o_req_ndn = pdn;
2622 op->o_callback = &cb;
2623 op->o_bd->be_delete( op, &rs_delete );
2634 Debug( LDAP_DEBUG_ANY,
2635 "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
2640 if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
2641 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
2642 BER_BVZERO( &syncUUID_strrep );
2644 if ( !BER_BVISNULL( &dni.ndn ) ) {
2645 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
2647 if ( !BER_BVISNULL( &dni.dn ) ) {
2648 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
2651 entry_free( entry );
2654 slap_graduate_commit_csn( op );
2656 if ( !BER_BVISNULL( &op->o_csn ) && freecsn ) {
2657 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2659 BER_BVZERO( &op->o_csn );
2663 static struct berval gcbva[] = {
2669 #define NP_DELETE_ONE 2
2672 syncrepl_del_nonpresent(
2676 struct sync_cookie *sc,
2679 Backend* be = op->o_bd;
2680 slap_callback cb = { NULL };
2681 SlapReply rs_search = {REP_RESULT};
2682 SlapReply rs_delete = {REP_RESULT};
2683 SlapReply rs_modify = {REP_RESULT};
2684 struct nonpresent_entry *np_list, *np_prev;
2686 AttributeName an[2];
2688 struct berval pdn = BER_BVNULL;
2691 op->o_req_dn = si->si_base;
2692 op->o_req_ndn = si->si_base;
2694 cb.sc_response = nonpresent_callback;
2697 op->o_callback = &cb;
2698 op->o_tag = LDAP_REQ_SEARCH;
2699 op->ors_scope = si->si_scope;
2700 op->ors_deref = LDAP_DEREF_NEVER;
2701 op->o_time = slap_get_time();
2702 op->ors_tlimit = SLAP_NO_LIMIT;
2707 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
2710 op->ors_attrsonly = 1;
2711 op->ors_attrs = slap_anlist_no_attrs;
2712 op->ors_limit = NULL;
2713 op->ors_filter = &uf;
2716 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2718 uf.f_choice = LDAP_FILTER_EQUALITY;
2719 si->si_refreshDelete |= NP_DELETE_ONE;
2721 for (i=0; uuids[i].bv_val; i++) {
2723 uf.f_av_value = uuids[i];
2724 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2725 rc = be->be_search( op, &rs_search );
2726 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2728 si->si_refreshDelete ^= NP_DELETE_ONE;
2732 AttributeAssertion mmaa;
2734 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2735 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2736 an[0].an_desc = slap_schema.si_ad_entryUUID;
2738 op->ors_slimit = SLAP_NO_LIMIT;
2739 op->ors_tlimit = SLAP_NO_LIMIT;
2740 op->ors_limit = NULL;
2741 op->ors_attrsonly = 0;
2742 op->ors_filter = filter_dup( si->si_filter, op->o_tmpmemctx );
2743 /* In multimaster, updates can continue to arrive while
2744 * we're searching. Limit the search result to entries
2745 * older than our newest cookie CSN.
2747 if ( SLAP_MULTIMASTER( op->o_bd )) {
2752 f->f_choice = LDAP_FILTER_AND;
2753 f->f_next = op->ors_filter;
2757 f->f_choice = LDAP_FILTER_LE;
2759 f->f_av_desc = slap_schema.si_ad_entryCSN;
2761 BER_BVZERO( &f->f_av_value );
2762 for ( i=0; i<sc->numcsns; i++ ) {
2763 if ( ber_bvcmp( &sc->ctxcsn[i], &f->f_av_value ) > 0 )
2764 f->f_av_value = sc->ctxcsn[i];
2766 of = op->ors_filter;
2767 op->ors_filter = mmf;
2768 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2771 op->ors_filterstr = si->si_filterstr;
2773 op->o_nocaching = 1;
2776 rc = be->be_search( op, &rs_search );
2777 if ( SLAP_MULTIMASTER( op->o_bd )) {
2778 op->ors_filter = of;
2780 if ( op->ors_filter ) filter_free_x( op, op->ors_filter, 1 );
2781 if ( op->ors_filterstr.bv_val != si->si_filterstr.bv_val ) {
2782 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2787 op->o_nocaching = 0;
2789 if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2791 if ( sc->ctxcsn && !BER_BVISNULL( &sc->ctxcsn[m] ) ) {
2792 csn = sc->ctxcsn[m];
2794 csn = si->si_syncCookie.ctxcsn[0];
2797 op->o_bd = si->si_wbe;
2798 slap_queue_csn( op, &csn );
2800 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2801 while ( np_list != NULL ) {
2802 LDAP_LIST_REMOVE( np_list, npe_link );
2804 np_list = LDAP_LIST_NEXT( np_list, npe_link );
2805 op->o_tag = LDAP_REQ_DELETE;
2806 op->o_callback = &cb;
2807 cb.sc_response = null_callback;
2809 op->o_req_dn = *np_prev->npe_name;
2810 op->o_req_ndn = *np_prev->npe_nname;
2811 rc = op->o_bd->be_delete( op, &rs_delete );
2812 Debug( LDAP_DEBUG_SYNC,
2813 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n",
2814 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2816 if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2817 Modifications mod1, mod2;
2818 mod1.sml_op = LDAP_MOD_REPLACE;
2820 mod1.sml_desc = slap_schema.si_ad_objectClass;
2821 mod1.sml_type = mod1.sml_desc->ad_cname;
2822 mod1.sml_numvals = 2;
2823 mod1.sml_values = &gcbva[0];
2824 mod1.sml_nvalues = NULL;
2825 mod1.sml_next = &mod2;
2827 mod2.sml_op = LDAP_MOD_REPLACE;
2829 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2830 mod2.sml_type = mod2.sml_desc->ad_cname;
2831 mod2.sml_numvals = 1;
2832 mod2.sml_values = &gcbva[1];
2833 mod2.sml_nvalues = NULL;
2834 mod2.sml_next = NULL;
2836 op->o_tag = LDAP_REQ_MODIFY;
2837 op->orm_modlist = &mod1;
2839 rc = op->o_bd->be_modify( op, &rs_modify );
2840 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
2843 while ( rs_delete.sr_err == LDAP_SUCCESS &&
2844 op->o_delete_glue_parent ) {
2845 op->o_delete_glue_parent = 0;
2846 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2847 slap_callback cb = { NULL };
2848 cb.sc_response = slap_null_cb;
2849 dnParent( &op->o_req_ndn, &pdn );
2851 op->o_req_ndn = pdn;
2852 op->o_callback = &cb;
2853 /* give it a root privil ? */
2854 op->o_bd->be_delete( op, &rs_delete );
2860 op->o_delete_glue_parent = 0;
2862 ber_bvfree( np_prev->npe_name );
2863 ber_bvfree( np_prev->npe_nname );
2866 if ( slapd_shutdown ) {
2871 slap_graduate_commit_csn( op );
2874 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2875 BER_BVZERO( &op->o_csn );
2886 Backend *be = op->o_bd;
2887 slap_callback cb = { NULL };
2892 struct berval dn = BER_BVNULL;
2893 struct berval ndn = BER_BVNULL;
2895 SlapReply rs_add = {REP_RESULT};
2896 struct berval ptr, nptr;
2899 op->o_tag = LDAP_REQ_ADD;
2900 op->o_callback = &cb;
2901 cb.sc_response = null_callback;
2902 cb.sc_private = NULL;
2907 /* count RDNs in suffix */
2908 if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2909 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2911 ptr.bv_len -= comma - ptr.bv_val;
2921 /* Start with BE suffix */
2923 for ( i = 0; i < suffrdns; i++ ) {
2924 comma = ber_bvrchr( &ptr, ',' );
2925 if ( comma != NULL ) {
2926 ptr.bv_len = comma - ptr.bv_val;
2933 if ( !BER_BVISEMPTY( &ptr ) ) {
2934 dn.bv_len -= ptr.bv_len + 1;
2935 dn.bv_val += ptr.bv_len + 1;
2938 /* the normalizedDNs are always the same length, no counting
2942 if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2943 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2944 ndn.bv_len = be->be_nsuffix[0].bv_len;
2946 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2952 while ( ndn.bv_val > e->e_nname.bv_val ) {
2953 glue = entry_alloc();
2954 ber_dupbv( &glue->e_name, &dn );
2955 ber_dupbv( &glue->e_nname, &ndn );
2957 a = attr_alloc( slap_schema.si_ad_objectClass );
2960 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
2961 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2962 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2963 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2965 a->a_nvals = a->a_vals;
2967 a->a_next = glue->e_attrs;
2970 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
2973 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
2974 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2975 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2977 a->a_nvals = a->a_vals;
2979 a->a_next = glue->e_attrs;
2982 op->o_req_dn = glue->e_name;
2983 op->o_req_ndn = glue->e_nname;
2985 rc = be->be_add ( op, &rs_add );
2986 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2987 if ( op->ora_e == glue )
2988 be_entry_release_w( op, glue );
2990 /* incl. ALREADY EXIST */
2992 if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
2998 /* Move to next child */
2999 comma = ber_bvrchr( &ptr, ',' );
3000 if ( comma == NULL ) {
3003 ptr.bv_len = comma - ptr.bv_val;
3005 dn.bv_val = ++comma;
3006 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
3008 comma = ber_bvrchr( &nptr, ',' );
3009 assert( comma != NULL );
3010 nptr.bv_len = comma - nptr.bv_val;
3012 ndn.bv_val = ++comma;
3013 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
3016 op->o_req_dn = e->e_name;
3017 op->o_req_ndn = e->e_nname;
3019 rc = be->be_add ( op, &rs_add );
3020 if ( rs_add.sr_err == LDAP_SUCCESS ) {
3021 if ( op->ora_e == e )
3022 be_entry_release_w( op, e );
3031 syncrepl_updateCookie(
3034 struct sync_cookie *syncCookie )
3036 Backend *be = op->o_bd;
3038 struct berval first = BER_BVNULL;
3040 Syntax *syn = slap_schema.si_ad_contextCSN->ad_type->sat_syntax;
3043 int rc, i, j, changed = 0;
3046 slap_callback cb = { NULL };
3047 SlapReply rs_modify = {REP_RESULT};
3049 mod.sml_op = LDAP_MOD_REPLACE;
3050 mod.sml_desc = slap_schema.si_ad_contextCSN;
3051 mod.sml_type = mod.sml_desc->ad_cname;
3052 mod.sml_flags = SLAP_MOD_INTERNAL;
3053 mod.sml_nvalues = NULL;
3054 mod.sml_next = NULL;
3056 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
3059 for ( i=0; i<syncCookie->numcsns; i++ ) {
3060 assert( !syn->ssyn_validate( syn, syncCookie->ctxcsn+i ));
3062 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3063 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3067 /* clone the cookieState CSNs so we can Replace the whole thing */
3068 mod.sml_numvals = si->si_cookieState->cs_num;
3069 mod.sml_values = op->o_tmpalloc(( mod.sml_numvals+1 )*sizeof(struct berval), op->o_tmpmemctx );
3070 for ( i=0; i<mod.sml_numvals; i++ )
3071 mod.sml_values[i] = si->si_cookieState->cs_vals[i];
3072 BER_BVZERO( &mod.sml_values[i] );
3074 /* find any CSNs in the syncCookie that are newer than the cookieState */
3075 for ( i=0; i<syncCookie->numcsns; i++ ) {
3076 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
3077 if ( syncCookie->sids[i] != si->si_cookieState->cs_sids[j] )
3079 len = syncCookie->ctxcsn[i].bv_len;
3080 if ( len > si->si_cookieState->cs_vals[j].bv_len )
3081 len = si->si_cookieState->cs_vals[j].bv_len;
3082 if ( memcmp( syncCookie->ctxcsn[i].bv_val,
3083 si->si_cookieState->cs_vals[j].bv_val, len ) > 0 ) {
3084 mod.sml_values[j] = syncCookie->ctxcsn[i];
3086 if ( BER_BVISNULL( &first ) ) {
3087 first = syncCookie->ctxcsn[i];
3089 } else if ( memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 )
3091 first = syncCookie->ctxcsn[i];
3096 /* there was no match for this SID, it's a new CSN */
3097 if ( j == si->si_cookieState->cs_num ) {
3098 mod.sml_values = op->o_tmprealloc( mod.sml_values,
3099 ( mod.sml_numvals+2 )*sizeof(struct berval), op->o_tmpmemctx );
3100 mod.sml_values[mod.sml_numvals++] = syncCookie->ctxcsn[i];
3101 BER_BVZERO( &mod.sml_values[mod.sml_numvals] );
3102 if ( BER_BVISNULL( &first ) ) {
3103 first = syncCookie->ctxcsn[i];
3104 } else if ( memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 )
3106 first = syncCookie->ctxcsn[i];
3111 /* Should never happen, ITS#5065 */
3112 if ( BER_BVISNULL( &first ) || !changed ) {
3113 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3114 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
3117 op->o_bd = si->si_wbe;
3118 slap_queue_csn( op, &first );
3120 op->o_tag = LDAP_REQ_MODIFY;
3122 cb.sc_response = null_callback;
3125 op->o_callback = &cb;
3126 op->o_req_dn = si->si_contextdn;
3127 op->o_req_ndn = si->si_contextdn;
3129 /* update contextCSN */
3130 op->o_dont_replicate = 1;
3132 op->orm_modlist = &mod;
3133 op->orm_no_opattrs = 1;
3134 rc = op->o_bd->be_modify( op, &rs_modify );
3136 if ( rs_modify.sr_err == LDAP_NO_SUCH_OBJECT &&
3137 SLAP_SYNC_SUBENTRY( op->o_bd )) {
3139 char txtbuf[SLAP_TEXT_BUFLEN];
3140 size_t textlen = sizeof txtbuf;
3141 Entry *e = slap_create_context_csn_entry( op->o_bd, NULL );
3142 rc = slap_mods2entry( &mod, &e, 0, 1, &text, txtbuf, textlen);
3144 rc = op->o_bd->be_add( op, &rs_modify );
3145 if ( e == op->ora_e )
3146 be_entry_release_w( op, op->ora_e );
3149 op->orm_no_opattrs = 0;
3150 op->o_dont_replicate = 0;
3152 if ( rs_modify.sr_err == LDAP_SUCCESS ) {
3153 slap_sync_cookie_free( &si->si_syncCookie, 0 );
3154 slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
3155 /* If we replaced any old values */
3156 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3157 if ( mod.sml_values[i].bv_val != si->si_cookieState->cs_vals[i].bv_val )
3158 ber_bvreplace( &si->si_cookieState->cs_vals[i],
3159 &mod.sml_values[i] );
3161 /* Handle any added values */
3162 if ( i < mod.sml_numvals ) {
3163 si->si_cookieState->cs_num = mod.sml_numvals;
3164 value_add( &si->si_cookieState->cs_vals, &mod.sml_values[i] );
3165 free( si->si_cookieState->cs_sids );
3166 si->si_cookieState->cs_sids = slap_parse_csn_sids(
3167 si->si_cookieState->cs_vals, si->si_cookieState->cs_num, NULL );
3170 si->si_cookieState->cs_age++;
3171 si->si_cookieAge = si->si_cookieState->cs_age;
3173 Debug( LDAP_DEBUG_ANY,
3174 "syncrepl_updateCookie: %s be_modify failed (%d)\n",
3175 si->si_ridtxt, rs_modify.sr_err, 0 );
3177 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3180 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
3181 BER_BVZERO( &op->o_csn );
3182 if ( mod.sml_next ) slap_mods_free( mod.sml_next, 1 );
3183 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
3186 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3187 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3194 /* Compare the attribute from the old entry to the one in the new
3195 * entry. The Modifications from the new entry will either be left
3196 * in place, or changed to an Add or Delete as needed.
3199 attr_cmp( Operation *op, Attribute *old, Attribute *new,
3200 Modifications ***mret, Modifications ***mcur )
3203 Modifications *mod, **modtail;
3209 struct berval **adds, **dels;
3210 /* count old and new */
3211 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
3212 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
3214 /* there MUST be both old and new values */
3219 adds = op->o_tmpalloc( sizeof(struct berval *) * n, op->o_tmpmemctx );
3220 dels = op->o_tmpalloc( sizeof(struct berval *) * o, op->o_tmpmemctx );
3222 for ( i=0; i<o; i++ ) dels[i] = &old->a_vals[i];
3223 for ( i=0; i<n; i++ ) adds[i] = &new->a_vals[i];
3227 for ( i=0; i<o; i++ ) {
3228 for ( j=0; j<n; j++ ) {
3231 if ( bvmatch( dels[i], adds[j] ) ) {
3241 /* Don't delete/add an objectClass, always use the replace op.
3242 * Modify would fail if provider has replaced entry with a new,
3243 * and the new explicitly includes a superior of a class that was
3244 * only included implicitly in the old entry. Ref ITS#5517.
3246 * Also use replace op if attr has no equality matching rule.
3249 if ( nn && no < o &&
3250 ( old->a_desc == slap_schema.si_ad_objectClass ||
3251 !old->a_desc->ad_type->sat_equality ))
3255 /* all old values were deleted, just use the replace op */
3259 /* delete some values */
3260 mod = ch_malloc( sizeof( Modifications ) );
3261 mod->sml_op = LDAP_MOD_DELETE;
3263 mod->sml_desc = old->a_desc;
3264 mod->sml_type = mod->sml_desc->ad_cname;
3265 mod->sml_numvals = no;
3266 mod->sml_values = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3267 if ( old->a_vals != old->a_nvals ) {
3268 mod->sml_nvalues = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3270 mod->sml_nvalues = NULL;
3273 for ( i = 0; i < o; i++ ) {
3274 if ( !dels[i] ) continue;
3275 ber_dupbv( &mod->sml_values[j], &old->a_vals[i] );
3276 if ( mod->sml_nvalues ) {
3277 ber_dupbv( &mod->sml_nvalues[j], &old->a_nvals[i] );
3281 BER_BVZERO( &mod->sml_values[j] );
3282 if ( mod->sml_nvalues ) {
3283 BER_BVZERO( &mod->sml_nvalues[j] );
3286 modtail = &mod->sml_next;
3289 op->o_tmpfree( dels, op->o_tmpmemctx );
3290 /* some values were added */
3291 if ( nn && no < o ) {
3292 mod = ch_malloc( sizeof( Modifications ) );
3293 mod->sml_op = LDAP_MOD_ADD;
3295 mod->sml_desc = old->a_desc;
3296 mod->sml_type = mod->sml_desc->ad_cname;
3297 mod->sml_numvals = nn;
3298 mod->sml_values = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3299 if ( old->a_vals != old->a_nvals ) {
3300 mod->sml_nvalues = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3302 mod->sml_nvalues = NULL;
3305 for ( i = 0; i < n; i++ ) {
3306 if ( !adds[i] ) continue;
3307 ber_dupbv( &mod->sml_values[j], &new->a_vals[i] );
3308 if ( mod->sml_nvalues ) {
3309 ber_dupbv( &mod->sml_nvalues[j], &new->a_nvals[i] );
3313 BER_BVZERO( &mod->sml_values[j] );
3314 if ( mod->sml_nvalues ) {
3315 BER_BVZERO( &mod->sml_nvalues[j] );
3318 modtail = &mod->sml_next;
3321 op->o_tmpfree( adds, op->o_tmpmemctx );
3323 /* new attr, just use the new mod */
3327 /* advance to next element */
3331 **mcur = mod->sml_next;
3333 modtail = &mod->sml_next;
3335 *mcur = &mod->sml_next;
3341 /* Generate a set of modifications to change the old entry into the
3342 * new one. On input ml is a list of modifications equivalent to
3343 * the new entry. It will be massaged and the result will be stored
3346 void syncrepl_diff_entry( Operation *op, Attribute *old, Attribute *new,
3347 Modifications **mods, Modifications **ml, int is_ctx)
3349 Modifications **modtail = mods;
3351 /* We assume that attributes are saved in the same order
3352 * in the remote and local databases. So if we walk through
3353 * the attributeDescriptions one by one they should match in
3354 * lock step. If not, look for an add or delete.
3356 while ( old && new )
3358 /* If we've seen this before, use its mod now */
3359 if ( new->a_flags & SLAP_ATTR_IXADD ) {
3360 attr_cmp( op, NULL, new, &modtail, &ml );
3364 /* Skip contextCSN */
3365 if ( is_ctx && old->a_desc ==
3366 slap_schema.si_ad_contextCSN ) {
3371 if ( old->a_desc != new->a_desc ) {
3375 /* If it's just been re-added later,
3376 * remember that we've seen it.
3378 tmp = attr_find( new, old->a_desc );
3380 tmp->a_flags |= SLAP_ATTR_IXADD;
3382 /* If it's a new attribute, pull it in.
3384 tmp = attr_find( old, new->a_desc );
3386 attr_cmp( op, NULL, new, &modtail, &ml );
3390 /* Delete old attr */
3391 mod = ch_malloc( sizeof( Modifications ) );
3392 mod->sml_op = LDAP_MOD_DELETE;
3394 mod->sml_desc = old->a_desc;
3395 mod->sml_type = mod->sml_desc->ad_cname;
3396 mod->sml_numvals = 0;
3397 mod->sml_values = NULL;
3398 mod->sml_nvalues = NULL;
3400 modtail = &mod->sml_next;
3405 /* kludge - always update modifiersName so that it
3406 * stays co-located with the other mod opattrs. But only
3407 * if we know there are other valid mods.
3409 if ( *mods && ( old->a_desc == slap_schema.si_ad_modifiersName ||
3410 old->a_desc == slap_schema.si_ad_modifyTimestamp ))
3411 attr_cmp( op, NULL, new, &modtail, &ml );
3413 attr_cmp( op, old, new, &modtail, &ml );
3426 dninfo *dni = op->o_callback->sc_private;
3428 if ( rs->sr_type == REP_SEARCH ) {
3429 if ( !BER_BVISNULL( &dni->dn ) ) {
3430 Debug( LDAP_DEBUG_ANY,
3431 "dn_callback : consistency error - "
3432 "entryUUID is not unique\n", 0, 0, 0 );
3434 ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
3435 ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
3436 /* If there is a new entry, see if it differs from the old.
3437 * We compare the non-normalized values so that cosmetic changes
3438 * in the provider are always propagated.
3440 if ( dni->new_entry ) {
3441 Modifications **modtail, **ml;
3442 Attribute *old, *new;
3443 struct berval old_rdn, new_rdn;
3444 struct berval old_p, new_p;
3445 int is_ctx, new_sup = 0;
3447 /* If old entry is not a glue entry, make sure new entry
3448 * is actually newer than old entry
3450 if ( !is_entry_glue( rs->sr_entry )) {
3451 old = attr_find( rs->sr_entry->e_attrs,
3452 slap_schema.si_ad_entryCSN );
3453 new = attr_find( dni->new_entry->e_attrs,
3454 slap_schema.si_ad_entryCSN );
3457 ber_len_t len = old->a_vals[0].bv_len;
3458 if ( len > new->a_vals[0].bv_len )
3459 len = new->a_vals[0].bv_len;
3460 rc = memcmp( old->a_vals[0].bv_val,
3461 new->a_vals[0].bv_val, len );
3463 Debug( LDAP_DEBUG_SYNC,
3464 "dn_callback : new entry is older than ours "
3465 "%s ours %s, new %s\n",
3466 rs->sr_entry->e_name.bv_val,
3467 old->a_vals[0].bv_val,
3468 new->a_vals[0].bv_val );
3469 return LDAP_SUCCESS;
3470 } else if ( rc == 0 ) {
3471 Debug( LDAP_DEBUG_SYNC,
3472 "dn_callback : entries have identical CSN "
3474 rs->sr_entry->e_name.bv_val,
3475 old->a_vals[0].bv_val, 0 );
3476 return LDAP_SUCCESS;
3481 is_ctx = dn_match( &rs->sr_entry->e_nname,
3482 &op->o_bd->be_nsuffix[0] );
3484 /* Did the DN change?
3485 * case changes in the parent are ignored,
3486 * we only want to know if the RDN was
3489 dnRdn( &rs->sr_entry->e_name, &old_rdn );
3490 dnRdn( &dni->new_entry->e_name, &new_rdn );
3491 dnParent( &rs->sr_entry->e_nname, &old_p );
3492 dnParent( &dni->new_entry->e_nname, &new_p );
3494 new_sup = !dn_match( &old_p, &new_p );
3495 if ( !dn_match( &old_rdn, &new_rdn ) || new_sup )
3497 struct berval oldRDN, oldVal;
3498 AttributeDescription *ad = NULL;
3504 dni->nnewSup = new_p;
3506 /* See if the oldRDN was deleted */
3507 dnRdn( &rs->sr_entry->e_nname, &oldRDN );
3508 oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
3509 oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
3511 oldRDN.bv_len -= oldVal.bv_len + 1;
3512 slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3514 for ( oldpos=0, a=rs->sr_entry->e_attrs;
3515 a && a->a_desc != ad; oldpos++, a=a->a_next );
3517 for ( newpos=0, a=dni->new_entry->e_attrs;
3518 a && a->a_desc != ad; newpos++, a=a->a_next );
3519 if ( !a || oldpos != newpos || attr_valfind( a,
3520 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
3521 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
3522 SLAP_MR_VALUE_OF_SYNTAX,
3523 &oldVal, NULL, op->o_tmpmemctx ) != LDAP_SUCCESS )
3527 /* Get the newRDN's desc */
3528 dnRdn( &dni->new_entry->e_nname, &oldRDN );
3529 oldVal.bv_val = strchr(oldRDN.bv_val, '=');
3530 oldRDN.bv_len = oldVal.bv_val - oldRDN.bv_val;
3532 slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3535 /* A ModDN has happened, but in Refresh mode other
3536 * changes may have occurred before we picked it up.
3537 * So fallthru to regular Modify processing.
3541 syncrepl_diff_entry( op, rs->sr_entry->e_attrs,
3542 dni->new_entry->e_attrs, &dni->mods, dni->modlist,
3546 } else if ( rs->sr_type == REP_RESULT ) {
3547 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
3548 Debug( LDAP_DEBUG_ANY,
3549 "dn_callback : consistency error - "
3550 "entryUUID is not unique\n", 0, 0, 0 );
3554 return LDAP_SUCCESS;
3558 nonpresent_callback(
3562 syncinfo_t *si = op->o_callback->sc_private;
3565 struct berval* present_uuid = NULL;
3566 struct nonpresent_entry *np_entry;
3568 if ( rs->sr_type == REP_RESULT ) {
3569 count = avl_free( si->si_presentlist, ch_free );
3570 si->si_presentlist = NULL;
3572 } else if ( rs->sr_type == REP_SEARCH ) {
3573 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
3574 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
3577 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
3581 if ( LogTest( LDAP_DEBUG_SYNC ) ) {
3582 char buf[sizeof("rid=999 non")];
3584 snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt,
3585 present_uuid ? "" : "non" );
3587 Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %spresent UUID %s, dn %s\n",
3588 buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
3591 if ( a == NULL ) return 0;
3594 if ( present_uuid == NULL ) {
3595 np_entry = (struct nonpresent_entry *)
3596 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
3597 np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
3598 np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
3599 LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
3602 avl_delete( &si->si_presentlist,
3603 &a->a_nvals[0], syncuuid_cmp );
3604 ch_free( present_uuid );
3607 return LDAP_SUCCESS;
3615 if ( rs->sr_err != LDAP_SUCCESS &&
3616 rs->sr_err != LDAP_REFERRAL &&
3617 rs->sr_err != LDAP_ALREADY_EXISTS &&
3618 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
3619 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
3621 Debug( LDAP_DEBUG_ANY,
3622 "null_callback : error code 0x%x\n",
3625 return LDAP_SUCCESS;
3628 static struct berval *
3629 slap_uuidstr_from_normalized(
3630 struct berval* uuidstr,
3631 struct berval* normalized,
3636 unsigned char nibble;
3639 if ( normalized == NULL ) return NULL;
3640 if ( normalized->bv_len != 16 ) return NULL;
3645 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3646 if ( new == NULL ) {
3653 if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3654 if ( new != uuidstr ) {
3655 slap_sl_free( new, ctx );
3660 for ( i = 0; i < 16; i++ ) {
3661 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
3662 new->bv_val[(i<<1)+d] = '-';
3666 nibble = (normalized->bv_val[i] >> 4) & 0xF;
3667 if ( nibble < 10 ) {
3668 new->bv_val[(i<<1)+d] = nibble + '0';
3670 new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
3673 nibble = (normalized->bv_val[i]) & 0xF;
3674 if ( nibble < 10 ) {
3675 new->bv_val[(i<<1)+d+1] = nibble + '0';
3677 new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
3681 new->bv_val[new->bv_len] = '\0';
3688 if ( normalized == NULL ) return NULL;
3689 if ( normalized->bv_len != 16 ) return NULL;
3695 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3696 if ( new == NULL ) {
3703 if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3708 rc = lutil_uuidstr_from_normalized( normalized->bv_val,
3709 normalized->bv_len, new->bv_val, new->bv_len + 1 );
3713 if ( new != NULL ) {
3714 if ( new->bv_val != NULL ) {
3715 slap_sl_free( new->bv_val, ctx );
3718 if ( new != uuidstr ) {
3719 slap_sl_free( new, ctx );
3732 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
3734 const struct berval *uuid1 = v_uuid1;
3735 const struct berval *uuid2 = v_uuid2;
3736 int rc = uuid1->bv_len - uuid2->bv_len;
3737 if ( rc ) return rc;
3738 return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
3742 syncinfo_free( syncinfo_t *sie, int free_all )
3744 syncinfo_t *si_next;
3746 Debug( LDAP_DEBUG_TRACE, "syncinfo_free: %s\n",
3747 sie->si_ridtxt, 0, 0 );
3750 si_next = sie->si_next;
3753 if ( sie->si_conn ) {
3754 connection_client_stop( sie->si_conn );
3755 sie->si_conn = NULL;
3757 ldap_unbind_ext( sie->si_ld, NULL, NULL );
3761 struct re_s *re = sie->si_re;
3764 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3765 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) )
3766 ldap_pvt_runqueue_stoptask( &slapd_rq, re );
3767 ldap_pvt_runqueue_remove( &slapd_rq, re );
3768 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3771 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
3773 bindconf_free( &sie->si_bindconf );
3775 if ( sie->si_filterstr.bv_val ) {
3776 ch_free( sie->si_filterstr.bv_val );
3778 if ( sie->si_filter ) {
3779 filter_free( sie->si_filter );
3781 if ( sie->si_logfilterstr.bv_val ) {
3782 ch_free( sie->si_logfilterstr.bv_val );
3784 if ( sie->si_base.bv_val ) {
3785 ch_free( sie->si_base.bv_val );
3787 if ( sie->si_logbase.bv_val ) {
3788 ch_free( sie->si_logbase.bv_val );
3790 if ( sie->si_be && SLAP_SYNC_SUBENTRY( sie->si_be )) {
3791 ch_free( sie->si_contextdn.bv_val );
3793 if ( sie->si_attrs ) {
3795 while ( sie->si_attrs[i] != NULL ) {
3796 ch_free( sie->si_attrs[i] );
3799 ch_free( sie->si_attrs );
3801 if ( sie->si_exattrs ) {
3803 while ( sie->si_exattrs[i] != NULL ) {
3804 ch_free( sie->si_exattrs[i] );
3807 ch_free( sie->si_exattrs );
3809 if ( sie->si_anlist ) {
3811 while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
3812 ch_free( sie->si_anlist[i].an_name.bv_val );
3815 ch_free( sie->si_anlist );
3817 if ( sie->si_exanlist ) {
3819 while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
3820 ch_free( sie->si_exanlist[i].an_name.bv_val );
3823 ch_free( sie->si_exanlist );
3825 if ( sie->si_retryinterval ) {
3826 ch_free( sie->si_retryinterval );
3828 if ( sie->si_retrynum ) {
3829 ch_free( sie->si_retrynum );
3831 if ( sie->si_retrynum_init ) {
3832 ch_free( sie->si_retrynum_init );
3834 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
3835 if ( sie->si_presentlist ) {
3836 avl_free( sie->si_presentlist, ch_free );
3838 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
3839 struct nonpresent_entry* npe;
3840 npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
3841 LDAP_LIST_REMOVE( npe, npe_link );
3842 if ( npe->npe_name ) {
3843 if ( npe->npe_name->bv_val ) {
3844 ch_free( npe->npe_name->bv_val );
3846 ch_free( npe->npe_name );
3848 if ( npe->npe_nname ) {
3849 if ( npe->npe_nname->bv_val ) {
3850 ch_free( npe->npe_nname->bv_val );
3852 ch_free( npe->npe_nname );
3856 if ( sie->si_cookieState ) {
3857 sie->si_cookieState->cs_ref--;
3858 if ( !sie->si_cookieState->cs_ref ) {
3859 ch_free( sie->si_cookieState->cs_sids );
3860 ber_bvarray_free( sie->si_cookieState->cs_vals );
3861 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
3862 ch_free( sie->si_cookieState->cs_psids );
3863 ber_bvarray_free( sie->si_cookieState->cs_pvals );
3864 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_pmutex );
3865 ch_free( sie->si_cookieState );
3870 } while ( free_all && si_next );
3875 /* NOTE: used & documented in slapd.conf(5) */
3877 #define PROVIDERSTR "provider"
3878 #define SCHEMASTR "schemachecking"
3879 #define FILTERSTR "filter"
3880 #define SEARCHBASESTR "searchbase"
3881 #define SCOPESTR "scope"
3882 #define ATTRSONLYSTR "attrsonly"
3883 #define ATTRSSTR "attrs"
3884 #define TYPESTR "type"
3885 #define INTERVALSTR "interval"
3886 #define RETRYSTR "retry"
3887 #define SLIMITSTR "sizelimit"
3888 #define TLIMITSTR "timelimit"
3889 #define SYNCDATASTR "syncdata"
3890 #define LOGBASESTR "logbase"
3891 #define LOGFILTERSTR "logfilter"
3893 /* FIXME: undocumented */
3894 #define EXATTRSSTR "exattrs"
3895 #define MANAGEDSAITSTR "manageDSAit"
3899 GOT_RID = 0x00000001U,
3900 GOT_PROVIDER = 0x00000002U,
3901 GOT_SCHEMACHECKING = 0x00000004U,
3902 GOT_FILTER = 0x00000008U,
3903 GOT_SEARCHBASE = 0x00000010U,
3904 GOT_SCOPE = 0x00000020U,
3905 GOT_ATTRSONLY = 0x00000040U,
3906 GOT_ATTRS = 0x00000080U,
3907 GOT_TYPE = 0x00000100U,
3908 GOT_INTERVAL = 0x00000200U,
3909 GOT_RETRY = 0x00000400U,
3910 GOT_SLIMIT = 0x00000800U,
3911 GOT_TLIMIT = 0x00001000U,
3912 GOT_SYNCDATA = 0x00002000U,
3913 GOT_LOGBASE = 0x00004000U,
3914 GOT_LOGFILTER = 0x00008000U,
3915 GOT_EXATTRS = 0x00010000U,
3916 GOT_MANAGEDSAIT = 0x00020000U,
3917 GOT_BINDCONF = 0x00040000U,
3920 GOT_REQUIRED = (GOT_RID|GOT_PROVIDER|GOT_SEARCHBASE)
3923 static slap_verbmasks datamodes[] = {
3924 { BER_BVC("default"), SYNCDATA_DEFAULT },
3925 { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
3926 { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
3931 parse_syncrepl_retry(
3938 int use_default = 0;
3940 char *val = arg + STRLENOF( RETRYSTR "=" );
3941 if ( strcasecmp( val, "undefined" ) == 0 ) {
3946 retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
3947 retry_list[0] = NULL;
3949 slap_str2clist( &retry_list, val, " ,\t" );
3951 for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3954 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3955 "Error: incomplete syncrepl retry list" );
3956 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3957 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3958 ch_free( retry_list[k] );
3960 ch_free( retry_list );
3963 si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
3964 si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
3965 si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
3966 for ( j = 0; j < n; j++ ) {
3968 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3969 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3970 "Error: invalid retry interval \"%s\" (#%d)",
3971 retry_list[j*2], j );
3972 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3973 /* do some cleanup */
3976 si->si_retryinterval[j] = (time_t)t;
3977 if ( *retry_list[j*2+1] == '+' ) {
3978 si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3979 si->si_retrynum[j] = RETRYNUM_FOREVER;
3983 if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3984 || si->si_retrynum_init[j] <= 0 )
3986 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3987 "Error: invalid initial retry number \"%s\" (#%d)",
3988 retry_list[j*2+1], j );
3989 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3990 /* do some cleanup */
3993 if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3994 || si->si_retrynum[j] <= 0 )
3996 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3997 "Error: invalid retry number \"%s\" (#%d)",
3998 retry_list[j*2+1], j );
3999 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4000 /* do some cleanup */
4005 if ( j < 1 || si->si_retrynum_init[j-1] != RETRYNUM_FOREVER ) {
4006 Debug( LDAP_DEBUG_CONFIG,
4007 "%s: syncrepl will eventually stop retrying; the \"retry\" parameter should end with a '+'.\n",
4011 si->si_retrynum_init[j] = RETRYNUM_TAIL;
4012 si->si_retrynum[j] = RETRYNUM_TAIL;
4013 si->si_retryinterval[j] = 0;
4015 for ( k = 0; retry_list && retry_list[k]; k++ ) {
4016 ch_free( retry_list[k] );
4018 ch_free( retry_list );
4019 if ( !use_default ) {
4020 si->si_got |= GOT_RETRY;
4027 parse_syncrepl_line(
4034 for ( i = 1; i < c->argc; i++ ) {
4035 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
4036 STRLENOF( IDSTR "=" ) ) )
4039 /* '\0' string terminator accounts for '=' */
4040 val = c->argv[ i ] + STRLENOF( IDSTR "=" );
4041 if ( lutil_atoi( &tmp, val ) != 0 ) {
4042 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4043 "Error: parse_syncrepl_line: "
4044 "unable to parse syncrepl id \"%s\"", val );
4045 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4048 if ( tmp > SLAP_SYNC_RID_MAX || tmp < 0 ) {
4049 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4050 "Error: parse_syncrepl_line: "
4051 "syncrepl id %d is out of range [0..%d]", tmp, SLAP_SYNC_RID_MAX );
4052 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4056 sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
4057 si->si_got |= GOT_RID;
4058 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
4059 STRLENOF( PROVIDERSTR "=" ) ) )
4061 val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
4062 ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
4064 if ( ldap_is_ldaps_url( val ))
4065 si->si_bindconf.sb_tls_do_init = 1;
4067 si->si_got |= GOT_PROVIDER;
4068 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
4069 STRLENOF( SCHEMASTR "=" ) ) )
4071 val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
4072 if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
4073 si->si_schemachecking = 1;
4074 } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
4075 si->si_schemachecking = 0;
4077 si->si_schemachecking = 1;
4079 si->si_got |= GOT_SCHEMACHECKING;
4080 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
4081 STRLENOF( FILTERSTR "=" ) ) )
4083 val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
4084 if ( si->si_filterstr.bv_val )
4085 ch_free( si->si_filterstr.bv_val );
4086 ber_str2bv( val, 0, 1, &si->si_filterstr );
4087 si->si_got |= GOT_FILTER;
4088 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
4089 STRLENOF( LOGFILTERSTR "=" ) ) )
4091 val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
4092 if ( si->si_logfilterstr.bv_val )
4093 ch_free( si->si_logfilterstr.bv_val );
4094 ber_str2bv( val, 0, 1, &si->si_logfilterstr );
4095 si->si_got |= GOT_LOGFILTER;
4096 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
4097 STRLENOF( SEARCHBASESTR "=" ) ) )
4102 val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
4103 if ( si->si_base.bv_val ) {
4104 ch_free( si->si_base.bv_val );
4106 ber_str2bv( val, 0, 0, &bv );
4107 rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
4108 if ( rc != LDAP_SUCCESS ) {
4109 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4110 "Invalid base DN \"%s\": %d (%s)",
4111 val, rc, ldap_err2string( rc ) );
4112 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4115 if ( !be_issubordinate( c->be, &si->si_base ) ) {
4116 ch_free( si->si_base.bv_val );
4117 BER_BVZERO( &si->si_base );
4118 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4119 "Base DN \"%s\" is not within the database naming context",
4121 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4124 si->si_got |= GOT_SEARCHBASE;
4125 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
4126 STRLENOF( LOGBASESTR "=" ) ) )
4131 val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
4132 if ( si->si_logbase.bv_val ) {
4133 ch_free( si->si_logbase.bv_val );
4135 ber_str2bv( val, 0, 0, &bv );
4136 rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
4137 if ( rc != LDAP_SUCCESS ) {
4138 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4139 "Invalid logbase DN \"%s\": %d (%s)",
4140 val, rc, ldap_err2string( rc ) );
4141 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4144 si->si_got |= GOT_LOGBASE;
4145 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
4146 STRLENOF( SCOPESTR "=" ) ) )
4149 val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
4150 j = ldap_pvt_str2scope( val );
4152 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4153 "Error: parse_syncrepl_line: "
4154 "unknown scope \"%s\"", val);
4155 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4159 si->si_got |= GOT_SCOPE;
4160 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
4161 STRLENOF( ATTRSONLYSTR ) ) )
4163 si->si_attrsonly = 1;
4164 si->si_got |= GOT_ATTRSONLY;
4165 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
4166 STRLENOF( ATTRSSTR "=" ) ) )
4168 val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
4169 if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4171 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4172 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
4173 if ( si->si_anlist == NULL ) {
4174 ch_free( attr_fname );
4177 si->si_anfile = attr_fname;
4179 char *str, *s, *next;
4180 const char *delimstr = " ,\t";
4181 str = ch_strdup( val );
4182 for ( s = ldap_pvt_strtok( str, delimstr, &next );
4184 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
4186 if ( strlen(s) == 1 && *s == '*' ) {
4187 si->si_allattrs = 1;
4188 val[ s - str ] = delimstr[0];
4190 if ( strlen(s) == 1 && *s == '+' ) {
4191 si->si_allopattrs = 1;
4192 val [ s - str ] = delimstr[0];
4196 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
4197 if ( si->si_anlist == NULL ) {
4201 si->si_got |= GOT_ATTRS;
4202 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
4203 STRLENOF( EXATTRSSTR "=" ) ) )
4205 val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
4206 if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4208 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4209 si->si_exanlist = file2anlist(
4210 si->si_exanlist, attr_fname, " ,\t" );
4211 if ( si->si_exanlist == NULL ) {
4212 ch_free( attr_fname );
4215 ch_free( attr_fname );
4217 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
4218 if ( si->si_exanlist == NULL ) {
4222 si->si_got |= GOT_EXATTRS;
4223 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
4224 STRLENOF( TYPESTR "=" ) ) )
4226 val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
4227 if ( !strncasecmp( val, "refreshOnly",
4228 STRLENOF("refreshOnly") ) )
4230 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4231 } else if ( !strncasecmp( val, "refreshAndPersist",
4232 STRLENOF("refreshAndPersist") ) )
4234 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
4235 si->si_interval = 60;
4237 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4238 "Error: parse_syncrepl_line: "
4239 "unknown sync type \"%s\"", val);
4240 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4243 si->si_got |= GOT_TYPE;
4244 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
4245 STRLENOF( INTERVALSTR "=" ) ) )
4247 val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
4248 if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
4249 si->si_interval = 0;
4250 } else if ( strchr( val, ':' ) != NULL ) {
4251 char *next, *ptr = val;
4254 dd = strtol( ptr, &next, 10 );
4255 if ( next == ptr || next[0] != ':' || dd < 0 ) {
4256 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4257 "Error: parse_syncrepl_line: "
4258 "invalid interval \"%s\", unable to parse days", val );
4259 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4263 hh = strtol( ptr, &next, 10 );
4264 if ( next == ptr || next[0] != ':' || hh < 0 || hh > 24 ) {
4265 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4266 "Error: parse_syncrepl_line: "
4267 "invalid interval \"%s\", unable to parse hours", val );
4268 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4272 mm = strtol( ptr, &next, 10 );
4273 if ( next == ptr || next[0] != ':' || mm < 0 || mm > 60 ) {
4274 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4275 "Error: parse_syncrepl_line: "
4276 "invalid interval \"%s\", unable to parse minutes", val );
4277 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4281 ss = strtol( ptr, &next, 10 );
4282 if ( next == ptr || next[0] != '\0' || ss < 0 || ss > 60 ) {
4283 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4284 "Error: parse_syncrepl_line: "
4285 "invalid interval \"%s\", unable to parse seconds", val );
4286 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4289 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
4293 if ( lutil_parse_time( val, &t ) != 0 ) {
4294 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4295 "Error: parse_syncrepl_line: "
4296 "invalid interval \"%s\"", val );
4297 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4300 si->si_interval = (time_t)t;
4302 if ( si->si_interval < 0 ) {
4303 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4304 "Error: parse_syncrepl_line: "
4305 "invalid interval \"%ld\"",
4306 (long) si->si_interval);
4307 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4310 si->si_got |= GOT_INTERVAL;
4311 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
4312 STRLENOF( RETRYSTR "=" ) ) )
4314 if ( parse_syncrepl_retry( c, c->argv[ i ], si ) ) {
4317 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
4318 STRLENOF( MANAGEDSAITSTR "=" ) ) )
4320 val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
4321 if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
4322 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
4324 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4325 "invalid manageDSAit value \"%s\".\n",
4327 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4330 si->si_got |= GOT_MANAGEDSAIT;
4331 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
4332 STRLENOF( SLIMITSTR "=") ) )
4334 val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
4335 if ( strcasecmp( val, "unlimited" ) == 0 ) {
4338 } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
4339 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4340 "invalid size limit value \"%s\".\n",
4342 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4345 si->si_got |= GOT_SLIMIT;
4346 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
4347 STRLENOF( TLIMITSTR "=" ) ) )
4349 val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
4350 if ( strcasecmp( val, "unlimited" ) == 0 ) {
4353 } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
4354 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4355 "invalid time limit value \"%s\".\n",
4357 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4360 si->si_got |= GOT_TLIMIT;
4361 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
4362 STRLENOF( SYNCDATASTR "=" ) ) )
4364 val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
4365 si->si_syncdata = verb_to_mask( val, datamodes );
4366 si->si_got |= GOT_SYNCDATA;
4367 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
4368 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4369 "Error: parse_syncrepl_line: "
4370 "unable to parse \"%s\"\n", c->argv[ i ] );
4371 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4374 si->si_got |= GOT_BINDCONF;
4377 if ( ( si->si_got & GOT_REQUIRED ) != GOT_REQUIRED ) {
4378 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4379 "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
4380 si->si_got & GOT_RID ? "" : " "IDSTR,
4381 si->si_got & GOT_PROVIDER ? "" : " "PROVIDERSTR,
4382 si->si_got & GOT_SEARCHBASE ? "" : " "SEARCHBASESTR );
4383 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4387 if ( !( si->si_got & GOT_RETRY ) ) {
4388 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": no retry defined, using default\n",
4389 si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", 0 );
4390 if ( si->si_retryinterval == NULL ) {
4391 if ( parse_syncrepl_retry( c, "retry=undefined", si ) ) {
4397 si->si_filter = str2filter( si->si_filterstr.bv_val );
4398 if ( si->si_filter == NULL ) {
4399 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": unable to parse filter=\"%s\"\n",
4400 si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", si->si_filterstr.bv_val );
4414 if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
4415 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
4416 "operations required for syncrepl", c->be->be_type );
4417 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4420 if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
4421 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
4422 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4425 si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
4428 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
4432 si->si_bindconf.sb_tls = SB_TLS_OFF;
4433 si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
4434 si->si_schemachecking = 0;
4435 ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
4436 &si->si_filterstr );
4437 si->si_base.bv_val = NULL;
4438 si->si_scope = LDAP_SCOPE_SUBTREE;
4439 si->si_attrsonly = 0;
4440 si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4441 si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4442 si->si_attrs = NULL;
4443 si->si_allattrs = 0;
4444 si->si_allopattrs = 0;
4445 si->si_exattrs = NULL;
4446 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4447 si->si_interval = 86400;
4448 si->si_retryinterval = NULL;
4449 si->si_retrynum_init = NULL;
4450 si->si_retrynum = NULL;
4451 si->si_manageDSAit = 0;
4455 si->si_presentlist = NULL;
4456 LDAP_LIST_INIT( &si->si_nonpresentlist );
4457 ldap_pvt_thread_mutex_init( &si->si_mutex );
4459 rc = parse_syncrepl_line( c, si );
4464 /* Must be LDAPv3 because we need controls */
4465 switch ( si->si_bindconf.sb_version ) {
4467 /* not explicitly set */
4468 si->si_bindconf.sb_version = LDAP_VERSION3;
4471 /* explicitly set */
4474 Debug( LDAP_DEBUG_ANY,
4475 "version %d incompatible with syncrepl\n",
4476 si->si_bindconf.sb_version, 0, 0 );
4477 syncinfo_free( si, 0 );
4481 if ( ldap_url_parse( si->si_bindconf.sb_uri.bv_val, &lud )) {
4482 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4483 "<%s> invalid URL", c->argv[0] );
4484 Debug( LDAP_DEBUG_ANY, "%s: %s %s\n",
4485 c->log, c->cr_msg, si->si_bindconf.sb_uri.bv_val );
4490 if ( slapMode & SLAP_SERVER_MODE ) {
4492 /* check if consumer points to current server and database.
4493 * If so, ignore this configuration.
4495 if ( !SLAP_DBHIDDEN( c->be ) ) {
4497 /* if searchbase doesn't match current DB suffix,
4498 * assume it's different
4500 for ( i=0; !BER_BVISNULL( &c->be->be_nsuffix[i] ); i++ ) {
4501 if ( bvmatch( &si->si_base, &c->be->be_nsuffix[i] )) {
4506 /* if searchbase matches, see if URLs match */
4507 if ( isMe && config_check_my_url( si->si_bindconf.sb_uri.bv_val,
4513 init_syncrepl( si );
4514 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4515 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
4516 si->si_interval, do_syncrepl, si, "do_syncrepl",
4518 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4520 rc = config_sync_shadow( c ) ? -1 : 0;
4525 /* mirrormode still needs to see this flag in tool mode */
4526 rc = config_sync_shadow( c ) ? -1 : 0;
4528 ldap_free_urldesc( lud );
4532 /* Use main slapd defaults */
4533 bindconf_tls_defaults( &si->si_bindconf );
4536 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
4537 syncinfo_free( si, 0 );
4540 Debug( LDAP_DEBUG_CONFIG,
4541 "Config: ** successfully added syncrepl \"%s\"\n",
4542 BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
4543 "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
4544 if ( c->be->be_syncinfo ) {
4547 si->si_cookieState = c->be->be_syncinfo->si_cookieState;
4549 /* add new syncrepl to end of list (same order as when deleting) */
4550 for ( sip = c->be->be_syncinfo; sip->si_next; sip = sip->si_next );
4553 si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
4554 ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
4555 ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_pmutex );
4557 c->be->be_syncinfo = si;
4559 si->si_cookieState->cs_ref++;
4568 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
4570 struct berval bc, uri, bs;
4571 char buf[BUFSIZ*2], *ptr;
4574 # define WHATSLEFT ((ber_len_t) (&buf[sizeof( buf )] - ptr))
4578 /* temporarily inhibit bindconf from printing URI */
4579 uri = si->si_bindconf.sb_uri;
4580 BER_BVZERO( &si->si_bindconf.sb_uri );
4581 si->si_bindconf.sb_version = 0;
4582 bindconf_unparse( &si->si_bindconf, &bc );
4583 si->si_bindconf.sb_uri = uri;
4584 si->si_bindconf.sb_version = LDAP_VERSION3;
4587 assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_RID_MAX );
4588 len = snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
4589 si->si_rid, si->si_bindconf.sb_uri.bv_val );
4590 if ( len >= sizeof( buf ) ) return;
4592 if ( !BER_BVISNULL( &bc ) ) {
4593 if ( WHATSLEFT <= bc.bv_len ) {
4597 ptr = lutil_strcopy( ptr, bc.bv_val );
4600 if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
4601 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
4602 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
4603 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
4606 if ( !BER_BVISNULL( &si->si_base ) ) {
4607 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
4608 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
4609 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
4612 if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
4613 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
4614 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
4615 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
4618 if ( !BER_BVISNULL( &si->si_logbase ) ) {
4619 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
4620 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
4621 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
4624 if ( ldap_pvt_scope2bv( si->si_scope, &bs ) == LDAP_SUCCESS ) {
4625 if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + bs.bv_len ) return;
4626 ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
4627 ptr = lutil_strcopy( ptr, bs.bv_val );
4629 if ( si->si_attrsonly ) {
4630 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4631 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
4633 if ( si->si_anfile ) {
4634 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
4635 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
4636 ptr = lutil_strcopy( ptr, si->si_anfile );
4638 } else if ( si->si_allattrs || si->si_allopattrs ||
4639 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
4643 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4644 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
4646 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
4647 if ( ptr == NULL ) return;
4648 if ( si->si_allattrs ) {
4649 if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
4650 if ( old != ptr ) *ptr++ = ',';
4653 if ( si->si_allopattrs ) {
4654 if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
4655 if ( old != ptr ) *ptr++ = ',';
4660 if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
4661 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
4662 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
4663 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
4664 if ( ptr == NULL ) return;
4666 if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
4667 ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
4668 ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
4670 if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
4671 ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
4672 ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
4673 "refreshAndPersist" : "refreshOnly" );
4675 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
4678 dd = si->si_interval;
4685 len = snprintf( ptr, WHATSLEFT, " %s=%02d:%02d:%02d:%02d",
4686 INTERVALSTR, dd, hh, mm, ss );
4687 if ( len >= WHATSLEFT ) return;
4691 if ( si->si_got & GOT_RETRY ) {
4692 const char *space = "";
4693 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
4694 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
4695 for (i=0; si->si_retryinterval[i]; i++) {
4696 len = snprintf( ptr, WHATSLEFT, "%s%ld ", space,
4697 (long) si->si_retryinterval[i] );
4699 if ( WHATSLEFT - 1 <= len ) return;
4701 if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
4704 len = snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
4705 if ( WHATSLEFT <= len ) return;
4709 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
4712 ptr = lutil_strcopy( ptr, " " RETRYSTR "=undefined" );
4715 if ( si->si_slimit ) {
4716 len = snprintf( ptr, WHATSLEFT, " " SLIMITSTR "=%d", si->si_slimit );
4717 if ( WHATSLEFT <= len ) return;
4721 if ( si->si_tlimit ) {
4722 len = snprintf( ptr, WHATSLEFT, " " TLIMITSTR "=%d", si->si_tlimit );
4723 if ( WHATSLEFT <= len ) return;
4727 if ( si->si_syncdata ) {
4728 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
4729 if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
4730 ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
4731 ptr = lutil_strcopy( ptr, bc.bv_val );
4734 bc.bv_len = ptr - buf;
4736 ber_dupbv( bv, &bc );
4740 syncrepl_config( ConfigArgs *c )
4742 if (c->op == SLAP_CONFIG_EMIT) {
4743 if ( c->be->be_syncinfo ) {
4747 for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
4748 syncrepl_unparse( si, &bv );
4749 ber_bvarray_add( &c->rvalue_vals, &bv );
4754 } else if ( c->op == LDAP_MOD_DELETE ) {
4756 if ( c->be->be_syncinfo ) {
4757 syncinfo_t *si, **sip;
4760 for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
4762 if ( c->valx == -1 || i == c->valx ) {
4766 /* If the task is currently active, we have to leave
4767 * it running. It will exit on its own. This will only
4768 * happen when running on the cn=config DB.
4771 if ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
4774 /* There is no active thread, but we must still
4775 * ensure that no thread is (or will be) queued
4776 * while we removes the task.
4778 struct re_s *re = si->si_re;
4781 if ( si->si_conn ) {
4782 connection_client_stop( si->si_conn );
4786 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4787 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) ) {
4788 ldap_pvt_runqueue_stoptask( &slapd_rq, re );
4791 ldap_pvt_runqueue_remove( &slapd_rq, re );
4792 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4794 if ( ldap_pvt_thread_pool_retract( &connection_pool,
4795 re->routine, re ) > 0 )
4798 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
4802 syncinfo_free( si, 0 );
4811 if ( !c->be->be_syncinfo ) {
4812 SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_SHADOW_MASK;
4816 if ( SLAP_SLURP_SHADOW( c->be ) ) {
4817 Debug(LDAP_DEBUG_ANY, "%s: "
4818 "syncrepl: database already shadowed.\n",
4822 return add_syncrepl( c );