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-2009 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;
78 struct berval si_logfilterstr;
79 struct berval si_contextdn;
83 AttributeName *si_anlist;
84 AttributeName *si_exanlist;
89 int si_schemachecking;
90 int si_type; /* the active type */
91 int si_ctype; /* the configured type */
93 time_t *si_retryinterval;
94 int *si_retrynum_init;
96 struct sync_cookie si_syncCookie;
97 cookie_state *si_cookieState;
102 int si_refreshDelete;
103 int si_refreshPresent;
109 Avlnode *si_presentlist;
112 LDAP_LIST_HEAD(np, nonpresent_entry) si_nonpresentlist;
113 ldap_pvt_thread_mutex_t si_mutex;
116 static int syncuuid_cmp( const void *, const void * );
117 static int avl_presentlist_insert( syncinfo_t* si, struct berval *syncUUID );
118 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray, struct sync_cookie *, int );
119 static int syncrepl_message_to_op(
120 syncinfo_t *, Operation *, LDAPMessage * );
121 static int syncrepl_message_to_entry(
122 syncinfo_t *, Operation *, LDAPMessage *,
123 Modifications **, Entry **, int );
124 static int syncrepl_entry(
125 syncinfo_t *, Operation*, Entry*,
126 Modifications**,int, struct berval*,
127 struct berval *cookieCSN );
128 static int syncrepl_updateCookie(
129 syncinfo_t *, Operation *,
130 struct sync_cookie * );
131 static struct berval * slap_uuidstr_from_normalized(
132 struct berval *, struct berval *, void * );
134 /* callback functions */
135 static int dn_callback( Operation *, SlapReply * );
136 static int nonpresent_callback( Operation *, SlapReply * );
137 static int null_callback( Operation *, SlapReply * );
139 static AttributeDescription *sync_descs[4];
142 syncrepl_state2str( int state )
145 case LDAP_SYNC_PRESENT:
151 case LDAP_SYNC_MODIFY:
154 case LDAP_SYNC_DELETE:
162 init_syncrepl(syncinfo_t *si)
165 char **attrs, **exattrs;
167 if ( !sync_descs[0] ) {
168 sync_descs[0] = slap_schema.si_ad_objectClass;
169 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
170 sync_descs[2] = slap_schema.si_ad_entryCSN;
171 sync_descs[3] = NULL;
174 if ( si->si_allattrs && si->si_allopattrs )
177 attrs = anlist2attrs( si->si_anlist );
180 if ( si->si_allattrs ) {
183 if ( !is_at_operational( at_find( attrs[i] ) ) ) {
184 for ( j = i; attrs[j] != NULL; j++ ) {
187 attrs[j] = attrs[j+1];
193 attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
194 attrs[i] = ch_strdup("*");
197 } else if ( si->si_allopattrs ) {
200 if ( is_at_operational( at_find( attrs[i] ) ) ) {
201 for ( j = i; attrs[j] != NULL; j++ ) {
204 attrs[j] = attrs[j+1];
210 attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
211 attrs[i] = ch_strdup("+");
215 for ( i = 0; sync_descs[i] != NULL; i++ ) {
218 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
219 for ( k = j; attrs[k] != NULL; k++ ) {
222 attrs[k] = attrs[k+1];
230 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
232 if ( si->si_allopattrs ) {
233 attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ) );
235 attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ) );
239 if ( si->si_allopattrs ) {
240 attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
242 for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
243 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
251 if ( si->si_allattrs == si->si_allopattrs ) {
252 attrs = (char**) ch_malloc( 3 * sizeof(char*) );
253 attrs[i++] = ch_strdup( "*" );
254 attrs[i++] = ch_strdup( "+" );
255 } else if ( si->si_allattrs && !si->si_allopattrs ) {
256 for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
257 attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
258 attrs[i++] = ch_strdup( "*" );
259 for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
260 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
262 } else if ( !si->si_allattrs && si->si_allopattrs ) {
263 attrs = (char**) ch_malloc( 3 * sizeof(char*) );
264 attrs[i++] = ch_strdup( "+" );
265 attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
270 si->si_attrs = attrs;
272 exattrs = anlist2attrs( si->si_exanlist );
275 for ( n = 0; exattrs[n] != NULL; n++ ) ;
277 for ( i = 0; sync_descs[i] != NULL; i++ ) {
279 while ( exattrs[j] != NULL ) {
280 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
281 ch_free( exattrs[j] );
282 for ( k = j; exattrs[k] != NULL; k++ ) {
283 exattrs[k] = exattrs[k+1];
291 for ( i = 0; exattrs[i] != NULL; i++ ) {
292 for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
294 if ( ( oc = si->si_anlist[j].an_oc ) ) {
296 while ( oc->soc_required[k] ) {
297 if ( !strcmp( exattrs[i],
298 oc->soc_required[k]->sat_cname.bv_val ) ) {
299 ch_free( exattrs[i] );
300 for ( l = i; exattrs[l]; l++ ) {
301 exattrs[l] = exattrs[l+1];
311 for ( i = 0; exattrs[i] != NULL; i++ ) ;
314 exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *) );
317 si->si_exattrs = exattrs;
320 typedef struct logschema {
322 struct berval ls_req;
323 struct berval ls_mod;
324 struct berval ls_newRdn;
325 struct berval ls_delRdn;
326 struct berval ls_newSup;
329 static logschema changelog_sc = {
331 BER_BVC("changeType"),
334 BER_BVC("deleteOldRDN"),
335 BER_BVC("newSuperior")
338 static logschema accesslog_sc = {
342 BER_BVC("reqNewRDN"),
343 BER_BVC("reqDeleteOldRDN"),
344 BER_BVC("reqNewSuperior")
352 BerElementBuffer berbuf;
353 BerElement *ber = (BerElement *)&berbuf;
354 LDAPControl c[3], *ctrls[4];
358 char **attrs, *lattrs[8];
363 /* setup LDAP SYNC control */
364 ber_init2( ber, NULL, LBER_USE_DER );
365 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
367 /* If we're using a log but we have no state, then fallback to
368 * normal mode for a full refresh.
370 if ( si->si_syncdata && !si->si_syncCookie.numcsns ) {
371 si->si_logstate = SYNCLOG_FALLBACK;
374 /* Use the log parameters if we're in log mode */
375 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
377 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
381 lattrs[0] = ls->ls_dn.bv_val;
382 lattrs[1] = ls->ls_req.bv_val;
383 lattrs[2] = ls->ls_mod.bv_val;
384 lattrs[3] = ls->ls_newRdn.bv_val;
385 lattrs[4] = ls->ls_delRdn.bv_val;
386 lattrs[5] = ls->ls_newSup.bv_val;
387 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
391 base = si->si_logbase.bv_val;
392 filter = si->si_logfilterstr.bv_val;
395 scope = LDAP_SCOPE_SUBTREE;
398 base = si->si_base.bv_val;
399 filter = si->si_filterstr.bv_val;
400 attrs = si->si_attrs;
401 attrsonly = si->si_attrsonly;
402 scope = si->si_scope;
404 if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
405 si->si_type = LDAP_SYNC_REFRESH_ONLY;
407 si->si_type = si->si_ctype;
410 if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
412 ber_printf( ber, "{eOb}",
413 abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
415 ber_printf( ber, "{eb}",
416 abs(si->si_type), rhint );
419 if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 ) ) == -1 ) {
424 c[0].ldctl_oid = LDAP_CONTROL_SYNC;
425 c[0].ldctl_iscritical = si->si_type < 0;
428 c[1].ldctl_oid = LDAP_CONTROL_MANAGEDSAIT;
429 BER_BVZERO( &c[1].ldctl_value );
430 c[1].ldctl_iscritical = 1;
433 if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
434 c[2].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
435 c[2].ldctl_value = si->si_bindconf.sb_authzId;
436 c[2].ldctl_iscritical = 1;
443 rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
444 ctrls, NULL, NULL, si->si_slimit, &si->si_msgid );
458 int i, j, changed = 0;
460 /* Look for contextCSN from syncprov overlay. If
461 * there's no overlay, this will be a no-op. That means
462 * this is a pure consumer, so local changes will not be
463 * allowed, and all changes will already be reflected in
466 a.a_desc = slap_schema.si_ad_contextCSN;
468 e.e_name = si->si_contextdn;
469 e.e_nname = si->si_contextdn;
470 at[0].an_name = a.a_desc->ad_cname;
471 at[0].an_desc = a.a_desc;
472 BER_BVZERO( &at[1].an_name );
474 rs.sr_flags = REP_ENTRY_MODIFIABLE;
476 op->o_req_dn = e.e_name;
477 op->o_req_ndn = e.e_nname;
479 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
480 i = backend_operational( op, &rs );
481 if ( i == LDAP_SUCCESS && a.a_nvals ) {
482 int num = a.a_numvals;
483 /* check for differences */
484 if ( num != si->si_cookieState->cs_num ) {
487 for ( i=0; i<num; i++ ) {
488 if ( ber_bvcmp( &a.a_nvals[i],
489 &si->si_cookieState->cs_vals[i] )) {
496 ber_bvarray_free( si->si_cookieState->cs_vals );
497 ch_free( si->si_cookieState->cs_sids );
498 si->si_cookieState->cs_num = num;
499 si->si_cookieState->cs_vals = a.a_nvals;
500 si->si_cookieState->cs_sids = slap_parse_csn_sids( a.a_nvals,
502 si->si_cookieState->cs_age++;
504 ber_bvarray_free( a.a_nvals );
506 ber_bvarray_free( a.a_vals );
508 /* See if the cookieState has changed due to anything outside
509 * this particular consumer. That includes other consumers in
510 * the same context, or local changes detected above.
512 if ( si->si_cookieState->cs_num > 0 && si->si_cookieAge !=
513 si->si_cookieState->cs_age ) {
514 if ( !si->si_syncCookie.numcsns ) {
515 ber_bvarray_free( si->si_syncCookie.ctxcsn );
516 ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
517 si->si_cookieState->cs_vals, NULL );
520 for (i=0; !BER_BVISNULL( &si->si_syncCookie.ctxcsn[i] ); i++) {
521 /* bogus, just dup everything */
522 if ( si->si_syncCookie.sids[i] == -1 ) {
523 ber_bvarray_free( si->si_syncCookie.ctxcsn );
524 ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
525 si->si_cookieState->cs_vals, NULL );
529 for (j=0; j<si->si_cookieState->cs_num; j++) {
530 if ( si->si_syncCookie.sids[i] !=
531 si->si_cookieState->cs_sids[j] )
533 if ( bvmatch( &si->si_syncCookie.ctxcsn[i],
534 &si->si_cookieState->cs_vals[j] ))
536 ber_bvreplace( &si->si_syncCookie.ctxcsn[i],
537 &si->si_cookieState->cs_vals[j] );
545 si->si_cookieAge = si->si_cookieState->cs_age;
546 ch_free( si->si_syncCookie.octet_str.bv_val );
547 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
548 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
549 si->si_syncCookie.sid );
551 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
561 int cmdline_cookie_found = 0;
563 struct sync_cookie *sc = NULL;
568 rc = slap_client_connect( &si->si_ld, &si->si_bindconf );
569 if ( rc != LDAP_SUCCESS ) {
572 op->o_protocol = LDAP_VERSION3;
574 /* Set SSF to strongest of TLS, SASL SSFs */
577 op->o_transport_ssf = 0;
579 if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
580 == LDAP_SUCCESS && ssl != NULL )
582 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
584 #endif /* HAVE_TLS */
586 ber_len_t ssf; /* ITS#5403, 3864 LDAP_OPT_X_SASL_SSF probably ought
587 to use sasl_ssf_t but currently uses ber_len_t */
588 if ( ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &ssf )
590 op->o_sasl_ssf = ssf;
592 op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
593 ? op->o_sasl_ssf : op->o_tls_ssf;
595 ldap_set_option( si->si_ld, LDAP_OPT_TIMELIMIT, &si->si_tlimit );
597 rc = LDAP_DEREF_NEVER; /* actually could allow DEREF_FINDING */
598 ldap_set_option( si->si_ld, LDAP_OPT_DEREF, &rc );
600 ldap_set_option( si->si_ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF );
602 si->si_syncCookie.rid = si->si_rid;
604 /* whenever there are multiple data sources possible, advertise sid */
605 si->si_syncCookie.sid = ( SLAP_MULTIMASTER( si->si_be ) || si->si_be != si->si_wbe ) ?
608 /* We've just started up, or the remote server hasn't sent us
609 * any meaningful state.
611 if ( BER_BVISNULL( &si->si_syncCookie.octet_str ) ) {
614 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
615 if ( si->si_rid == sc->rid ) {
616 cmdline_cookie_found = 1;
621 if ( cmdline_cookie_found ) {
622 /* cookie is supplied in the command line */
624 LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
626 /* ctxcsn wasn't parsed yet, do it now */
627 slap_parse_sync_cookie( sc, op->o_tmpmemctx );
628 slap_sync_cookie_free( &si->si_syncCookie, 0 );
629 slap_dup_sync_cookie( &si->si_syncCookie, sc );
630 slap_sync_cookie_free( sc, 1 );
632 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
633 if ( !si->si_cookieState->cs_num ) {
634 /* get contextCSN shadow replica from database */
635 BerVarray csn = NULL;
636 void *ctx = op->o_tmpmemctx;
638 op->o_req_ndn = si->si_contextdn;
639 op->o_req_dn = op->o_req_ndn;
641 /* try to read stored contextCSN */
642 op->o_tmpmemctx = NULL;
643 backend_attribute( op, NULL, &op->o_req_ndn,
644 slap_schema.si_ad_contextCSN, &csn, ACL_READ );
645 op->o_tmpmemctx = ctx;
647 si->si_cookieState->cs_vals = csn;
648 for (i=0; !BER_BVISNULL( &csn[i] ); i++);
649 si->si_cookieState->cs_num = i;
650 si->si_cookieState->cs_sids = slap_parse_csn_sids( csn, i, NULL );
653 if ( si->si_cookieState->cs_num ) {
654 ber_bvarray_free( si->si_syncCookie.ctxcsn );
655 if ( ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
656 si->si_cookieState->cs_vals, NULL )) {
658 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
661 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
662 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num *
664 for ( i=0; i<si->si_syncCookie.numcsns; i++ )
665 si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
667 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
670 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
671 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
672 si->si_syncCookie.sid );
674 /* ITS#6367: recreate the cookie so it has our SID, not our peer's */
675 ch_free( si->si_syncCookie.octet_str.bv_val );
676 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
677 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
678 si->si_syncCookie.sid );
679 /* Look for contextCSN from syncprov overlay. */
680 check_syncprov( op, si );
683 si->si_refreshDone = 0;
685 rc = ldap_sync_search( si, op->o_tmpmemctx );
687 if( rc != LDAP_SUCCESS ) {
688 Debug( LDAP_DEBUG_ANY, "do_syncrep1: %s "
689 "ldap_search_ext: %s (%d)\n",
690 si->si_ridtxt, ldap_err2string( rc ), rc );
696 ldap_unbind_ext( si->si_ld, NULL, NULL );
705 compare_csns( struct sync_cookie *sc1, struct sync_cookie *sc2, int *which )
712 if ( sc1->numcsns < sc2->numcsns ) {
713 *which = sc1->numcsns;
717 for (j=0; j<sc2->numcsns; j++) {
718 for (i=0; i<sc1->numcsns; i++) {
719 if ( sc1->sids[i] != sc2->sids[j] )
721 value_match( &match, slap_schema.si_ad_entryCSN,
722 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
723 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
724 &sc1->ctxcsn[i], &sc2->ctxcsn[j], &text );
731 if ( i == sc1->numcsns ) {
732 /* sc2 has a sid sc1 lacks */
740 #define SYNC_PAUSED -3
747 LDAPControl **rctrls = NULL;
749 BerElementBuffer berbuf;
750 BerElement *ber = (BerElement *)&berbuf;
752 LDAPMessage *msg = NULL;
755 struct berval *retdata = NULL;
760 struct berval syncUUID = BER_BVNULL;
761 struct sync_cookie syncCookie = { NULL };
762 struct sync_cookie syncCookie_req = { NULL };
763 struct berval cookie = BER_BVNULL;
769 Modifications *modlist = NULL;
771 int match, m, punlock = 0;
773 struct timeval *tout_p = NULL;
774 struct timeval tout = { 0, 0 };
776 int refreshDeletes = 0;
777 BerVarray syncUUIDs = NULL;
780 if ( slapd_shutdown ) {
785 ber_init2( ber, NULL, LBER_USE_DER );
786 ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
788 Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2 %s\n", si->si_ridtxt, 0, 0 );
790 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
792 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
798 while ( ( rc = ldap_result( si->si_ld, si->si_msgid, LDAP_MSG_ONE,
799 tout_p, &msg ) ) > 0 )
801 LDAPControl *rctrlp = NULL;
803 if ( slapd_shutdown ) {
807 switch( ldap_msgtype( msg ) ) {
808 case LDAP_RES_SEARCH_ENTRY:
809 ldap_get_entry_controls( si->si_ld, msg, &rctrls );
810 /* we can't work without the control */
813 /* NOTE: make sure we use the right one;
814 * a better approach would be to run thru
815 * the whole list and take care of all */
816 /* NOTE: since we issue the search request,
817 * we should know what controls to expect,
818 * and there should be none apart from the
819 * sync-related control */
820 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_STATE, rctrls, &next );
821 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_STATE, next, NULL ) )
823 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
824 "got search entry with multiple "
825 "Sync State control\n", si->si_ridtxt, 0, 0 );
826 ldap_controls_free( rctrls );
831 if ( rctrlp == NULL ) {
832 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
833 "got search entry without "
834 "Sync State control\n", si->si_ridtxt, 0, 0 );
838 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
839 ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
840 /* FIXME: what if syncUUID is NULL or empty?
841 * (happens with back-sql...) */
842 if ( BER_BVISEMPTY( &syncUUID ) ) {
843 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
844 "got empty syncUUID with LDAP_SYNC_%s\n",
846 syncrepl_state2str( syncstate ), 0 );
847 ldap_controls_free( rctrls );
851 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
852 ber_scanf( ber, /*"{"*/ "m}", &cookie );
854 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
856 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
858 if ( !BER_BVISNULL( &cookie ) ) {
859 ch_free( syncCookie.octet_str.bv_val );
860 ber_dupbv( &syncCookie.octet_str, &cookie );
862 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
864 slap_parse_sync_cookie( &syncCookie, NULL );
865 if ( syncCookie.ctxcsn ) {
866 int i, sid = slap_parse_csn_sid( syncCookie.ctxcsn );
867 check_syncprov( op, si );
868 for ( i =0; i<si->si_cookieState->cs_num; i++ ) {
869 if ( si->si_cookieState->cs_sids[i] == sid ) {
870 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_vals[i] ) <= 0 ) {
871 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring %s\n",
872 si->si_ridtxt, syncCookie.ctxcsn->bv_val, 0 );
873 ldap_controls_free( rctrls );
880 /* check pending CSNs too */
881 while ( ldap_pvt_thread_mutex_trylock( &si->si_cookieState->cs_pmutex )) {
882 if ( slapd_shutdown ) {
886 if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
887 ldap_pvt_thread_yield();
889 for ( i =0; i<si->si_cookieState->cs_pnum; i++ ) {
890 if ( si->si_cookieState->cs_psids[i] == sid ) {
891 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_pvals[i] ) <= 0 ) {
892 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring %s\n",
893 si->si_ridtxt, syncCookie.ctxcsn->bv_val, 0 );
894 ldap_controls_free( rctrls );
896 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
899 ber_bvreplace( &si->si_cookieState->cs_pvals[i],
904 /* new SID, add it */
905 if ( i == si->si_cookieState->cs_pnum ) {
906 value_add( &si->si_cookieState->cs_pvals, syncCookie.ctxcsn );
907 si->si_cookieState->cs_pnum++;
908 si->si_cookieState->cs_psids = ch_realloc( si->si_cookieState->cs_psids, si->si_cookieState->cs_pnum * sizeof(int));
909 si->si_cookieState->cs_psids[i] = sid;
913 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
917 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
919 if ( ( rc = syncrepl_message_to_op( si, op, msg ) ) == LDAP_SUCCESS &&
922 rc = syncrepl_updateCookie( si, op, &syncCookie );
923 } else switch ( rc ) {
924 case LDAP_ALREADY_EXISTS:
925 case LDAP_NO_SUCH_OBJECT:
926 case LDAP_NO_SUCH_ATTRIBUTE:
927 case LDAP_TYPE_OR_VALUE_EXISTS:
928 rc = LDAP_SYNC_REFRESH_REQUIRED;
929 si->si_logstate = SYNCLOG_FALLBACK;
930 ldap_abandon_ext( si->si_ld, si->si_msgid, NULL, NULL );
935 } else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
936 &modlist, &entry, syncstate ) ) == LDAP_SUCCESS )
938 if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
939 syncstate, &syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
942 rc = syncrepl_updateCookie( si, op, &syncCookie );
946 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
947 ldap_controls_free( rctrls );
949 slap_mods_free( modlist, 1 );
955 case LDAP_RES_SEARCH_REFERENCE:
956 Debug( LDAP_DEBUG_ANY,
957 "do_syncrep2: %s reference received error\n",
958 si->si_ridtxt, 0, 0 );
961 case LDAP_RES_SEARCH_RESULT:
962 Debug( LDAP_DEBUG_SYNC,
963 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT\n",
964 si->si_ridtxt, 0, 0 );
965 ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
967 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
968 if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
969 /* map old result code to registered code */
970 err = LDAP_SYNC_REFRESH_REQUIRED;
973 if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
974 if ( si->si_logstate == SYNCLOG_LOGGING ) {
975 si->si_logstate = SYNCLOG_FALLBACK;
981 Debug( LDAP_DEBUG_ANY,
982 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT (%d) %s\n",
983 si->si_ridtxt, err, ldap_err2string( err ) );
987 /* NOTE: make sure we use the right one;
988 * a better approach would be to run thru
989 * the whole list and take care of all */
990 /* NOTE: since we issue the search request,
991 * we should know what controls to expect,
992 * and there should be none apart from the
993 * sync-related control */
994 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_DONE, rctrls, &next );
995 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_DONE, next, NULL ) )
997 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
998 "got search result with multiple "
999 "Sync State control\n", si->si_ridtxt, 0, 0 );
1000 ldap_controls_free( rctrls );
1006 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
1008 ber_scanf( ber, "{" /*"}"*/);
1009 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
1010 ber_scanf( ber, "m", &cookie );
1012 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1014 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1016 if ( !BER_BVISNULL( &cookie ) ) {
1017 ch_free( syncCookie.octet_str.bv_val );
1018 ber_dupbv( &syncCookie.octet_str, &cookie);
1020 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1022 slap_parse_sync_cookie( &syncCookie, NULL );
1023 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1026 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
1028 ber_scanf( ber, "b", &refreshDeletes );
1030 ber_scanf( ber, /*"{"*/ "}" );
1032 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1033 slap_sync_cookie_free( &syncCookie_req, 0 );
1034 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1036 if ( !syncCookie.ctxcsn ) {
1038 } else if ( !syncCookie_req.ctxcsn ) {
1042 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1045 ldap_controls_free( rctrls );
1047 if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
1048 /* FIXME : different error behaviors according to
1049 * 1) err code : LDAP_BUSY ...
1050 * 2) on err policy : stop service, stop sync, retry
1052 if ( refreshDeletes == 0 && match < 0 &&
1053 err == LDAP_SUCCESS &&
1054 syncCookie_req.numcsns == syncCookie.numcsns )
1056 syncrepl_del_nonpresent( op, si, NULL,
1059 avl_free( si->si_presentlist, ch_free );
1060 si->si_presentlist = NULL;
1063 if ( syncCookie.ctxcsn && match < 0 && err == LDAP_SUCCESS )
1065 rc = syncrepl_updateCookie( si, op, &syncCookie );
1067 if ( err == LDAP_SUCCESS
1068 && si->si_logstate == SYNCLOG_FALLBACK ) {
1069 si->si_logstate = SYNCLOG_LOGGING;
1070 rc = LDAP_SYNC_REFRESH_REQUIRED;
1077 case LDAP_RES_INTERMEDIATE:
1078 rc = ldap_parse_intermediate( si->si_ld, msg,
1079 &retoid, &retdata, NULL, 0 );
1080 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
1081 ber_init2( ber, retdata, LBER_USE_DER );
1083 switch ( si_tag = ber_peek_tag( ber, &len ) ) {
1085 case LDAP_TAG_SYNC_NEW_COOKIE:
1086 Debug( LDAP_DEBUG_SYNC,
1087 "do_syncrep2: %s %s - %s\n",
1089 "LDAP_RES_INTERMEDIATE",
1091 ber_scanf( ber, "tm", &tag, &cookie );
1092 Debug( LDAP_DEBUG_SYNC,
1093 "do_syncrep2: %s NEW_COOKIE: %s\n",
1096 if ( !BER_BVISNULL( &cookie ) ) {
1097 ch_free( syncCookie.octet_str.bv_val );
1098 ber_dupbv( &syncCookie.octet_str, &cookie );
1100 if (!BER_BVISNULL( &syncCookie.octet_str ) ) {
1101 slap_parse_sync_cookie( &syncCookie, NULL );
1102 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1105 case LDAP_TAG_SYNC_REFRESH_DELETE:
1106 case LDAP_TAG_SYNC_REFRESH_PRESENT:
1107 Debug( LDAP_DEBUG_SYNC,
1108 "do_syncrep2: %s %s - %s\n",
1110 "LDAP_RES_INTERMEDIATE",
1111 si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
1112 "REFRESH_PRESENT" : "REFRESH_DELETE" );
1113 if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
1114 si->si_refreshDelete = 1;
1116 si->si_refreshPresent = 1;
1118 ber_scanf( ber, "t{" /*"}"*/, &tag );
1119 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
1121 ber_scanf( ber, "m", &cookie );
1123 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1125 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1127 if ( !BER_BVISNULL( &cookie ) ) {
1128 ch_free( syncCookie.octet_str.bv_val );
1129 ber_dupbv( &syncCookie.octet_str, &cookie );
1131 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1133 slap_parse_sync_cookie( &syncCookie, NULL );
1134 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1137 /* Defaults to TRUE */
1138 if ( ber_peek_tag( ber, &len ) ==
1139 LDAP_TAG_REFRESHDONE )
1141 ber_scanf( ber, "b", &si->si_refreshDone );
1144 si->si_refreshDone = 1;
1146 ber_scanf( ber, /*"{"*/ "}" );
1148 case LDAP_TAG_SYNC_ID_SET:
1149 Debug( LDAP_DEBUG_SYNC,
1150 "do_syncrep2: %s %s - %s\n",
1152 "LDAP_RES_INTERMEDIATE",
1154 ber_scanf( ber, "t{" /*"}"*/, &tag );
1155 if ( ber_peek_tag( ber, &len ) ==
1156 LDAP_TAG_SYNC_COOKIE )
1158 ber_scanf( ber, "m", &cookie );
1160 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1162 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1164 if ( !BER_BVISNULL( &cookie ) ) {
1165 ch_free( syncCookie.octet_str.bv_val );
1166 ber_dupbv( &syncCookie.octet_str, &cookie );
1168 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1170 slap_parse_sync_cookie( &syncCookie, NULL );
1171 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1172 compare_csns( &syncCookie_req, &syncCookie, &m );
1175 if ( ber_peek_tag( ber, &len ) ==
1176 LDAP_TAG_REFRESHDELETES )
1178 ber_scanf( ber, "b", &refreshDeletes );
1180 ber_scanf( ber, "[W]", &syncUUIDs );
1181 ber_scanf( ber, /*"{"*/ "}" );
1182 if ( refreshDeletes ) {
1183 syncrepl_del_nonpresent( op, si, syncUUIDs,
1185 ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
1188 for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
1189 (void)avl_presentlist_insert( si, &syncUUIDs[i] );
1190 slap_sl_free( syncUUIDs[i].bv_val, op->o_tmpmemctx );
1192 slap_sl_free( syncUUIDs, op->o_tmpmemctx );
1194 slap_sync_cookie_free( &syncCookie, 0 );
1197 Debug( LDAP_DEBUG_ANY,
1198 "do_syncrep2: %s unknown syncinfo tag (%ld)\n",
1199 si->si_ridtxt, (long) si_tag, 0 );
1200 ldap_memfree( retoid );
1201 ber_bvfree( retdata );
1205 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1206 slap_sync_cookie_free( &syncCookie_req, 0 );
1207 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1209 if ( !syncCookie.ctxcsn ) {
1211 } else if ( !syncCookie_req.ctxcsn ) {
1215 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1219 if ( si->si_refreshPresent == 1 &&
1220 si_tag != LDAP_TAG_SYNC_NEW_COOKIE &&
1221 syncCookie_req.numcsns == syncCookie.numcsns ) {
1222 syncrepl_del_nonpresent( op, si, NULL,
1226 if ( syncCookie.ctxcsn )
1228 rc = syncrepl_updateCookie( si, op, &syncCookie);
1232 ldap_memfree( retoid );
1233 ber_bvfree( retdata );
1237 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1238 "unknown intermediate response (%d)\n",
1239 si->si_ridtxt, rc, 0 );
1240 ldap_memfree( retoid );
1241 ber_bvfree( retdata );
1247 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1248 "unknown message (0x%02lx)\n",
1250 (unsigned long)ldap_msgtype( msg ), 0 );
1254 if ( !BER_BVISNULL( &syncCookie.octet_str ) ) {
1255 slap_sync_cookie_free( &syncCookie_req, 0 );
1256 slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
1257 slap_sync_cookie_free( &syncCookie, 0 );
1259 ldap_msgfree( msg );
1261 if ( ldap_pvt_thread_pool_pausing( &connection_pool )) {
1262 slap_sync_cookie_free( &syncCookie, 0 );
1263 slap_sync_cookie_free( &syncCookie_req, 0 );
1269 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
1274 if ( err != LDAP_SUCCESS ) {
1275 Debug( LDAP_DEBUG_ANY,
1276 "do_syncrep2: %s (%d) %s\n",
1277 si->si_ridtxt, err, ldap_err2string( err ) );
1280 slap_sync_cookie_free( &syncCookie, 0 );
1281 slap_sync_cookie_free( &syncCookie_req, 0 );
1283 if ( msg ) ldap_msgfree( msg );
1285 if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1286 if ( si->si_conn ) {
1287 connection_client_stop( si->si_conn );
1290 ldap_unbind_ext( si->si_ld, NULL, NULL );
1302 struct re_s* rtask = arg;
1303 syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1304 Connection conn = {0};
1305 OperationBuffer opbuf;
1307 int rc = LDAP_SUCCESS;
1310 int i, defer = 1, fail = 0, freeinfo = 0;
1315 if ( slapd_shutdown )
1318 Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl %s\n", si->si_ridtxt, 0, 0 );
1320 /* Don't get stuck here while a pause is initiated */
1321 while ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
1322 if ( slapd_shutdown )
1324 if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
1325 ldap_pvt_thread_yield();
1328 if ( si->si_ctype < 1 ) {
1332 switch( abs( si->si_type ) ) {
1333 case LDAP_SYNC_REFRESH_ONLY:
1334 case LDAP_SYNC_REFRESH_AND_PERSIST:
1337 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1341 if ( slapd_shutdown ) {
1343 if ( si->si_conn ) {
1344 connection_client_stop( si->si_conn );
1347 ldap_unbind_ext( si->si_ld, NULL, NULL );
1350 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1354 connection_fake_init( &conn, &opbuf, ctx );
1356 /* o_connids must be unique for slap_graduate_commit_csn */
1357 op->o_connid = -1000 - si->si_rid;
1359 op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1362 /* Coordinate contextCSN updates with any syncprov overlays
1363 * in use. This may be complicated by the use of the glue
1366 * Typically there is a single syncprov mastering the entire
1367 * glued tree. In that case, our contextCSN updates should
1368 * go to the master DB. But if there is no syncprov on the
1369 * master DB, then nothing special is needed here.
1371 * Alternatively, there may be individual syncprov overlays
1372 * on each glued branch. In that case, each syncprov only
1373 * knows about changes within its own branch. And so our
1374 * contextCSN updates should only go to the local DB.
1376 if ( !si->si_wbe ) {
1377 if ( SLAP_GLUE_SUBORDINATE( be ) && !overlay_is_inst( be, "syncprov" )) {
1378 BackendDB * top_be = select_backend( &be->be_nsuffix[0], 1 );
1379 if ( overlay_is_inst( top_be, "syncprov" ))
1380 si->si_wbe = top_be;
1386 if ( SLAP_SYNC_SUBENTRY( si->si_wbe )) {
1387 build_new_dn( &si->si_contextdn, &si->si_wbe->be_nsuffix[0],
1388 (struct berval *)&slap_ldapsync_cn_bv, NULL );
1390 si->si_contextdn = si->si_wbe->be_nsuffix[0];
1393 if ( !si->si_schemachecking )
1394 op->o_no_schema_check = 1;
1396 /* Establish session, do search */
1398 si->si_refreshDelete = 0;
1399 si->si_refreshPresent = 0;
1401 /* use main DB when retrieving contextCSN */
1402 op->o_bd = si->si_wbe;
1403 op->o_dn = op->o_bd->be_rootdn;
1404 op->o_ndn = op->o_bd->be_rootndn;
1405 rc = do_syncrep1( op, si );
1409 /* Process results */
1410 if ( rc == LDAP_SUCCESS ) {
1411 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1413 /* use current DB */
1415 op->o_dn = op->o_bd->be_rootdn;
1416 op->o_ndn = op->o_bd->be_rootndn;
1417 rc = do_syncrep2( op, si );
1418 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1419 rc = ldap_sync_search( si, op->o_tmpmemctx );
1424 /* We got deleted while running on cn=config */
1425 if ( si->si_ctype < 1 ) {
1426 if ( si->si_ctype == -1 ) {
1435 if ( rc != SYNC_PAUSED ) {
1436 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1437 /* If we succeeded, enable the connection for further listening.
1438 * If we failed, tear down the connection and reschedule.
1440 if ( rc == LDAP_SUCCESS ) {
1441 if ( si->si_conn ) {
1442 connection_client_enable( si->si_conn );
1444 si->si_conn = connection_client_setup( s, do_syncrepl, arg );
1446 } else if ( si->si_conn ) {
1450 if ( rc == -2 ) rc = 0;
1455 /* At this point, we have 5 cases:
1456 * 1) for any hard failure, give up and remove this task
1457 * 2) for ServerDown, reschedule this task to run later
1458 * 3) for threadpool pause, reschedule to run immediately
1459 * 4) for Refresh and Success, reschedule to run
1460 * 5) for Persist and Success, reschedule to defer
1462 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1464 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask ) ) {
1465 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1469 connection_client_stop( si->si_conn );
1473 if ( rc == SYNC_PAUSED ) {
1474 rtask->interval.tv_sec = 0;
1475 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1476 rtask->interval.tv_sec = si->si_interval;
1478 } else if ( rc == LDAP_SUCCESS ) {
1479 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1482 rtask->interval.tv_sec = si->si_interval;
1483 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1484 if ( si->si_retrynum ) {
1485 for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1486 si->si_retrynum[i] = si->si_retrynum_init[i];
1488 si->si_retrynum[i] = RETRYNUM_TAIL;
1491 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1492 if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1496 if ( si->si_ctype < 1
1497 || !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1499 ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1502 fail = RETRYNUM_TAIL;
1503 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1504 if ( si->si_retrynum[i] > 0 )
1505 si->si_retrynum[i]--;
1506 fail = si->si_retrynum[i];
1507 rtask->interval.tv_sec = si->si_retryinterval[i];
1508 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1509 slap_wake_listener();
1513 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1514 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1517 if ( fail == RETRYNUM_TAIL ) {
1518 Debug( LDAP_DEBUG_ANY,
1519 "do_syncrepl: %s rc %d quitting\n",
1520 si->si_ridtxt, rc, 0 );
1521 } else if ( fail > 0 ) {
1522 Debug( LDAP_DEBUG_ANY,
1523 "do_syncrepl: %s rc %d retrying (%d retries left)\n",
1524 si->si_ridtxt, rc, fail );
1526 Debug( LDAP_DEBUG_ANY,
1527 "do_syncrepl: %s rc %d retrying\n",
1528 si->si_ridtxt, rc, 0 );
1532 /* Do final delete cleanup */
1534 syncinfo_free( si, 0 );
1539 static slap_verbmasks modops[] = {
1540 { BER_BVC("add"), LDAP_REQ_ADD },
1541 { BER_BVC("delete"), LDAP_REQ_DELETE },
1542 { BER_BVC("modify"), LDAP_REQ_MODIFY },
1543 { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1547 static Modifications *
1548 syncrepl_accesslog_mods(
1555 AttributeDescription *ad;
1556 struct berval bv, bv2;
1558 Modifications *mod = NULL, *modlist = NULL, **modtail;
1563 for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1567 colon = ber_bvchr( &bv, ':' );
1573 bv.bv_len = colon - bv.bv_val;
1574 if ( slap_bv2ad( &bv, &ad, &text ) ) {
1579 /* Ignore dynamically generated attrs */
1580 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1584 /* Ignore excluded attrs */
1585 if ( ldap_charray_inlist( si->si_exattrs,
1586 ad->ad_type->sat_cname.bv_val ) )
1592 case '+': op = LDAP_MOD_ADD; break;
1593 case '-': op = LDAP_MOD_DELETE; break;
1594 case '=': op = LDAP_MOD_REPLACE; break;
1595 case '#': op = LDAP_MOD_INCREMENT; break;
1599 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1600 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1603 mod->sml_next = NULL;
1605 mod->sml_type = ad->ad_cname;
1606 mod->sml_values = NULL;
1607 mod->sml_nvalues = NULL;
1608 mod->sml_numvals = 0;
1611 modtail = &mod->sml_next;
1613 if ( colon[2] == ' ' ) {
1614 bv.bv_val = colon + 3;
1615 bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1616 ber_dupbv( &bv2, &bv );
1617 ber_bvarray_add( &mod->sml_values, &bv2 );
1624 static Modifications *
1625 syncrepl_changelog_mods(
1630 return NULL; /* FIXME */
1634 syncrepl_message_to_op(
1640 BerElement *ber = NULL;
1641 Modifications *modlist = NULL;
1643 SlapReply rs = { REP_RESULT };
1644 slap_callback cb = { NULL, null_callback, NULL, NULL };
1647 char txtbuf[SLAP_TEXT_BUFLEN];
1648 size_t textlen = sizeof txtbuf;
1650 struct berval bdn, dn = BER_BVNULL, ndn;
1651 struct berval bv, *bvals = NULL;
1652 struct berval rdn = BER_BVNULL, sup = BER_BVNULL,
1653 prdn = BER_BVNULL, nrdn = BER_BVNULL,
1654 psup = BER_BVNULL, nsup = BER_BVNULL;
1655 int rc, deleteOldRdn = 0, freeReqDn = 0;
1656 int do_graduate = 0;
1658 if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1659 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1660 "Message type should be entry (%d)",
1661 si->si_ridtxt, ldap_msgtype( msg ), 0 );
1665 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1670 rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1672 if ( rc != LDAP_SUCCESS ) {
1673 Debug( LDAP_DEBUG_ANY,
1674 "syncrepl_message_to_op: %s dn get failed (%d)",
1675 si->si_ridtxt, rc, 0 );
1679 op->o_tag = LBER_DEFAULT;
1680 op->o_bd = si->si_wbe;
1682 if ( BER_BVISEMPTY( &bdn ) && !BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] ) ) {
1683 Debug( LDAP_DEBUG_ANY,
1684 "syncrepl_message_to_op: %s got empty dn",
1685 si->si_ridtxt, 0, 0 );
1689 while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ) )
1691 if ( bv.bv_val == NULL )
1694 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn ) ) {
1696 rc = dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1697 if ( rc != LDAP_SUCCESS ) {
1698 Debug( LDAP_DEBUG_ANY,
1699 "syncrepl_message_to_op: %s "
1700 "dn \"%s\" normalization failed (%d)",
1701 si->si_ridtxt, bdn.bv_val, rc );
1706 ber_dupbv( &op->o_req_dn, &dn );
1707 ber_dupbv( &op->o_req_ndn, &ndn );
1708 slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1709 slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1711 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req ) ) {
1712 int i = verb_to_mask( bvals[0].bv_val, modops );
1714 Debug( LDAP_DEBUG_ANY,
1715 "syncrepl_message_to_op: %s unknown op %s",
1716 si->si_ridtxt, bvals[0].bv_val, 0 );
1721 op->o_tag = modops[i].mask;
1722 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod ) ) {
1723 /* Parse attribute into modlist */
1724 if ( si->si_syncdata == SYNCDATA_ACCESSLOG ) {
1725 modlist = syncrepl_accesslog_mods( si, bvals );
1727 modlist = syncrepl_changelog_mods( si, bvals );
1729 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn ) ) {
1731 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn ) ) {
1732 if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ) ) {
1735 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup ) ) {
1737 } else if ( !ber_bvstrcasecmp( &bv,
1738 &slap_schema.si_ad_entryCSN->ad_cname ) )
1740 slap_queue_csn( op, bvals );
1746 /* If we didn't get a mod type or a target DN, bail out */
1747 if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn ) ) {
1752 op->o_callback = &cb;
1753 slap_op_time( &op->o_time, &op->o_tincr );
1755 switch( op->o_tag ) {
1757 case LDAP_REQ_MODIFY:
1758 /* If we didn't get required data, bail */
1759 if ( !modlist ) goto done;
1761 rc = slap_mods_check( op, modlist, &text, txtbuf, textlen, NULL );
1763 if ( rc != LDAP_SUCCESS ) {
1764 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1765 "mods check (%s)\n",
1766 si->si_ridtxt, text, 0 );
1770 if ( op->o_tag == LDAP_REQ_ADD ) {
1771 Entry *e = entry_alloc();
1773 op->ora_e->e_name = op->o_req_dn;
1774 op->ora_e->e_nname = op->o_req_ndn;
1776 rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
1777 if( rc != LDAP_SUCCESS ) {
1778 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1779 "mods2entry (%s)\n",
1780 si->si_ridtxt, text, 0 );
1782 rc = op->o_bd->be_add( op, &rs );
1783 Debug( LDAP_DEBUG_SYNC,
1784 "syncrepl_message_to_op: %s be_add %s (%d)\n",
1785 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1788 if ( e == op->ora_e )
1789 be_entry_release_w( op, op->ora_e );
1791 op->orm_modlist = modlist;
1792 op->o_bd = si->si_wbe;
1793 rc = op->o_bd->be_modify( op, &rs );
1794 modlist = op->orm_modlist;
1795 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1796 "syncrepl_message_to_op: %s be_modify %s (%d)\n",
1797 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1798 op->o_bd = si->si_be;
1802 case LDAP_REQ_MODRDN:
1803 if ( BER_BVISNULL( &rdn ) ) goto done;
1805 if ( rdnPretty( NULL, &rdn, &prdn, NULL ) ) {
1808 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ) ) {
1811 if ( !BER_BVISNULL( &sup ) ) {
1812 if ( dnPrettyNormal( NULL, &sup, &psup, &nsup, NULL ) ) {
1815 op->orr_newSup = &psup;
1816 op->orr_nnewSup = ⊅
1818 op->orr_newSup = NULL;
1819 op->orr_nnewSup = NULL;
1821 op->orr_newrdn = prdn;
1822 op->orr_nnewrdn = nrdn;
1823 op->orr_deleteoldrdn = deleteOldRdn;
1824 op->orr_modlist = NULL;
1825 if ( slap_modrdn2mods( op, &rs ) ) {
1829 /* Append modlist for operational attrs */
1833 for ( m = op->orr_modlist; m->sml_next; m = m->sml_next )
1835 m->sml_next = modlist;
1838 rc = op->o_bd->be_modrdn( op, &rs );
1839 slap_mods_free( op->orr_modlist, 1 );
1840 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1841 "syncrepl_message_to_op: %s be_modrdn %s (%d)\n",
1842 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1845 case LDAP_REQ_DELETE:
1846 rc = op->o_bd->be_delete( op, &rs );
1847 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1848 "syncrepl_message_to_op: %s be_delete %s (%d)\n",
1849 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1855 slap_graduate_commit_csn( op );
1856 op->o_bd = si->si_be;
1857 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
1858 BER_BVZERO( &op->o_csn );
1860 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
1862 if ( !BER_BVISNULL( &rdn ) ) {
1863 if ( !BER_BVISNULL( &nsup ) ) {
1864 ch_free( nsup.bv_val );
1866 if ( !BER_BVISNULL( &psup ) ) {
1867 ch_free( psup.bv_val );
1869 if ( !BER_BVISNULL( &nrdn ) ) {
1870 ch_free( nrdn.bv_val );
1872 if ( !BER_BVISNULL( &prdn ) ) {
1873 ch_free( prdn.bv_val );
1877 ch_free( op->o_req_ndn.bv_val );
1878 ch_free( op->o_req_dn.bv_val );
1885 syncrepl_message_to_entry(
1889 Modifications **modlist,
1895 BerElement *ber = NULL;
1898 Modifications **modtail = modlist;
1901 char txtbuf[SLAP_TEXT_BUFLEN];
1902 size_t textlen = sizeof txtbuf;
1904 struct berval bdn = BER_BVNULL, dn, ndn;
1909 if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1910 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s "
1911 "Message type should be entry (%d)",
1912 si->si_ridtxt, ldap_msgtype( msg ), 0 );
1916 op->o_tag = LDAP_REQ_ADD;
1918 rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1919 if ( rc != LDAP_SUCCESS ) {
1920 Debug( LDAP_DEBUG_ANY,
1921 "syncrepl_message_to_entry: %s dn get failed (%d)",
1922 si->si_ridtxt, rc, 0 );
1926 if ( BER_BVISEMPTY( &bdn ) && !BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] ) ) {
1927 Debug( LDAP_DEBUG_ANY,
1928 "syncrepl_message_to_entry: %s got empty dn",
1929 si->si_ridtxt, 0, 0 );
1933 if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1934 /* NOTE: this could be done even before decoding the DN,
1935 * although encoding errors wouldn't be detected */
1940 if ( entry == NULL ) {
1944 rc = dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1945 if ( rc != LDAP_SUCCESS ) {
1946 /* One of the things that could happen is that the schema
1947 * is not lined-up; this could result in unknown attributes.
1948 * A value non conformant to the syntax should be unlikely,
1949 * except when replicating between different versions
1950 * of the software, or when syntax validation bugs are fixed
1952 Debug( LDAP_DEBUG_ANY,
1953 "syncrepl_message_to_entry: "
1954 "%s dn \"%s\" normalization failed (%d)",
1955 si->si_ridtxt, bdn.bv_val, rc );
1959 ber_dupbv( &op->o_req_dn, &dn );
1960 ber_dupbv( &op->o_req_ndn, &ndn );
1961 slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1962 slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1964 is_ctx = dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] );
1967 e->e_name = op->o_req_dn;
1968 e->e_nname = op->o_req_ndn;
1970 while ( ber_remaining( ber ) ) {
1971 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1972 LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1977 /* Drop all updates to the contextCSN of the context entry
1980 if ( is_ctx && !strcasecmp( tmp.sml_type.bv_val,
1981 slap_schema.si_ad_contextCSN->ad_cname.bv_val )) {
1982 ber_bvarray_free( tmp.sml_values );
1986 mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1988 mod->sml_op = LDAP_MOD_REPLACE;
1990 mod->sml_next = NULL;
1991 mod->sml_desc = NULL;
1992 mod->sml_type = tmp.sml_type;
1993 mod->sml_values = tmp.sml_values;
1994 mod->sml_nvalues = NULL;
1995 mod->sml_numvals = 0; /* slap_mods_check will set this */
1998 modtail = &mod->sml_next;
2001 if ( *modlist == NULL ) {
2002 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s no attributes\n",
2003 si->si_ridtxt, 0, 0 );
2008 rc = slap_mods_check( op, *modlist, &text, txtbuf, textlen, NULL );
2010 if ( rc != LDAP_SUCCESS ) {
2011 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods check (%s)\n",
2012 si->si_ridtxt, text, 0 );
2016 /* Strip out dynamically generated attrs */
2017 for ( modtail = modlist; *modtail ; ) {
2019 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
2020 *modtail = mod->sml_next;
2021 slap_mod_free( &mod->sml_mod, 0 );
2024 modtail = &mod->sml_next;
2028 /* Strip out attrs in exattrs list */
2029 for ( modtail = modlist; *modtail ; ) {
2031 if ( ldap_charray_inlist( si->si_exattrs,
2032 mod->sml_desc->ad_type->sat_cname.bv_val ) )
2034 *modtail = mod->sml_next;
2035 slap_mod_free( &mod->sml_mod, 0 );
2038 modtail = &mod->sml_next;
2042 rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
2043 if( rc != LDAP_SUCCESS ) {
2044 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods2entry (%s)\n",
2045 si->si_ridtxt, text, 0 );
2050 if ( rc != LDAP_SUCCESS ) {
2062 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
2064 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
2065 * entry if a previous refresh was interrupted before sending us a new
2066 * context state. We try to compare the new entry to the existing entry
2067 * and ignore the new entry if they are the same.
2069 * Also, we may get an update where the entryDN has changed, due to
2070 * a ModDn on the provider. We detect this as well, so we can issue
2071 * the corresponding operation locally.
2073 * In the case of a modify, we get a list of all the attributes
2074 * in the original entry. Rather than deleting the entry and re-adding it,
2075 * we issue a Modify request that deletes all the attributes and adds all
2076 * the new ones. This avoids the issue of trying to delete/add a non-leaf
2079 * We otherwise distinguish ModDN from Modify; in the case of
2080 * a ModDN we just use the CSN, modifyTimestamp and modifiersName
2081 * operational attributes from the entry, and do a regular ModDN.
2083 typedef struct dninfo {
2087 struct berval nnewSup;
2088 int renamed; /* Was an existing entry renamed? */
2089 int delOldRDN; /* Was old RDN deleted? */
2090 Modifications **modlist; /* the modlist we received */
2091 Modifications *mods; /* the modlist we compared */
2092 Attribute *oldNattr; /* old naming attr */
2093 AttributeDescription *oldDesc; /* for renames */
2094 AttributeDescription *newDesc; /* for renames */
2097 /* return 1 if inserted, 0 otherwise */
2099 avl_presentlist_insert(
2101 struct berval *syncUUID )
2103 struct berval *syncuuid_bv = ch_malloc( sizeof( struct berval ) + syncUUID->bv_len + 1 );
2105 syncuuid_bv->bv_len = syncUUID->bv_len;
2106 syncuuid_bv->bv_val = (char *)&syncuuid_bv[1];
2107 AC_MEMCPY( syncuuid_bv->bv_val, syncUUID->bv_val, syncUUID->bv_len );
2108 syncuuid_bv->bv_val[ syncuuid_bv->bv_len ] = '\0';
2110 if ( avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
2111 syncuuid_cmp, avl_dup_error ) )
2113 ch_free( syncuuid_bv );
2125 Modifications** modlist,
2127 struct berval* syncUUID,
2128 struct berval* syncCSN )
2130 Backend *be = op->o_bd;
2131 slap_callback cb = { NULL, NULL, NULL, NULL };
2132 int syncuuid_inserted = 0;
2133 struct berval syncUUID_strrep = BER_BVNULL;
2135 SlapReply rs_search = {REP_RESULT};
2136 SlapReply rs_delete = {REP_RESULT};
2137 SlapReply rs_add = {REP_RESULT};
2138 SlapReply rs_modify = {REP_RESULT};
2140 AttributeAssertion ava = ATTRIBUTEASSERTION_INIT;
2141 int rc = LDAP_SUCCESS;
2143 struct berval pdn = BER_BVNULL;
2148 Debug( LDAP_DEBUG_SYNC,
2149 "syncrepl_entry: %s LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_%s)\n",
2150 si->si_ridtxt, syncrepl_state2str( syncstate ), 0 );
2152 if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD ) ) {
2153 if ( !si->si_refreshPresent && !si->si_refreshDone ) {
2154 syncuuid_inserted = avl_presentlist_insert( si, syncUUID );
2158 if ( syncstate == LDAP_SYNC_PRESENT ) {
2160 } else if ( syncstate != LDAP_SYNC_DELETE ) {
2161 if ( entry == NULL ) {
2166 (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
2167 if ( syncstate != LDAP_SYNC_DELETE ) {
2168 Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
2171 /* add if missing */
2172 attr_merge_one( entry, slap_schema.si_ad_entryUUID,
2173 &syncUUID_strrep, syncUUID );
2175 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
2176 /* replace only if necessary */
2177 if ( a->a_nvals != a->a_vals ) {
2178 ber_memfree( a->a_nvals[0].bv_val );
2179 ber_dupbv( &a->a_nvals[0], syncUUID );
2181 ber_memfree( a->a_vals[0].bv_val );
2182 ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
2186 f.f_choice = LDAP_FILTER_EQUALITY;
2188 ava.aa_desc = slap_schema.si_ad_entryUUID;
2189 ava.aa_value = *syncUUID;
2191 if ( syncuuid_inserted ) {
2192 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
2193 si->si_ridtxt, syncUUID_strrep.bv_val, 0 );
2195 op->ors_filter = &f;
2197 op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
2198 op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
2199 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx );
2200 AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
2201 AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
2202 syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
2203 op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
2204 op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
2206 op->o_tag = LDAP_REQ_SEARCH;
2207 op->ors_scope = LDAP_SCOPE_SUBTREE;
2208 op->ors_deref = LDAP_DEREF_NEVER;
2210 /* get the entry for this UUID */
2211 op->o_req_dn = si->si_base;
2212 op->o_req_ndn = si->si_base;
2214 op->o_time = slap_get_time();
2215 op->ors_tlimit = SLAP_NO_LIMIT;
2217 op->ors_limit = NULL;
2219 op->ors_attrs = slap_anlist_all_attributes;
2220 op->ors_attrsonly = 0;
2222 /* set callback function */
2223 op->o_callback = &cb;
2224 cb.sc_response = dn_callback;
2225 cb.sc_private = &dni;
2226 dni.new_entry = entry;
2227 dni.modlist = modlist;
2229 rc = be->be_search( op, &rs_search );
2230 Debug( LDAP_DEBUG_SYNC,
2231 "syncrepl_entry: %s be_search (%d)\n",
2232 si->si_ridtxt, rc, 0 );
2234 if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
2235 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2238 cb.sc_response = null_callback;
2241 if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
2242 Debug( LDAP_DEBUG_SYNC,
2243 "syncrepl_entry: %s %s\n",
2244 si->si_ridtxt, entry->e_name.bv_val, 0 );
2246 Debug( LDAP_DEBUG_SYNC,
2247 "syncrepl_entry: %s %s\n",
2248 si->si_ridtxt, dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0 );
2251 assert( BER_BVISNULL( &op->o_csn ) );
2253 slap_queue_csn( op, syncCSN );
2256 slap_op_time( &op->o_time, &op->o_tincr );
2257 switch ( syncstate ) {
2259 case LDAP_SYNC_MODIFY:
2260 if ( BER_BVISNULL( &op->o_csn ))
2263 Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
2265 /* FIXME: op->o_csn is assumed to be
2266 * on the thread's slab; this needs
2267 * to be cleared ASAP.
2268 * What happens if already present?
2270 assert( BER_BVISNULL( &op->o_csn ) );
2271 op->o_csn = a->a_vals[0];
2276 if ( BER_BVISNULL( &dni.dn ) ) {
2278 op->o_req_dn = entry->e_name;
2279 op->o_req_ndn = entry->e_nname;
2280 op->o_tag = LDAP_REQ_ADD;
2282 op->o_bd = si->si_wbe;
2284 rc = op->o_bd->be_add( op, &rs_add );
2285 Debug( LDAP_DEBUG_SYNC,
2286 "syncrepl_entry: %s be_add %s (%d)\n",
2287 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2288 switch ( rs_add.sr_err ) {
2290 if ( op->ora_e == entry ) {
2291 be_entry_release_w( op, entry );
2297 /* we assume that LDAP_NO_SUCH_OBJECT is returned
2298 * only if the suffix entry is not present */
2299 case LDAP_NO_SUCH_OBJECT:
2300 rc = syncrepl_add_glue( op, entry );
2304 /* if an entry was added via syncrepl_add_glue(),
2305 * it likely has no entryUUID, so the previous
2306 * be_search() doesn't find it. In this case,
2307 * give syncrepl a chance to modify it. Also
2308 * allow for entries that were recreated with the
2309 * same DN but a different entryUUID.
2311 case LDAP_ALREADY_EXISTS:
2313 Operation op2 = *op;
2314 SlapReply rs2 = { 0 };
2315 slap_callback cb2 = { 0 };
2318 op2.o_tag = LDAP_REQ_SEARCH;
2319 op2.o_req_dn = entry->e_name;
2320 op2.o_req_ndn = entry->e_nname;
2321 op2.ors_scope = LDAP_SCOPE_BASE;
2322 op2.ors_deref = LDAP_DEREF_NEVER;
2323 op2.ors_attrs = slap_anlist_all_attributes;
2324 op2.ors_attrsonly = 0;
2325 op2.ors_limit = NULL;
2327 op2.ors_tlimit = SLAP_NO_LIMIT;
2329 f.f_choice = LDAP_FILTER_PRESENT;
2330 f.f_desc = slap_schema.si_ad_objectClass;
2331 op2.ors_filter = &f;
2332 op2.ors_filterstr = generic_filterstr;
2334 op2.o_callback = &cb2;
2335 cb2.sc_response = dn_callback;
2336 cb2.sc_private = &dni;
2338 rc = be->be_search( &op2, &rs2 );
2339 if ( rc ) goto done;
2342 slap_op_time( &op->o_time, &op->o_tincr );
2348 Debug( LDAP_DEBUG_ANY,
2349 "syncrepl_entry: %s be_add %s failed (%d)\n",
2350 si->si_ridtxt, op->o_req_dn.bv_val, rs_add.sr_err );
2358 op->o_req_dn = dni.dn;
2359 op->o_req_ndn = dni.ndn;
2360 if ( dni.renamed ) {
2361 struct berval noldp, newp;
2362 Modifications *mod, **modtail, **ml, *m2;
2363 int i, got_replace = 0, just_rename = 0;
2365 op->o_tag = LDAP_REQ_MODRDN;
2366 dnRdn( &entry->e_name, &op->orr_newrdn );
2367 dnRdn( &entry->e_nname, &op->orr_nnewrdn );
2369 if ( !BER_BVISNULL( &dni.nnewSup )) {
2370 dnParent( &entry->e_name, &newp );
2371 op->orr_newSup = &newp;
2372 op->orr_nnewSup = &dni.nnewSup;
2374 op->orr_newSup = NULL;
2375 op->orr_nnewSup = NULL;
2377 op->orr_deleteoldrdn = dni.delOldRDN;
2378 op->orr_modlist = NULL;
2379 if ( ( rc = slap_modrdn2mods( op, &rs_modify ) ) ) {
2383 /* Drop the RDN-related mods from this op, because their
2384 * equivalents were just setup by slap_modrdn2mods.
2386 * If delOldRDN is TRUE then we should see a delete modop
2387 * for oldDesc. We might see a replace instead.
2388 * delete with no values: therefore newDesc != oldDesc.
2389 * if oldNattr had only one value, then Drop this op.
2390 * delete with 1 value: can only be the oldRDN value. Drop op.
2391 * delete with N values: Drop oldRDN value, keep remainder.
2392 * replace with 1 value: if oldNattr had only one value and
2393 * newDesc == oldDesc, Drop this op.
2394 * Any other cases must be left intact.
2396 * We should also see an add modop for newDesc. (But not if
2397 * we got a replace modop due to delOldRDN.) If it has
2398 * multiple values, we'll have to drop the new RDN value.
2400 modtail = &op->orr_modlist;
2401 if ( dni.delOldRDN ) {
2402 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2403 if ( (*ml)->sml_desc == dni.oldDesc ) {
2405 if ( mod->sml_op == LDAP_MOD_REPLACE &&
2406 dni.oldDesc != dni.newDesc ) {
2407 /* This Replace is due to other Mods.
2412 if ( mod->sml_numvals <= 1 &&
2413 dni.oldNattr->a_numvals == 1 &&
2414 ( mod->sml_op == LDAP_MOD_DELETE ||
2415 mod->sml_op == LDAP_MOD_REPLACE )) {
2416 if ( mod->sml_op == LDAP_MOD_REPLACE )
2419 *ml = mod->sml_next;
2420 mod->sml_next = NULL;
2421 slap_mods_free( mod, 1 );
2424 if ( mod->sml_op != LDAP_MOD_DELETE || mod->sml_numvals == 0 )
2426 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2427 if ( m2->sml_desc == dni.oldDesc &&
2428 m2->sml_op == LDAP_MOD_DELETE ) break;
2430 for ( i=0; i<mod->sml_numvals; i++ ) {
2431 if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2433 ch_free( mod->sml_values[i].bv_val );
2434 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2435 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2436 if ( mod->sml_nvalues ) {
2437 ch_free( mod->sml_nvalues[i].bv_val );
2438 mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2439 BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2444 if ( !mod->sml_numvals ) {
2446 *ml = mod->sml_next;
2447 mod->sml_next = NULL;
2448 slap_mods_free( mod, 1 );
2454 if ( !got_replace ) {
2455 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2456 if ( (*ml)->sml_desc == dni.newDesc ) {
2458 if ( mod->sml_op != LDAP_MOD_ADD )
2460 if ( mod->sml_numvals == 1 ) {
2462 *ml = mod->sml_next;
2463 mod->sml_next = NULL;
2464 slap_mods_free( mod, 1 );
2467 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
2468 if ( m2->sml_desc == dni.oldDesc &&
2469 m2->sml_op == SLAP_MOD_SOFTADD ) break;
2471 for ( i=0; i<mod->sml_numvals; i++ ) {
2472 if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
2474 ch_free( mod->sml_values[i].bv_val );
2475 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
2476 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
2477 if ( mod->sml_nvalues ) {
2478 ch_free( mod->sml_nvalues[i].bv_val );
2479 mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
2480 BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
2490 /* RDNs must be NUL-terminated for back-ldap */
2491 noldp = op->orr_newrdn;
2492 ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
2493 noldp = op->orr_nnewrdn;
2494 ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
2496 /* Setup opattrs too */
2498 static AttributeDescription *nullattr = NULL;
2499 static AttributeDescription **const opattrs[] = {
2500 &slap_schema.si_ad_entryCSN,
2501 &slap_schema.si_ad_modifiersName,
2502 &slap_schema.si_ad_modifyTimestamp,
2505 AttributeDescription *opattr;
2509 /* pull mod off incoming modlist */
2510 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
2511 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next )
2513 if ( (*ml)->sml_desc == opattr ) {
2515 *ml = mod->sml_next;
2516 mod->sml_next = NULL;
2518 modtail = &mod->sml_next;
2523 /* If there are still Modifications left, put the opattrs
2524 * back, and let be_modify run. Otherwise, append the opattrs
2525 * to the orr_modlist.
2529 /* don't set a CSN for the rename op */
2531 slap_graduate_commit_csn( op );
2533 mod = op->orr_modlist;
2536 for ( ; mod->sml_next; mod=mod->sml_next );
2539 op->o_bd = si->si_wbe;
2540 rc = op->o_bd->be_modrdn( op, &rs_modify );
2541 op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
2542 op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
2544 slap_mods_free( op->orr_modlist, 1 );
2545 Debug( LDAP_DEBUG_SYNC,
2546 "syncrepl_entry: %s be_modrdn %s (%d)\n",
2547 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2549 /* Renamed entries may still have other mods so just fallthru */
2550 op->o_req_dn = entry->e_name;
2551 op->o_req_ndn = entry->e_nname;
2552 /* Use CSN on the modify */
2556 slap_queue_csn( op, syncCSN );
2559 op->o_tag = LDAP_REQ_MODIFY;
2560 op->orm_modlist = dni.mods;
2561 op->orm_no_opattrs = 1;
2562 op->o_bd = si->si_wbe;
2564 rc = op->o_bd->be_modify( op, &rs_modify );
2565 slap_mods_free( op->orm_modlist, 1 );
2566 op->orm_no_opattrs = 0;
2567 Debug( LDAP_DEBUG_SYNC,
2568 "syncrepl_entry: %s be_modify %s (%d)\n",
2569 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2570 if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2571 Debug( LDAP_DEBUG_ANY,
2572 "syncrepl_entry: %s be_modify failed (%d)\n",
2573 si->si_ridtxt, rs_modify.sr_err, 0 );
2577 } else if ( !dni.renamed ) {
2578 Debug( LDAP_DEBUG_SYNC,
2579 "syncrepl_entry: %s entry unchanged, ignored (%s)\n",
2580 si->si_ridtxt, op->o_req_dn.bv_val, 0 );
2582 slap_graduate_commit_csn( op );
2587 case LDAP_SYNC_DELETE :
2588 if ( !BER_BVISNULL( &dni.dn ) ) {
2589 op->o_req_dn = dni.dn;
2590 op->o_req_ndn = dni.ndn;
2591 op->o_tag = LDAP_REQ_DELETE;
2592 op->o_bd = si->si_wbe;
2593 rc = op->o_bd->be_delete( op, &rs_delete );
2594 Debug( LDAP_DEBUG_SYNC,
2595 "syncrepl_entry: %s be_delete %s (%d)\n",
2596 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2598 while ( rs_delete.sr_err == LDAP_SUCCESS
2599 && op->o_delete_glue_parent ) {
2600 op->o_delete_glue_parent = 0;
2601 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2602 slap_callback cb = { NULL };
2603 cb.sc_response = slap_null_cb;
2604 dnParent( &op->o_req_ndn, &pdn );
2606 op->o_req_ndn = pdn;
2607 op->o_callback = &cb;
2608 op->o_bd->be_delete( op, &rs_delete );
2619 Debug( LDAP_DEBUG_ANY,
2620 "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
2625 if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
2626 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
2627 BER_BVZERO( &syncUUID_strrep );
2629 if ( !BER_BVISNULL( &dni.ndn ) ) {
2630 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
2632 if ( !BER_BVISNULL( &dni.dn ) ) {
2633 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
2636 entry_free( entry );
2639 slap_graduate_commit_csn( op );
2641 if ( !BER_BVISNULL( &op->o_csn ) && freecsn ) {
2642 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2644 BER_BVZERO( &op->o_csn );
2648 static struct berval gcbva[] = {
2654 #define NP_DELETE_ONE 2
2657 syncrepl_del_nonpresent(
2661 struct sync_cookie *sc,
2664 Backend* be = op->o_bd;
2665 slap_callback cb = { NULL };
2666 SlapReply rs_search = {REP_RESULT};
2667 SlapReply rs_delete = {REP_RESULT};
2668 SlapReply rs_modify = {REP_RESULT};
2669 struct nonpresent_entry *np_list, *np_prev;
2671 AttributeName an[2];
2673 struct berval pdn = BER_BVNULL;
2676 op->o_req_dn = si->si_base;
2677 op->o_req_ndn = si->si_base;
2679 cb.sc_response = nonpresent_callback;
2682 op->o_callback = &cb;
2683 op->o_tag = LDAP_REQ_SEARCH;
2684 op->ors_scope = si->si_scope;
2685 op->ors_deref = LDAP_DEREF_NEVER;
2686 op->o_time = slap_get_time();
2687 op->ors_tlimit = SLAP_NO_LIMIT;
2692 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
2695 op->ors_attrsonly = 1;
2696 op->ors_attrs = slap_anlist_no_attrs;
2697 op->ors_limit = NULL;
2698 op->ors_filter = &uf;
2701 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2703 uf.f_choice = LDAP_FILTER_EQUALITY;
2704 si->si_refreshDelete |= NP_DELETE_ONE;
2706 for (i=0; uuids[i].bv_val; i++) {
2708 uf.f_av_value = uuids[i];
2709 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2710 rc = be->be_search( op, &rs_search );
2711 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2713 si->si_refreshDelete ^= NP_DELETE_ONE;
2717 AttributeAssertion mmaa;
2719 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2720 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2721 an[0].an_desc = slap_schema.si_ad_entryUUID;
2723 op->ors_slimit = SLAP_NO_LIMIT;
2724 op->ors_tlimit = SLAP_NO_LIMIT;
2725 op->ors_limit = NULL;
2726 op->ors_attrsonly = 0;
2727 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
2728 /* In multimaster, updates can continue to arrive while
2729 * we're searching. Limit the search result to entries
2730 * older than our newest cookie CSN.
2732 if ( SLAP_MULTIMASTER( op->o_bd )) {
2737 f->f_choice = LDAP_FILTER_AND;
2738 f->f_next = op->ors_filter;
2742 f->f_choice = LDAP_FILTER_LE;
2744 f->f_av_desc = slap_schema.si_ad_entryCSN;
2746 BER_BVZERO( &f->f_av_value );
2747 for ( i=0; i<sc->numcsns; i++ ) {
2748 if ( ber_bvcmp( &sc->ctxcsn[i], &f->f_av_value ) > 0 )
2749 f->f_av_value = sc->ctxcsn[i];
2751 of = op->ors_filter;
2752 op->ors_filter = mmf;
2753 filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2756 op->ors_filterstr = si->si_filterstr;
2758 op->o_nocaching = 1;
2761 rc = be->be_search( op, &rs_search );
2762 if ( SLAP_MULTIMASTER( op->o_bd )) {
2763 op->ors_filter = of;
2765 if ( op->ors_filter ) filter_free_x( op, op->ors_filter, 1 );
2766 if ( op->ors_filterstr.bv_val != si->si_filterstr.bv_val ) {
2767 op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2772 op->o_nocaching = 0;
2774 if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2776 if ( sc->ctxcsn && !BER_BVISNULL( &sc->ctxcsn[m] ) ) {
2777 csn = sc->ctxcsn[m];
2779 csn = si->si_syncCookie.ctxcsn[0];
2782 op->o_bd = si->si_wbe;
2783 slap_queue_csn( op, &csn );
2785 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2786 while ( np_list != NULL ) {
2787 LDAP_LIST_REMOVE( np_list, npe_link );
2789 np_list = LDAP_LIST_NEXT( np_list, npe_link );
2790 op->o_tag = LDAP_REQ_DELETE;
2791 op->o_callback = &cb;
2792 cb.sc_response = null_callback;
2794 op->o_req_dn = *np_prev->npe_name;
2795 op->o_req_ndn = *np_prev->npe_nname;
2796 rc = op->o_bd->be_delete( op, &rs_delete );
2797 Debug( LDAP_DEBUG_SYNC,
2798 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n",
2799 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2801 if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2802 Modifications mod1, mod2;
2803 mod1.sml_op = LDAP_MOD_REPLACE;
2805 mod1.sml_desc = slap_schema.si_ad_objectClass;
2806 mod1.sml_type = mod1.sml_desc->ad_cname;
2807 mod1.sml_numvals = 2;
2808 mod1.sml_values = &gcbva[0];
2809 mod1.sml_nvalues = NULL;
2810 mod1.sml_next = &mod2;
2812 mod2.sml_op = LDAP_MOD_REPLACE;
2814 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2815 mod2.sml_type = mod2.sml_desc->ad_cname;
2816 mod2.sml_numvals = 1;
2817 mod2.sml_values = &gcbva[1];
2818 mod2.sml_nvalues = NULL;
2819 mod2.sml_next = NULL;
2821 op->o_tag = LDAP_REQ_MODIFY;
2822 op->orm_modlist = &mod1;
2824 rc = op->o_bd->be_modify( op, &rs_modify );
2825 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
2828 while ( rs_delete.sr_err == LDAP_SUCCESS &&
2829 op->o_delete_glue_parent ) {
2830 op->o_delete_glue_parent = 0;
2831 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2832 slap_callback cb = { NULL };
2833 cb.sc_response = slap_null_cb;
2834 dnParent( &op->o_req_ndn, &pdn );
2836 op->o_req_ndn = pdn;
2837 op->o_callback = &cb;
2838 /* give it a root privil ? */
2839 op->o_bd->be_delete( op, &rs_delete );
2845 op->o_delete_glue_parent = 0;
2847 ber_bvfree( np_prev->npe_name );
2848 ber_bvfree( np_prev->npe_nname );
2851 if ( slapd_shutdown ) {
2856 slap_graduate_commit_csn( op );
2859 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2860 BER_BVZERO( &op->o_csn );
2871 Backend *be = op->o_bd;
2872 slap_callback cb = { NULL };
2877 struct berval dn = BER_BVNULL;
2878 struct berval ndn = BER_BVNULL;
2880 SlapReply rs_add = {REP_RESULT};
2881 struct berval ptr, nptr;
2884 op->o_tag = LDAP_REQ_ADD;
2885 op->o_callback = &cb;
2886 cb.sc_response = null_callback;
2887 cb.sc_private = NULL;
2892 /* count RDNs in suffix */
2893 if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2894 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2896 ptr.bv_len -= comma - ptr.bv_val;
2906 /* Start with BE suffix */
2908 for ( i = 0; i < suffrdns; i++ ) {
2909 comma = ber_bvrchr( &ptr, ',' );
2910 if ( comma != NULL ) {
2911 ptr.bv_len = comma - ptr.bv_val;
2918 if ( !BER_BVISEMPTY( &ptr ) ) {
2919 dn.bv_len -= ptr.bv_len + 1;
2920 dn.bv_val += ptr.bv_len + 1;
2923 /* the normalizedDNs are always the same length, no counting
2927 if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2928 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2929 ndn.bv_len = be->be_nsuffix[0].bv_len;
2931 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2937 while ( ndn.bv_val > e->e_nname.bv_val ) {
2938 glue = entry_alloc();
2939 ber_dupbv( &glue->e_name, &dn );
2940 ber_dupbv( &glue->e_nname, &ndn );
2942 a = attr_alloc( slap_schema.si_ad_objectClass );
2945 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
2946 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2947 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2948 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2950 a->a_nvals = a->a_vals;
2952 a->a_next = glue->e_attrs;
2955 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
2958 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
2959 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2960 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2962 a->a_nvals = a->a_vals;
2964 a->a_next = glue->e_attrs;
2967 op->o_req_dn = glue->e_name;
2968 op->o_req_ndn = glue->e_nname;
2970 rc = be->be_add ( op, &rs_add );
2971 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2972 if ( op->ora_e == glue )
2973 be_entry_release_w( op, glue );
2975 /* incl. ALREADY EXIST */
2977 if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
2983 /* Move to next child */
2984 comma = ber_bvrchr( &ptr, ',' );
2985 if ( comma == NULL ) {
2988 ptr.bv_len = comma - ptr.bv_val;
2990 dn.bv_val = ++comma;
2991 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
2993 comma = ber_bvrchr( &nptr, ',' );
2994 assert( comma != NULL );
2995 nptr.bv_len = comma - nptr.bv_val;
2997 ndn.bv_val = ++comma;
2998 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
3001 op->o_req_dn = e->e_name;
3002 op->o_req_ndn = e->e_nname;
3004 rc = be->be_add ( op, &rs_add );
3005 if ( rs_add.sr_err == LDAP_SUCCESS ) {
3006 if ( op->ora_e == e )
3007 be_entry_release_w( op, e );
3016 syncrepl_updateCookie(
3019 struct sync_cookie *syncCookie )
3021 Backend *be = op->o_bd;
3023 struct berval first = BER_BVNULL;
3025 Syntax *syn = slap_schema.si_ad_contextCSN->ad_type->sat_syntax;
3028 int rc, i, j, changed = 0;
3031 slap_callback cb = { NULL };
3032 SlapReply rs_modify = {REP_RESULT};
3034 mod.sml_op = LDAP_MOD_REPLACE;
3035 mod.sml_desc = slap_schema.si_ad_contextCSN;
3036 mod.sml_type = mod.sml_desc->ad_cname;
3037 mod.sml_flags = SLAP_MOD_INTERNAL;
3038 mod.sml_nvalues = NULL;
3039 mod.sml_next = NULL;
3041 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
3044 for ( i=0; i<syncCookie->numcsns; i++ ) {
3045 assert( !syn->ssyn_validate( syn, syncCookie->ctxcsn+i ));
3047 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3048 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3052 /* clone the cookieState CSNs so we can Replace the whole thing */
3053 mod.sml_numvals = si->si_cookieState->cs_num;
3054 mod.sml_values = op->o_tmpalloc(( mod.sml_numvals+1 )*sizeof(struct berval), op->o_tmpmemctx );
3055 for ( i=0; i<mod.sml_numvals; i++ )
3056 mod.sml_values[i] = si->si_cookieState->cs_vals[i];
3057 BER_BVZERO( &mod.sml_values[i] );
3059 /* find any CSNs in the syncCookie that are newer than the cookieState */
3060 for ( i=0; i<syncCookie->numcsns; i++ ) {
3061 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
3062 if ( syncCookie->sids[i] != si->si_cookieState->cs_sids[j] )
3064 len = syncCookie->ctxcsn[i].bv_len;
3065 if ( len > si->si_cookieState->cs_vals[j].bv_len )
3066 len = si->si_cookieState->cs_vals[j].bv_len;
3067 if ( memcmp( syncCookie->ctxcsn[i].bv_val,
3068 si->si_cookieState->cs_vals[j].bv_val, len ) > 0 ) {
3069 mod.sml_values[j] = syncCookie->ctxcsn[i];
3071 if ( BER_BVISNULL( &first ) ) {
3072 first = syncCookie->ctxcsn[i];
3074 } else if ( memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 )
3076 first = syncCookie->ctxcsn[i];
3081 /* there was no match for this SID, it's a new CSN */
3082 if ( j == si->si_cookieState->cs_num ) {
3083 mod.sml_values = op->o_tmprealloc( mod.sml_values,
3084 ( mod.sml_numvals+2 )*sizeof(struct berval), op->o_tmpmemctx );
3085 mod.sml_values[mod.sml_numvals++] = syncCookie->ctxcsn[i];
3086 BER_BVZERO( &mod.sml_values[mod.sml_numvals] );
3087 if ( BER_BVISNULL( &first ) ) {
3088 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 /* Should never happen, ITS#5065 */
3097 if ( BER_BVISNULL( &first ) || !changed ) {
3098 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3099 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
3102 op->o_bd = si->si_wbe;
3103 slap_queue_csn( op, &first );
3105 op->o_tag = LDAP_REQ_MODIFY;
3107 cb.sc_response = null_callback;
3110 op->o_callback = &cb;
3111 op->o_req_dn = si->si_contextdn;
3112 op->o_req_ndn = si->si_contextdn;
3114 /* update contextCSN */
3115 op->o_dont_replicate = 1;
3117 op->orm_modlist = &mod;
3118 op->orm_no_opattrs = 1;
3119 rc = op->o_bd->be_modify( op, &rs_modify );
3121 if ( rs_modify.sr_err == LDAP_NO_SUCH_OBJECT &&
3122 SLAP_SYNC_SUBENTRY( op->o_bd )) {
3124 char txtbuf[SLAP_TEXT_BUFLEN];
3125 size_t textlen = sizeof txtbuf;
3126 Entry *e = slap_create_context_csn_entry( op->o_bd, NULL );
3127 rc = slap_mods2entry( &mod, &e, 0, 1, &text, txtbuf, textlen);
3129 rc = op->o_bd->be_add( op, &rs_modify );
3130 if ( e == op->ora_e )
3131 be_entry_release_w( op, op->ora_e );
3134 op->orm_no_opattrs = 0;
3135 op->o_dont_replicate = 0;
3137 if ( rs_modify.sr_err == LDAP_SUCCESS ) {
3138 slap_sync_cookie_free( &si->si_syncCookie, 0 );
3139 slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
3140 /* If we replaced any old values */
3141 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3142 if ( mod.sml_values[i].bv_val != si->si_cookieState->cs_vals[i].bv_val )
3143 ber_bvreplace( &si->si_cookieState->cs_vals[i],
3144 &mod.sml_values[i] );
3146 /* Handle any added values */
3147 if ( i < mod.sml_numvals ) {
3148 si->si_cookieState->cs_num = mod.sml_numvals;
3149 value_add( &si->si_cookieState->cs_vals, &mod.sml_values[i] );
3150 free( si->si_cookieState->cs_sids );
3151 si->si_cookieState->cs_sids = slap_parse_csn_sids(
3152 si->si_cookieState->cs_vals, si->si_cookieState->cs_num, NULL );
3155 si->si_cookieState->cs_age++;
3156 si->si_cookieAge = si->si_cookieState->cs_age;
3158 Debug( LDAP_DEBUG_ANY,
3159 "syncrepl_updateCookie: %s be_modify failed (%d)\n",
3160 si->si_ridtxt, rs_modify.sr_err, 0 );
3162 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3165 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
3166 BER_BVZERO( &op->o_csn );
3167 if ( mod.sml_next ) slap_mods_free( mod.sml_next, 1 );
3168 op->o_tmpfree( mod.sml_values, op->o_tmpmemctx );
3171 for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3172 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3179 /* Compare the attribute from the old entry to the one in the new
3180 * entry. The Modifications from the new entry will either be left
3181 * in place, or changed to an Add or Delete as needed.
3184 attr_cmp( Operation *op, Attribute *old, Attribute *new,
3185 Modifications ***mret, Modifications ***mcur )
3188 Modifications *mod, **modtail;
3194 struct berval **adds, **dels;
3195 /* count old and new */
3196 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
3197 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
3199 /* there MUST be both old and new values */
3204 adds = op->o_tmpalloc( sizeof(struct berval *) * n, op->o_tmpmemctx );
3205 dels = op->o_tmpalloc( sizeof(struct berval *) * o, op->o_tmpmemctx );
3207 for ( i=0; i<o; i++ ) dels[i] = &old->a_vals[i];
3208 for ( i=0; i<n; i++ ) adds[i] = &new->a_vals[i];
3212 for ( i=0; i<o; i++ ) {
3213 for ( j=0; j<n; j++ ) {
3216 if ( bvmatch( dels[i], adds[j] ) ) {
3226 /* Don't delete/add an objectClass, always use the replace op.
3227 * Modify would fail if provider has replaced entry with a new,
3228 * and the new explicitly includes a superior of a class that was
3229 * only included implicitly in the old entry. Ref ITS#5517.
3231 * Also use replace op if attr has no equality matching rule.
3234 if ( nn && no < o &&
3235 ( old->a_desc == slap_schema.si_ad_objectClass ||
3236 !old->a_desc->ad_type->sat_equality ))
3240 /* all old values were deleted, just use the replace op */
3244 /* delete some values */
3245 mod = ch_malloc( sizeof( Modifications ) );
3246 mod->sml_op = LDAP_MOD_DELETE;
3248 mod->sml_desc = old->a_desc;
3249 mod->sml_type = mod->sml_desc->ad_cname;
3250 mod->sml_numvals = no;
3251 mod->sml_values = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3252 if ( old->a_vals != old->a_nvals ) {
3253 mod->sml_nvalues = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3255 mod->sml_nvalues = NULL;
3258 for ( i = 0; i < o; i++ ) {
3259 if ( !dels[i] ) continue;
3260 ber_dupbv( &mod->sml_values[j], &old->a_vals[i] );
3261 if ( mod->sml_nvalues ) {
3262 ber_dupbv( &mod->sml_nvalues[j], &old->a_nvals[i] );
3266 BER_BVZERO( &mod->sml_values[j] );
3267 if ( mod->sml_nvalues ) {
3268 BER_BVZERO( &mod->sml_nvalues[j] );
3271 modtail = &mod->sml_next;
3274 op->o_tmpfree( dels, op->o_tmpmemctx );
3275 /* some values were added */
3276 if ( nn && no < o ) {
3277 mod = ch_malloc( sizeof( Modifications ) );
3278 mod->sml_op = LDAP_MOD_ADD;
3280 mod->sml_desc = old->a_desc;
3281 mod->sml_type = mod->sml_desc->ad_cname;
3282 mod->sml_numvals = nn;
3283 mod->sml_values = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3284 if ( old->a_vals != old->a_nvals ) {
3285 mod->sml_nvalues = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3287 mod->sml_nvalues = NULL;
3290 for ( i = 0; i < n; i++ ) {
3291 if ( !adds[i] ) continue;
3292 ber_dupbv( &mod->sml_values[j], &new->a_vals[i] );
3293 if ( mod->sml_nvalues ) {
3294 ber_dupbv( &mod->sml_nvalues[j], &new->a_nvals[i] );
3298 BER_BVZERO( &mod->sml_values[j] );
3299 if ( mod->sml_nvalues ) {
3300 BER_BVZERO( &mod->sml_nvalues[j] );
3303 modtail = &mod->sml_next;
3306 op->o_tmpfree( adds, op->o_tmpmemctx );
3308 /* new attr, just use the new mod */
3312 /* advance to next element */
3316 **mcur = mod->sml_next;
3318 modtail = &mod->sml_next;
3320 *mcur = &mod->sml_next;
3326 /* Generate a set of modifications to change the old entry into the
3327 * new one. On input ml is a list of modifications equivalent to
3328 * the new entry. It will be massaged and the result will be stored
3331 void syncrepl_diff_entry( Operation *op, Attribute *old, Attribute *new,
3332 Modifications **mods, Modifications **ml, int is_ctx)
3334 Modifications **modtail = mods;
3336 /* We assume that attributes are saved in the same order
3337 * in the remote and local databases. So if we walk through
3338 * the attributeDescriptions one by one they should match in
3339 * lock step. If not, look for an add or delete.
3341 while ( old && new )
3343 /* If we've seen this before, use its mod now */
3344 if ( new->a_flags & SLAP_ATTR_IXADD ) {
3345 attr_cmp( op, NULL, new, &modtail, &ml );
3349 /* Skip contextCSN */
3350 if ( is_ctx && old->a_desc ==
3351 slap_schema.si_ad_contextCSN ) {
3356 if ( old->a_desc != new->a_desc ) {
3360 /* If it's just been re-added later,
3361 * remember that we've seen it.
3363 tmp = attr_find( new, old->a_desc );
3365 tmp->a_flags |= SLAP_ATTR_IXADD;
3367 /* If it's a new attribute, pull it in.
3369 tmp = attr_find( old, new->a_desc );
3371 attr_cmp( op, NULL, new, &modtail, &ml );
3375 /* Delete old attr */
3376 mod = ch_malloc( sizeof( Modifications ) );
3377 mod->sml_op = LDAP_MOD_DELETE;
3379 mod->sml_desc = old->a_desc;
3380 mod->sml_type = mod->sml_desc->ad_cname;
3381 mod->sml_numvals = 0;
3382 mod->sml_values = NULL;
3383 mod->sml_nvalues = NULL;
3385 modtail = &mod->sml_next;
3390 /* kludge - always update modifiersName so that it
3391 * stays co-located with the other mod opattrs. But only
3392 * if we know there are other valid mods.
3394 if ( *mods && ( old->a_desc == slap_schema.si_ad_modifiersName ||
3395 old->a_desc == slap_schema.si_ad_modifyTimestamp ))
3396 attr_cmp( op, NULL, new, &modtail, &ml );
3398 attr_cmp( op, old, new, &modtail, &ml );
3411 dninfo *dni = op->o_callback->sc_private;
3413 if ( rs->sr_type == REP_SEARCH ) {
3414 if ( !BER_BVISNULL( &dni->dn ) ) {
3415 Debug( LDAP_DEBUG_ANY,
3416 "dn_callback : consistency error - "
3417 "entryUUID is not unique\n", 0, 0, 0 );
3419 ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
3420 ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
3421 /* If there is a new entry, see if it differs from the old.
3422 * We compare the non-normalized values so that cosmetic changes
3423 * in the provider are always propagated.
3425 if ( dni->new_entry ) {
3426 Modifications **modtail, **ml;
3427 Attribute *old, *new;
3428 struct berval old_rdn, new_rdn;
3429 struct berval old_p, new_p;
3430 int is_ctx, new_sup = 0;
3432 /* If old entry is not a glue entry, make sure new entry
3433 * is actually newer than old entry
3435 if ( !is_entry_glue( rs->sr_entry )) {
3436 old = attr_find( rs->sr_entry->e_attrs,
3437 slap_schema.si_ad_entryCSN );
3438 new = attr_find( dni->new_entry->e_attrs,
3439 slap_schema.si_ad_entryCSN );
3442 ber_len_t len = old->a_vals[0].bv_len;
3443 if ( len > new->a_vals[0].bv_len )
3444 len = new->a_vals[0].bv_len;
3445 rc = memcmp( old->a_vals[0].bv_val,
3446 new->a_vals[0].bv_val, len );
3448 Debug( LDAP_DEBUG_SYNC,
3449 "dn_callback : new entry is older than ours "
3450 "%s ours %s, new %s\n",
3451 rs->sr_entry->e_name.bv_val,
3452 old->a_vals[0].bv_val,
3453 new->a_vals[0].bv_val );
3454 return LDAP_SUCCESS;
3455 } else if ( rc == 0 ) {
3456 Debug( LDAP_DEBUG_SYNC,
3457 "dn_callback : entries have identical CSN "
3459 rs->sr_entry->e_name.bv_val,
3460 old->a_vals[0].bv_val, 0 );
3461 return LDAP_SUCCESS;
3466 is_ctx = dn_match( &rs->sr_entry->e_nname,
3467 &op->o_bd->be_nsuffix[0] );
3469 /* Did the DN change?
3470 * case changes in the parent are ignored,
3471 * we only want to know if the RDN was
3474 dnRdn( &rs->sr_entry->e_name, &old_rdn );
3475 dnRdn( &dni->new_entry->e_name, &new_rdn );
3476 dnParent( &rs->sr_entry->e_nname, &old_p );
3477 dnParent( &dni->new_entry->e_nname, &new_p );
3479 new_sup = !dn_match( &old_p, &new_p );
3480 if ( !dn_match( &old_rdn, &new_rdn ) || new_sup )
3482 struct berval oldRDN, oldVal;
3483 AttributeDescription *ad = NULL;
3489 dni->nnewSup = new_p;
3491 /* See if the oldRDN was deleted */
3492 dnRdn( &rs->sr_entry->e_nname, &oldRDN );
3493 oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
3494 oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
3496 oldRDN.bv_len -= oldVal.bv_len + 1;
3497 slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3499 for ( oldpos=0, a=rs->sr_entry->e_attrs;
3500 a && a->a_desc != ad; oldpos++, a=a->a_next );
3502 for ( newpos=0, a=dni->new_entry->e_attrs;
3503 a && a->a_desc != ad; newpos++, a=a->a_next );
3504 if ( !a || oldpos != newpos || attr_valfind( a,
3505 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
3506 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
3507 SLAP_MR_VALUE_OF_SYNTAX,
3508 &oldVal, NULL, op->o_tmpmemctx ) != LDAP_SUCCESS )
3512 /* Get the newRDN's desc */
3513 dnRdn( &dni->new_entry->e_nname, &oldRDN );
3514 oldVal.bv_val = strchr(oldRDN.bv_val, '=');
3515 oldRDN.bv_len = oldVal.bv_val - oldRDN.bv_val;
3517 slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
3520 /* A ModDN has happened, but in Refresh mode other
3521 * changes may have occurred before we picked it up.
3522 * So fallthru to regular Modify processing.
3526 syncrepl_diff_entry( op, rs->sr_entry->e_attrs,
3527 dni->new_entry->e_attrs, &dni->mods, dni->modlist,
3531 } else if ( rs->sr_type == REP_RESULT ) {
3532 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
3533 Debug( LDAP_DEBUG_ANY,
3534 "dn_callback : consistency error - "
3535 "entryUUID is not unique\n", 0, 0, 0 );
3539 return LDAP_SUCCESS;
3543 nonpresent_callback(
3547 syncinfo_t *si = op->o_callback->sc_private;
3550 struct berval* present_uuid = NULL;
3551 struct nonpresent_entry *np_entry;
3553 if ( rs->sr_type == REP_RESULT ) {
3554 count = avl_free( si->si_presentlist, ch_free );
3555 si->si_presentlist = NULL;
3557 } else if ( rs->sr_type == REP_SEARCH ) {
3558 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
3559 a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
3562 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
3566 if ( LogTest( LDAP_DEBUG_SYNC ) ) {
3567 char buf[sizeof("rid=999 non")];
3569 snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt,
3570 present_uuid ? "" : "non" );
3572 Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %spresent UUID %s, dn %s\n",
3573 buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
3576 if ( a == NULL ) return 0;
3579 if ( present_uuid == NULL ) {
3580 np_entry = (struct nonpresent_entry *)
3581 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
3582 np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
3583 np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
3584 LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
3587 avl_delete( &si->si_presentlist,
3588 &a->a_nvals[0], syncuuid_cmp );
3589 ch_free( present_uuid );
3592 return LDAP_SUCCESS;
3600 if ( rs->sr_err != LDAP_SUCCESS &&
3601 rs->sr_err != LDAP_REFERRAL &&
3602 rs->sr_err != LDAP_ALREADY_EXISTS &&
3603 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
3604 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
3606 Debug( LDAP_DEBUG_ANY,
3607 "null_callback : error code 0x%x\n",
3610 return LDAP_SUCCESS;
3613 static struct berval *
3614 slap_uuidstr_from_normalized(
3615 struct berval* uuidstr,
3616 struct berval* normalized,
3621 unsigned char nibble;
3624 if ( normalized == NULL ) return NULL;
3625 if ( normalized->bv_len != 16 ) return NULL;
3630 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3631 if ( new == NULL ) {
3638 if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3639 if ( new != uuidstr ) {
3640 slap_sl_free( new, ctx );
3645 for ( i = 0; i < 16; i++ ) {
3646 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
3647 new->bv_val[(i<<1)+d] = '-';
3651 nibble = (normalized->bv_val[i] >> 4) & 0xF;
3652 if ( nibble < 10 ) {
3653 new->bv_val[(i<<1)+d] = nibble + '0';
3655 new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
3658 nibble = (normalized->bv_val[i]) & 0xF;
3659 if ( nibble < 10 ) {
3660 new->bv_val[(i<<1)+d+1] = nibble + '0';
3662 new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
3666 new->bv_val[new->bv_len] = '\0';
3673 if ( normalized == NULL ) return NULL;
3674 if ( normalized->bv_len != 16 ) return NULL;
3680 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3681 if ( new == NULL ) {
3688 if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3693 rc = lutil_uuidstr_from_normalized( normalized->bv_val,
3694 normalized->bv_len, new->bv_val, new->bv_len + 1 );
3698 if ( new != NULL ) {
3699 if ( new->bv_val != NULL ) {
3700 slap_sl_free( new->bv_val, ctx );
3703 if ( new != uuidstr ) {
3704 slap_sl_free( new, ctx );
3717 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
3719 const struct berval *uuid1 = v_uuid1;
3720 const struct berval *uuid2 = v_uuid2;
3721 int rc = uuid1->bv_len - uuid2->bv_len;
3722 if ( rc ) return rc;
3723 return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
3727 syncinfo_free( syncinfo_t *sie, int free_all )
3729 syncinfo_t *si_next;
3731 Debug( LDAP_DEBUG_TRACE, "syncinfo_free: %s\n",
3732 sie->si_ridtxt, 0, 0 );
3735 si_next = sie->si_next;
3738 if ( sie->si_conn ) {
3739 connection_client_stop( sie->si_conn );
3740 sie->si_conn = NULL;
3742 ldap_unbind_ext( sie->si_ld, NULL, NULL );
3746 struct re_s *re = sie->si_re;
3749 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
3750 if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) )
3751 ldap_pvt_runqueue_stoptask( &slapd_rq, re );
3752 ldap_pvt_runqueue_remove( &slapd_rq, re );
3753 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
3756 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
3758 bindconf_free( &sie->si_bindconf );
3760 if ( sie->si_filterstr.bv_val ) {
3761 ch_free( sie->si_filterstr.bv_val );
3763 if ( sie->si_logfilterstr.bv_val ) {
3764 ch_free( sie->si_logfilterstr.bv_val );
3766 if ( sie->si_base.bv_val ) {
3767 ch_free( sie->si_base.bv_val );
3769 if ( sie->si_logbase.bv_val ) {
3770 ch_free( sie->si_logbase.bv_val );
3772 if ( sie->si_be && SLAP_SYNC_SUBENTRY( sie->si_be )) {
3773 ch_free( sie->si_contextdn.bv_val );
3775 if ( sie->si_attrs ) {
3777 while ( sie->si_attrs[i] != NULL ) {
3778 ch_free( sie->si_attrs[i] );
3781 ch_free( sie->si_attrs );
3783 if ( sie->si_exattrs ) {
3785 while ( sie->si_exattrs[i] != NULL ) {
3786 ch_free( sie->si_exattrs[i] );
3789 ch_free( sie->si_exattrs );
3791 if ( sie->si_anlist ) {
3793 while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
3794 ch_free( sie->si_anlist[i].an_name.bv_val );
3797 ch_free( sie->si_anlist );
3799 if ( sie->si_exanlist ) {
3801 while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
3802 ch_free( sie->si_exanlist[i].an_name.bv_val );
3805 ch_free( sie->si_exanlist );
3807 if ( sie->si_retryinterval ) {
3808 ch_free( sie->si_retryinterval );
3810 if ( sie->si_retrynum ) {
3811 ch_free( sie->si_retrynum );
3813 if ( sie->si_retrynum_init ) {
3814 ch_free( sie->si_retrynum_init );
3816 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
3817 if ( sie->si_presentlist ) {
3818 avl_free( sie->si_presentlist, ch_free );
3820 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
3821 struct nonpresent_entry* npe;
3822 npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
3823 LDAP_LIST_REMOVE( npe, npe_link );
3824 if ( npe->npe_name ) {
3825 if ( npe->npe_name->bv_val ) {
3826 ch_free( npe->npe_name->bv_val );
3828 ch_free( npe->npe_name );
3830 if ( npe->npe_nname ) {
3831 if ( npe->npe_nname->bv_val ) {
3832 ch_free( npe->npe_nname->bv_val );
3834 ch_free( npe->npe_nname );
3838 if ( sie->si_cookieState ) {
3839 sie->si_cookieState->cs_ref--;
3840 if ( !sie->si_cookieState->cs_ref ) {
3841 ch_free( sie->si_cookieState->cs_sids );
3842 ber_bvarray_free( sie->si_cookieState->cs_vals );
3843 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
3844 ch_free( sie->si_cookieState->cs_psids );
3845 ber_bvarray_free( sie->si_cookieState->cs_pvals );
3846 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_pmutex );
3847 ch_free( sie->si_cookieState );
3852 } while ( free_all && si_next );
3857 /* NOTE: used & documented in slapd.conf(5) */
3859 #define PROVIDERSTR "provider"
3860 #define SCHEMASTR "schemachecking"
3861 #define FILTERSTR "filter"
3862 #define SEARCHBASESTR "searchbase"
3863 #define SCOPESTR "scope"
3864 #define ATTRSONLYSTR "attrsonly"
3865 #define ATTRSSTR "attrs"
3866 #define TYPESTR "type"
3867 #define INTERVALSTR "interval"
3868 #define RETRYSTR "retry"
3869 #define SLIMITSTR "sizelimit"
3870 #define TLIMITSTR "timelimit"
3871 #define SYNCDATASTR "syncdata"
3872 #define LOGBASESTR "logbase"
3873 #define LOGFILTERSTR "logfilter"
3875 /* FIXME: undocumented */
3876 #define EXATTRSSTR "exattrs"
3877 #define MANAGEDSAITSTR "manageDSAit"
3881 GOT_RID = 0x00000001U,
3882 GOT_PROVIDER = 0x00000002U,
3883 GOT_SCHEMACHECKING = 0x00000004U,
3884 GOT_FILTER = 0x00000008U,
3885 GOT_SEARCHBASE = 0x00000010U,
3886 GOT_SCOPE = 0x00000020U,
3887 GOT_ATTRSONLY = 0x00000040U,
3888 GOT_ATTRS = 0x00000080U,
3889 GOT_TYPE = 0x00000100U,
3890 GOT_INTERVAL = 0x00000200U,
3891 GOT_RETRY = 0x00000400U,
3892 GOT_SLIMIT = 0x00000800U,
3893 GOT_TLIMIT = 0x00001000U,
3894 GOT_SYNCDATA = 0x00002000U,
3895 GOT_LOGBASE = 0x00004000U,
3896 GOT_LOGFILTER = 0x00008000U,
3897 GOT_EXATTRS = 0x00010000U,
3898 GOT_MANAGEDSAIT = 0x00020000U,
3899 GOT_BINDCONF = 0x00040000U,
3902 GOT_REQUIRED = (GOT_RID|GOT_PROVIDER|GOT_SEARCHBASE)
3905 static slap_verbmasks datamodes[] = {
3906 { BER_BVC("default"), SYNCDATA_DEFAULT },
3907 { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
3908 { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
3913 parse_syncrepl_retry(
3920 int use_default = 0;
3922 char *val = arg + STRLENOF( RETRYSTR "=" );
3923 if ( strcasecmp( val, "undefined" ) == 0 ) {
3928 retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
3929 retry_list[0] = NULL;
3931 slap_str2clist( &retry_list, val, " ,\t" );
3933 for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3936 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3937 "Error: incomplete syncrepl retry list" );
3938 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3939 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3940 ch_free( retry_list[k] );
3942 ch_free( retry_list );
3945 si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
3946 si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
3947 si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
3948 for ( j = 0; j < n; j++ ) {
3950 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3951 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3952 "Error: invalid retry interval \"%s\" (#%d)",
3953 retry_list[j*2], j );
3954 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3955 /* do some cleanup */
3958 si->si_retryinterval[j] = (time_t)t;
3959 if ( *retry_list[j*2+1] == '+' ) {
3960 si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3961 si->si_retrynum[j] = RETRYNUM_FOREVER;
3965 if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3966 || si->si_retrynum_init[j] <= 0 )
3968 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3969 "Error: invalid initial retry number \"%s\" (#%d)",
3970 retry_list[j*2+1], j );
3971 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3972 /* do some cleanup */
3975 if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3976 || si->si_retrynum[j] <= 0 )
3978 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3979 "Error: invalid retry number \"%s\" (#%d)",
3980 retry_list[j*2+1], j );
3981 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3982 /* do some cleanup */
3987 if ( j < 1 || si->si_retrynum_init[j-1] != RETRYNUM_FOREVER ) {
3988 Debug( LDAP_DEBUG_CONFIG,
3989 "%s: syncrepl will eventually stop retrying; the \"retry\" parameter should end with a '+'.\n",
3993 si->si_retrynum_init[j] = RETRYNUM_TAIL;
3994 si->si_retrynum[j] = RETRYNUM_TAIL;
3995 si->si_retryinterval[j] = 0;
3997 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3998 ch_free( retry_list[k] );
4000 ch_free( retry_list );
4001 if ( !use_default ) {
4002 si->si_got |= GOT_RETRY;
4009 parse_syncrepl_line(
4016 for ( i = 1; i < c->argc; i++ ) {
4017 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
4018 STRLENOF( IDSTR "=" ) ) )
4021 /* '\0' string terminator accounts for '=' */
4022 val = c->argv[ i ] + STRLENOF( IDSTR "=" );
4023 if ( lutil_atoi( &tmp, val ) != 0 ) {
4024 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4025 "Error: parse_syncrepl_line: "
4026 "unable to parse syncrepl id \"%s\"", val );
4027 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4030 if ( tmp > SLAP_SYNC_SID_MAX || tmp < 0 ) {
4031 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4032 "Error: parse_syncrepl_line: "
4033 "syncrepl id %d is out of range [0..4095]", tmp );
4034 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4038 sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
4039 si->si_got |= GOT_RID;
4040 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
4041 STRLENOF( PROVIDERSTR "=" ) ) )
4043 val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
4044 ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
4045 si->si_got |= GOT_PROVIDER;
4046 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
4047 STRLENOF( SCHEMASTR "=" ) ) )
4049 val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
4050 if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
4051 si->si_schemachecking = 1;
4052 } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
4053 si->si_schemachecking = 0;
4055 si->si_schemachecking = 1;
4057 si->si_got |= GOT_SCHEMACHECKING;
4058 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
4059 STRLENOF( FILTERSTR "=" ) ) )
4061 val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
4062 if ( si->si_filterstr.bv_val )
4063 ch_free( si->si_filterstr.bv_val );
4064 ber_str2bv( val, 0, 1, &si->si_filterstr );
4065 si->si_got |= GOT_FILTER;
4066 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
4067 STRLENOF( LOGFILTERSTR "=" ) ) )
4069 val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
4070 if ( si->si_logfilterstr.bv_val )
4071 ch_free( si->si_logfilterstr.bv_val );
4072 ber_str2bv( val, 0, 1, &si->si_logfilterstr );
4073 si->si_got |= GOT_LOGFILTER;
4074 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
4075 STRLENOF( SEARCHBASESTR "=" ) ) )
4080 val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
4081 if ( si->si_base.bv_val ) {
4082 ch_free( si->si_base.bv_val );
4084 ber_str2bv( val, 0, 0, &bv );
4085 rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
4086 if ( rc != LDAP_SUCCESS ) {
4087 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4088 "Invalid base DN \"%s\": %d (%s)",
4089 val, rc, ldap_err2string( rc ) );
4090 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4093 if ( !be_issubordinate( c->be, &si->si_base ) ) {
4094 ch_free( si->si_base.bv_val );
4095 BER_BVZERO( &si->si_base );
4096 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4097 "Base DN \"%s\" is not within the database naming context",
4099 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4102 si->si_got |= GOT_SEARCHBASE;
4103 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
4104 STRLENOF( LOGBASESTR "=" ) ) )
4109 val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
4110 if ( si->si_logbase.bv_val ) {
4111 ch_free( si->si_logbase.bv_val );
4113 ber_str2bv( val, 0, 0, &bv );
4114 rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
4115 if ( rc != LDAP_SUCCESS ) {
4116 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4117 "Invalid logbase DN \"%s\": %d (%s)",
4118 val, rc, ldap_err2string( rc ) );
4119 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4122 si->si_got |= GOT_LOGBASE;
4123 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
4124 STRLENOF( SCOPESTR "=" ) ) )
4127 val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
4128 j = ldap_pvt_str2scope( val );
4130 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4131 "Error: parse_syncrepl_line: "
4132 "unknown scope \"%s\"", val);
4133 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4137 si->si_got |= GOT_SCOPE;
4138 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
4139 STRLENOF( ATTRSONLYSTR ) ) )
4141 si->si_attrsonly = 1;
4142 si->si_got |= GOT_ATTRSONLY;
4143 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
4144 STRLENOF( ATTRSSTR "=" ) ) )
4146 val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
4147 if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4149 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4150 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
4151 if ( si->si_anlist == NULL ) {
4152 ch_free( attr_fname );
4155 si->si_anfile = attr_fname;
4157 char *str, *s, *next;
4158 const char *delimstr = " ,\t";
4159 str = ch_strdup( val );
4160 for ( s = ldap_pvt_strtok( str, delimstr, &next );
4162 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
4164 if ( strlen(s) == 1 && *s == '*' ) {
4165 si->si_allattrs = 1;
4166 val[ s - str ] = delimstr[0];
4168 if ( strlen(s) == 1 && *s == '+' ) {
4169 si->si_allopattrs = 1;
4170 val [ s - str ] = delimstr[0];
4174 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
4175 if ( si->si_anlist == NULL ) {
4179 si->si_got |= GOT_ATTRS;
4180 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
4181 STRLENOF( EXATTRSSTR "=" ) ) )
4183 val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
4184 if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4186 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4187 si->si_exanlist = file2anlist(
4188 si->si_exanlist, attr_fname, " ,\t" );
4189 if ( si->si_exanlist == NULL ) {
4190 ch_free( attr_fname );
4193 ch_free( attr_fname );
4195 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
4196 if ( si->si_exanlist == NULL ) {
4200 si->si_got |= GOT_EXATTRS;
4201 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
4202 STRLENOF( TYPESTR "=" ) ) )
4204 val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
4205 if ( !strncasecmp( val, "refreshOnly",
4206 STRLENOF("refreshOnly") ) )
4208 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4209 } else if ( !strncasecmp( val, "refreshAndPersist",
4210 STRLENOF("refreshAndPersist") ) )
4212 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
4213 si->si_interval = 60;
4215 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4216 "Error: parse_syncrepl_line: "
4217 "unknown sync type \"%s\"", val);
4218 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4221 si->si_got |= GOT_TYPE;
4222 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
4223 STRLENOF( INTERVALSTR "=" ) ) )
4225 val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
4226 if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
4227 si->si_interval = 0;
4228 } else if ( strchr( val, ':' ) != NULL ) {
4229 char *next, *ptr = val;
4232 dd = strtol( ptr, &next, 10 );
4233 if ( next == ptr || next[0] != ':' || dd < 0 ) {
4234 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4235 "Error: parse_syncrepl_line: "
4236 "invalid interval \"%s\", unable to parse days", val );
4237 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4241 hh = strtol( ptr, &next, 10 );
4242 if ( next == ptr || next[0] != ':' || hh < 0 || hh > 24 ) {
4243 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4244 "Error: parse_syncrepl_line: "
4245 "invalid interval \"%s\", unable to parse hours", val );
4246 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4250 mm = strtol( ptr, &next, 10 );
4251 if ( next == ptr || next[0] != ':' || mm < 0 || mm > 60 ) {
4252 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4253 "Error: parse_syncrepl_line: "
4254 "invalid interval \"%s\", unable to parse minutes", val );
4255 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4259 ss = strtol( ptr, &next, 10 );
4260 if ( next == ptr || next[0] != '\0' || ss < 0 || ss > 60 ) {
4261 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4262 "Error: parse_syncrepl_line: "
4263 "invalid interval \"%s\", unable to parse seconds", val );
4264 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4267 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
4271 if ( lutil_parse_time( val, &t ) != 0 ) {
4272 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4273 "Error: parse_syncrepl_line: "
4274 "invalid interval \"%s\"", val );
4275 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4278 si->si_interval = (time_t)t;
4280 if ( si->si_interval < 0 ) {
4281 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4282 "Error: parse_syncrepl_line: "
4283 "invalid interval \"%ld\"",
4284 (long) si->si_interval);
4285 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4288 si->si_got |= GOT_INTERVAL;
4289 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
4290 STRLENOF( RETRYSTR "=" ) ) )
4292 if ( parse_syncrepl_retry( c, c->argv[ i ], si ) ) {
4295 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
4296 STRLENOF( MANAGEDSAITSTR "=" ) ) )
4298 val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
4299 if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
4300 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
4302 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4303 "invalid manageDSAit value \"%s\".\n",
4305 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4308 si->si_got |= GOT_MANAGEDSAIT;
4309 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
4310 STRLENOF( SLIMITSTR "=") ) )
4312 val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
4313 if ( strcasecmp( val, "unlimited" ) == 0 ) {
4316 } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
4317 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4318 "invalid size limit value \"%s\".\n",
4320 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4323 si->si_got |= GOT_SLIMIT;
4324 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
4325 STRLENOF( TLIMITSTR "=" ) ) )
4327 val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
4328 if ( strcasecmp( val, "unlimited" ) == 0 ) {
4331 } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
4332 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4333 "invalid time limit value \"%s\".\n",
4335 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4338 si->si_got |= GOT_TLIMIT;
4339 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
4340 STRLENOF( SYNCDATASTR "=" ) ) )
4342 val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
4343 si->si_syncdata = verb_to_mask( val, datamodes );
4344 si->si_got |= GOT_SYNCDATA;
4345 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
4346 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4347 "Error: parse_syncrepl_line: "
4348 "unable to parse \"%s\"\n", c->argv[ i ] );
4349 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4352 si->si_got |= GOT_BINDCONF;
4355 if ( ( si->si_got & GOT_REQUIRED ) != GOT_REQUIRED ) {
4356 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4357 "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
4358 si->si_got & GOT_RID ? "" : " "IDSTR,
4359 si->si_got & GOT_PROVIDER ? "" : " "PROVIDERSTR,
4360 si->si_got & GOT_SEARCHBASE ? "" : " "SEARCHBASESTR );
4361 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4365 if ( !( si->si_got & GOT_RETRY ) ) {
4366 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": no retry defined, using default\n",
4367 si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", 0 );
4368 if ( si->si_retryinterval == NULL ) {
4369 if ( parse_syncrepl_retry( c, "retry=undefined", si ) ) {
4385 if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
4386 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
4387 "operations required for syncrepl", c->be->be_type );
4388 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4391 if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
4392 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
4393 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
4396 si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
4399 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
4403 si->si_bindconf.sb_tls = SB_TLS_OFF;
4404 si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
4405 si->si_schemachecking = 0;
4406 ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
4407 &si->si_filterstr );
4408 si->si_base.bv_val = NULL;
4409 si->si_scope = LDAP_SCOPE_SUBTREE;
4410 si->si_attrsonly = 0;
4411 si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4412 si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
4413 si->si_attrs = NULL;
4414 si->si_allattrs = 0;
4415 si->si_allopattrs = 0;
4416 si->si_exattrs = NULL;
4417 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4418 si->si_interval = 86400;
4419 si->si_retryinterval = NULL;
4420 si->si_retrynum_init = NULL;
4421 si->si_retrynum = NULL;
4422 si->si_manageDSAit = 0;
4426 si->si_presentlist = NULL;
4427 LDAP_LIST_INIT( &si->si_nonpresentlist );
4428 ldap_pvt_thread_mutex_init( &si->si_mutex );
4430 rc = parse_syncrepl_line( c, si );
4435 /* Must be LDAPv3 because we need controls */
4436 switch ( si->si_bindconf.sb_version ) {
4438 /* not explicitly set */
4439 si->si_bindconf.sb_version = LDAP_VERSION3;
4442 /* explicitly set */
4445 Debug( LDAP_DEBUG_ANY,
4446 "version %d incompatible with syncrepl\n",
4447 si->si_bindconf.sb_version, 0, 0 );
4448 syncinfo_free( si, 0 );
4452 if ( ldap_url_parse( si->si_bindconf.sb_uri.bv_val, &lud )) {
4453 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4454 "<%s> invalid URL", c->argv[0] );
4455 Debug( LDAP_DEBUG_ANY, "%s: %s %s\n",
4456 c->log, c->cr_msg, si->si_bindconf.sb_uri.bv_val );
4461 if ( slapMode & SLAP_SERVER_MODE ) {
4463 /* check if consumer points to current server and database.
4464 * If so, ignore this configuration.
4466 if ( !SLAP_DBHIDDEN( c->be ) ) {
4468 /* if searchbase doesn't match current DB suffix,
4469 * assume it's different
4471 for ( i=0; !BER_BVISNULL( &c->be->be_nsuffix[i] ); i++ ) {
4472 if ( bvmatch( &si->si_base, &c->be->be_nsuffix[i] )) {
4477 /* if searchbase matches, see if URLs match */
4478 if ( isMe && config_check_my_url( si->si_bindconf.sb_uri.bv_val,
4484 init_syncrepl( si );
4485 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4486 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
4487 si->si_interval, do_syncrepl, si, "do_syncrepl",
4489 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4491 rc = config_sync_shadow( c ) ? -1 : 0;
4496 /* mirrormode still needs to see this flag in tool mode */
4497 rc = config_sync_shadow( c ) ? -1 : 0;
4499 ldap_free_urldesc( lud );
4503 /* Use main slapd defaults */
4504 bindconf_tls_defaults( &si->si_bindconf );
4507 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
4508 syncinfo_free( si, 0 );
4511 Debug( LDAP_DEBUG_CONFIG,
4512 "Config: ** successfully added syncrepl \"%s\"\n",
4513 BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
4514 "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
4515 if ( c->be->be_syncinfo ) {
4518 si->si_cookieState = c->be->be_syncinfo->si_cookieState;
4520 /* add new syncrepl to end of list (same order as when deleting) */
4521 for ( sip = c->be->be_syncinfo; sip->si_next; sip = sip->si_next );
4524 si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
4525 ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
4526 ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_pmutex );
4528 c->be->be_syncinfo = si;
4530 si->si_cookieState->cs_ref++;
4539 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
4541 struct berval bc, uri, bs;
4542 char buf[BUFSIZ*2], *ptr;
4545 # define WHATSLEFT ((ber_len_t) (&buf[sizeof( buf )] - ptr))
4549 /* temporarily inhibit bindconf from printing URI */
4550 uri = si->si_bindconf.sb_uri;
4551 BER_BVZERO( &si->si_bindconf.sb_uri );
4552 si->si_bindconf.sb_version = 0;
4553 bindconf_unparse( &si->si_bindconf, &bc );
4554 si->si_bindconf.sb_uri = uri;
4555 si->si_bindconf.sb_version = LDAP_VERSION3;
4558 assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_SID_MAX );
4559 len = snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
4560 si->si_rid, si->si_bindconf.sb_uri.bv_val );
4561 if ( len >= sizeof( buf ) ) return;
4563 if ( !BER_BVISNULL( &bc ) ) {
4564 if ( WHATSLEFT <= bc.bv_len ) {
4568 ptr = lutil_strcopy( ptr, bc.bv_val );
4571 if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
4572 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
4573 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
4574 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
4577 if ( !BER_BVISNULL( &si->si_base ) ) {
4578 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
4579 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
4580 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
4583 if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
4584 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
4585 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
4586 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
4589 if ( !BER_BVISNULL( &si->si_logbase ) ) {
4590 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
4591 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
4592 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
4595 if ( ldap_pvt_scope2bv( si->si_scope, &bs ) == LDAP_SUCCESS ) {
4596 if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + bs.bv_len ) return;
4597 ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
4598 ptr = lutil_strcopy( ptr, bs.bv_val );
4600 if ( si->si_attrsonly ) {
4601 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4602 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
4604 if ( si->si_anfile ) {
4605 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
4606 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
4607 ptr = lutil_strcopy( ptr, si->si_anfile );
4609 } else if ( si->si_allattrs || si->si_allopattrs ||
4610 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
4614 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
4615 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
4617 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
4618 if ( ptr == NULL ) return;
4619 if ( si->si_allattrs ) {
4620 if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
4621 if ( old != ptr ) *ptr++ = ',';
4624 if ( si->si_allopattrs ) {
4625 if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
4626 if ( old != ptr ) *ptr++ = ',';
4631 if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
4632 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
4633 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
4634 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
4635 if ( ptr == NULL ) return;
4637 if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
4638 ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
4639 ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
4641 if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
4642 ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
4643 ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
4644 "refreshAndPersist" : "refreshOnly" );
4646 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
4649 dd = si->si_interval;
4656 len = snprintf( ptr, WHATSLEFT, " %s=%02d:%02d:%02d:%02d",
4657 INTERVALSTR, dd, hh, mm, ss );
4658 if ( len >= WHATSLEFT ) return;
4662 if ( si->si_got & GOT_RETRY ) {
4663 const char *space = "";
4664 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
4665 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
4666 for (i=0; si->si_retryinterval[i]; i++) {
4667 len = snprintf( ptr, WHATSLEFT, "%s%ld ", space,
4668 (long) si->si_retryinterval[i] );
4670 if ( WHATSLEFT - 1 <= len ) return;
4672 if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
4675 len = snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
4676 if ( WHATSLEFT <= len ) return;
4680 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
4683 ptr = lutil_strcopy( ptr, " " RETRYSTR "=undefined" );
4686 if ( si->si_slimit ) {
4687 len = snprintf( ptr, WHATSLEFT, " " SLIMITSTR "=%d", si->si_slimit );
4688 if ( WHATSLEFT <= len ) return;
4692 if ( si->si_tlimit ) {
4693 len = snprintf( ptr, WHATSLEFT, " " TLIMITSTR "=%d", si->si_tlimit );
4694 if ( WHATSLEFT <= len ) return;
4698 if ( si->si_syncdata ) {
4699 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
4700 if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
4701 ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
4702 ptr = lutil_strcopy( ptr, bc.bv_val );
4705 bc.bv_len = ptr - buf;
4707 ber_dupbv( bv, &bc );
4711 syncrepl_config( ConfigArgs *c )
4713 if (c->op == SLAP_CONFIG_EMIT) {
4714 if ( c->be->be_syncinfo ) {
4718 for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
4719 syncrepl_unparse( si, &bv );
4720 ber_bvarray_add( &c->rvalue_vals, &bv );
4725 } else if ( c->op == LDAP_MOD_DELETE ) {
4727 if ( c->be->be_syncinfo ) {
4728 syncinfo_t *si, **sip;
4731 for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
4733 if ( c->valx == -1 || i == c->valx ) {
4735 /* If the task is currently active, we have to leave
4736 * it running. It will exit on its own. This will only
4737 * happen when running on the cn=config DB.
4740 if ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
4743 if ( si->si_conn ) {
4744 /* If there's a persistent connection, it may
4745 * already have a thread queued. We know it's
4746 * not active, so it must be pending and we
4747 * can simply cancel it now.
4749 ldap_pvt_thread_pool_retract( &connection_pool,
4750 si->si_re->routine, si->si_re );
4752 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
4759 syncinfo_free( si, 0 );
4768 if ( !c->be->be_syncinfo ) {
4769 SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_SHADOW_MASK;
4773 if ( SLAP_SLURP_SHADOW( c->be ) ) {
4774 Debug(LDAP_DEBUG_ANY, "%s: "
4775 "syncrepl: database already shadowed.\n",
4779 return add_syncrepl( c );