]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
5fe320d99e33a660817dc14f0a22cc37f820d691
[openldap] / servers / slapd / syncrepl.c
1 /* syncrepl.c -- Replication Engine which uses the LDAP Sync protocol */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2003-2013 The OpenLDAP Foundation.
6  * Portions Copyright 2003 by IBM Corporation.
7  * Portions Copyright 2003-2008 by Howard Chu, Symas Corporation.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
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>.
17  */
18
19 #include "portable.h"
20
21 #include <stdio.h>
22
23 #include <ac/string.h>
24 #include <ac/socket.h>
25
26 #include "lutil.h"
27 #include "slap.h"
28 #include "lutil_ldap.h"
29
30 #include "config.h"
31
32 #include "ldap_rq.h"
33
34 #ifdef ENABLE_REWRITE
35 #include "rewrite.h"
36 #define SUFFIXM_CTX     "<suffix massage>"
37 #endif
38
39 struct nonpresent_entry {
40         struct berval *npe_name;
41         struct berval *npe_nname;
42         LDAP_LIST_ENTRY(nonpresent_entry) npe_link;
43 };
44
45 typedef struct cookie_state {
46         ldap_pvt_thread_mutex_t cs_mutex;
47         struct berval *cs_vals;
48         int *cs_sids;
49         int     cs_num;
50         int cs_age;
51         int cs_ref;
52
53         /* pending changes, not yet committed */
54         ldap_pvt_thread_mutex_t cs_pmutex;
55         struct berval *cs_pvals;
56         int *cs_psids;
57         int     cs_pnum;
58 } cookie_state;
59
60 #define SYNCDATA_DEFAULT        0       /* entries are plain LDAP entries */
61 #define SYNCDATA_ACCESSLOG      1       /* entries are accesslog format */
62 #define SYNCDATA_CHANGELOG      2       /* entries are changelog format */
63
64 #define SYNCLOG_LOGGING         0       /* doing a log-based update */
65 #define SYNCLOG_FALLBACK        1       /* doing a full refresh */
66
67 #define RETRYNUM_FOREVER        (-1)    /* retry forever */
68 #define RETRYNUM_TAIL           (-2)    /* end of retrynum array */
69 #define RETRYNUM_VALID(n)       ((n) >= RETRYNUM_FOREVER)       /* valid retrynum */
70 #define RETRYNUM_FINITE(n)      ((n) > RETRYNUM_FOREVER)        /* not forever */
71
72 typedef struct syncinfo_s {
73         struct syncinfo_s       *si_next;
74         BackendDB               *si_be;
75         BackendDB               *si_wbe;
76         struct re_s             *si_re;
77         int                     si_rid;
78         char                    si_ridtxt[ STRLENOF("rid=999") + 1 ];
79         slap_bindconf           si_bindconf;
80         struct berval           si_base;
81         struct berval           si_logbase;
82         struct berval           si_filterstr;
83         Filter                  *si_filter;
84         struct berval           si_logfilterstr;
85         struct berval           si_contextdn;
86         int                     si_scope;
87         int                     si_attrsonly;
88         char                    *si_anfile;
89         AttributeName           *si_anlist;
90         AttributeName           *si_exanlist;
91         char                    **si_attrs;
92         char                    **si_exattrs;
93         int                     si_allattrs;
94         int                     si_allopattrs;
95         int                     si_schemachecking;
96         int                     si_type;        /* the active type */
97         int                     si_ctype;       /* the configured type */
98         time_t                  si_interval;
99         time_t                  *si_retryinterval;
100         int                     *si_retrynum_init;
101         int                     *si_retrynum;
102         struct sync_cookie      si_syncCookie;
103         cookie_state            *si_cookieState;
104         int                     si_cookieAge;
105         int                     si_manageDSAit;
106         int                     si_slimit;
107         int                     si_tlimit;
108         int                     si_refreshDelete;
109         int                     si_refreshPresent;
110         int                     si_refreshDone;
111         int                     si_syncdata;
112         int                     si_logstate;
113         int                     si_got;
114         int                     si_strict_refresh;      /* stop listening during fallback refresh */
115         int                     si_too_old;
116         ber_int_t       si_msgid;
117         Avlnode                 *si_presentlist;
118         LDAP                    *si_ld;
119         Connection              *si_conn;
120         LDAP_LIST_HEAD(np, nonpresent_entry)    si_nonpresentlist;
121 #ifdef ENABLE_REWRITE
122         struct rewrite_info *si_rewrite;
123         struct berval   si_suffixm;
124 #endif
125         ldap_pvt_thread_mutex_t si_mutex;
126 } syncinfo_t;
127
128 static int syncuuid_cmp( const void *, const void * );
129 static int avl_presentlist_insert( syncinfo_t* si, struct berval *syncUUID );
130 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray, struct sync_cookie *, int );
131 static int syncrepl_message_to_op(
132                                         syncinfo_t *, Operation *, LDAPMessage * );
133 static int syncrepl_message_to_entry(
134                                         syncinfo_t *, Operation *, LDAPMessage *,
135                                         Modifications **, Entry **, int, struct berval* );
136 static int syncrepl_entry(
137                                         syncinfo_t *, Operation*, Entry*,
138                                         Modifications**,int, struct berval*,
139                                         struct berval *cookieCSN );
140 static int syncrepl_updateCookie(
141                                         syncinfo_t *, Operation *,
142                                         struct sync_cookie * );
143 static struct berval * slap_uuidstr_from_normalized(
144                                         struct berval *, struct berval *, void * );
145 static int syncrepl_add_glue_ancestors(
146         Operation* op, Entry *e );
147
148 /* delta-mmr overlay handler */
149 static int syncrepl_op_modify( Operation *op, SlapReply *rs );
150
151 /* callback functions */
152 static int dn_callback( Operation *, SlapReply * );
153 static int nonpresent_callback( Operation *, SlapReply * );
154 static int null_callback( Operation *, SlapReply * );
155
156 static AttributeDescription *sync_descs[4];
157
158 /* delta-mmr */
159 static AttributeDescription *ad_reqMod, *ad_reqDN;
160
161 typedef struct logschema {
162         struct berval ls_dn;
163         struct berval ls_req;
164         struct berval ls_mod;
165         struct berval ls_newRdn;
166         struct berval ls_delRdn;
167         struct berval ls_newSup;
168 } logschema;
169
170 static logschema changelog_sc = {
171         BER_BVC("targetDN"),
172         BER_BVC("changeType"),
173         BER_BVC("changes"),
174         BER_BVC("newRDN"),
175         BER_BVC("deleteOldRDN"),
176         BER_BVC("newSuperior")
177 };
178
179 static logschema accesslog_sc = {
180         BER_BVC("reqDN"),
181         BER_BVC("reqType"),
182         BER_BVC("reqMod"),
183         BER_BVC("reqNewRDN"),
184         BER_BVC("reqDeleteOldRDN"),
185         BER_BVC("reqNewSuperior")
186 };
187
188 static const char *
189 syncrepl_state2str( int state )
190 {
191         switch ( state ) {
192         case LDAP_SYNC_PRESENT:
193                 return "PRESENT";
194
195         case LDAP_SYNC_ADD:
196                 return "ADD";
197
198         case LDAP_SYNC_MODIFY:
199                 return "MODIFY";
200
201         case LDAP_SYNC_DELETE:
202                 return "DELETE";
203         }
204
205         return "UNKNOWN";
206 }
207
208 static slap_overinst syncrepl_ov;
209
210 static void
211 init_syncrepl(syncinfo_t *si)
212 {
213         int i, j, k, l, n;
214         char **attrs, **exattrs;
215
216         if ( !syncrepl_ov.on_bi.bi_type ) {
217                 syncrepl_ov.on_bi.bi_type = "syncrepl";
218                 syncrepl_ov.on_bi.bi_op_modify = syncrepl_op_modify;
219                 overlay_register( &syncrepl_ov );
220         }
221
222         /* delta-MMR needs the overlay, nothing else does.
223          * This must happen before accesslog overlay is configured.
224          */
225         if ( si->si_syncdata &&
226                 !overlay_is_inst( si->si_be, syncrepl_ov.on_bi.bi_type )) {
227                 overlay_config( si->si_be, syncrepl_ov.on_bi.bi_type, -1, NULL, NULL );
228                 if ( !ad_reqMod ) {
229                         const char *text;
230                         logschema *ls = &accesslog_sc;
231
232                         slap_bv2ad( &ls->ls_mod, &ad_reqMod, &text );
233                         slap_bv2ad( &ls->ls_dn, &ad_reqDN, &text );
234                 }
235         }
236
237         if ( !sync_descs[0] ) {
238                 sync_descs[0] = slap_schema.si_ad_objectClass;
239                 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
240                 sync_descs[2] = slap_schema.si_ad_entryCSN;
241                 sync_descs[3] = NULL;
242         }
243
244         if ( si->si_allattrs && si->si_allopattrs )
245                 attrs = NULL;
246         else
247                 attrs = anlist2attrs( si->si_anlist );
248
249         if ( attrs ) {
250                 if ( si->si_allattrs ) {
251                         i = 0;
252                         while ( attrs[i] ) {
253                                 if ( !is_at_operational( at_find( attrs[i] ) ) ) {
254                                         for ( j = i; attrs[j] != NULL; j++ ) {
255                                                 if ( j == i )
256                                                         ch_free( attrs[i] );
257                                                 attrs[j] = attrs[j+1];
258                                         }
259                                 } else {
260                                         i++;
261                                 }
262                         }
263                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
264                         attrs[i] = ch_strdup("*");
265                         attrs[i + 1] = NULL;
266
267                 } else if ( si->si_allopattrs ) {
268                         i = 0;
269                         while ( attrs[i] ) {
270                                 if ( is_at_operational( at_find( attrs[i] ) ) ) {
271                                         for ( j = i; attrs[j] != NULL; j++ ) {
272                                                 if ( j == i )
273                                                         ch_free( attrs[i] );
274                                                 attrs[j] = attrs[j+1];
275                                         }
276                                 } else {
277                                         i++;
278                                 }
279                         }
280                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
281                         attrs[i] = ch_strdup("+");
282                         attrs[i + 1] = NULL;
283                 }
284
285                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
286                         j = 0;
287                         while ( attrs[j] ) {
288                                 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
289                                         for ( k = j; attrs[k] != NULL; k++ ) {
290                                                 if ( k == j )
291                                                         ch_free( attrs[k] );
292                                                 attrs[k] = attrs[k+1];
293                                         }
294                                 } else {
295                                         j++;
296                                 }
297                         }
298                 }
299
300                 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
301
302                 if ( si->si_allopattrs ) {
303                         attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ) );
304                 } else {
305                         attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ) );
306                 }
307
308                 /* Add Attributes */
309                 if ( si->si_allopattrs ) {
310                         attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
311                 } else {
312                         for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
313                                 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
314                         }
315                 }
316                 attrs[ n ] = NULL;
317
318         } else {
319
320                 i = 0;
321                 if ( si->si_allattrs == si->si_allopattrs ) {
322                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
323                         attrs[i++] = ch_strdup( "*" );
324                         attrs[i++] = ch_strdup( "+" );
325                 } else if ( si->si_allattrs && !si->si_allopattrs ) {
326                         for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
327                         attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
328                         attrs[i++] = ch_strdup( "*" );
329                         for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
330                                 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
331                         }
332                 } else if ( !si->si_allattrs && si->si_allopattrs ) {
333                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
334                         attrs[i++] = ch_strdup( "+" );
335                         attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
336                 }
337                 attrs[i] = NULL;
338         }
339         
340         si->si_attrs = attrs;
341
342         exattrs = anlist2attrs( si->si_exanlist );
343
344         if ( exattrs ) {
345                 for ( n = 0; exattrs[n] != NULL; n++ ) ;
346
347                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
348                         j = 0;
349                         while ( exattrs[j] != NULL ) {
350                                 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
351                                         ch_free( exattrs[j] );
352                                         for ( k = j; exattrs[k] != NULL; k++ ) {
353                                                 exattrs[k] = exattrs[k+1];
354                                         }
355                                 } else {
356                                         j++;
357                                 }
358                         }
359                 }
360
361                 for ( i = 0; exattrs[i] != NULL; i++ ) {
362                         for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
363                                 ObjectClass     *oc;
364                                 if ( ( oc = si->si_anlist[j].an_oc ) ) {
365                                         k = 0;
366                                         while ( oc->soc_required[k] ) {
367                                                 if ( !strcmp( exattrs[i],
368                                                          oc->soc_required[k]->sat_cname.bv_val ) ) {
369                                                         ch_free( exattrs[i] );
370                                                         for ( l = i; exattrs[l]; l++ ) {
371                                                                 exattrs[l] = exattrs[l+1];
372                                                         }
373                                                 } else {
374                                                         k++;
375                                                 }
376                                         }
377                                 }
378                         }
379                 }
380
381                 for ( i = 0; exattrs[i] != NULL; i++ ) ;
382
383                 if ( i != n )
384                         exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *) );
385         }
386
387         si->si_exattrs = exattrs;       
388 }
389
390 static int
391 ldap_sync_search(
392         syncinfo_t *si,
393         void *ctx )
394 {
395         BerElementBuffer berbuf;
396         BerElement *ber = (BerElement *)&berbuf;
397         LDAPControl c[3], *ctrls[4];
398         int rc;
399         int rhint;
400         char *base;
401         char **attrs, *lattrs[8];
402         char *filter;
403         int attrsonly;
404         int scope;
405
406         /* setup LDAP SYNC control */
407         ber_init2( ber, NULL, LBER_USE_DER );
408         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
409
410         /* If we're using a log but we have no state, then fallback to
411          * normal mode for a full refresh.
412          */
413         if ( si->si_syncdata && !si->si_syncCookie.numcsns ) {
414                 si->si_logstate = SYNCLOG_FALLBACK;
415         }
416
417         /* Use the log parameters if we're in log mode */
418         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
419                 logschema *ls;
420                 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
421                         ls = &accesslog_sc;
422                 else
423                         ls = &changelog_sc;
424                 lattrs[0] = ls->ls_dn.bv_val;
425                 lattrs[1] = ls->ls_req.bv_val;
426                 lattrs[2] = ls->ls_mod.bv_val;
427                 lattrs[3] = ls->ls_newRdn.bv_val;
428                 lattrs[4] = ls->ls_delRdn.bv_val;
429                 lattrs[5] = ls->ls_newSup.bv_val;
430                 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
431                 lattrs[7] = NULL;
432
433                 rhint = 0;
434                 base = si->si_logbase.bv_val;
435                 filter = si->si_logfilterstr.bv_val;
436                 attrs = lattrs;
437                 attrsonly = 0;
438                 scope = LDAP_SCOPE_SUBTREE;
439         } else {
440                 rhint = 1;
441                 base = si->si_base.bv_val;
442                 filter = si->si_filterstr.bv_val;
443                 attrs = si->si_attrs;
444                 attrsonly = si->si_attrsonly;
445                 scope = si->si_scope;
446         }
447         if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
448                 si->si_type = LDAP_SYNC_REFRESH_ONLY;
449         } else {
450                 si->si_type = si->si_ctype;
451         }
452
453         if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
454         {
455                 ber_printf( ber, "{eOb}",
456                         abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
457         } else {
458                 ber_printf( ber, "{eb}",
459                         abs(si->si_type), rhint );
460         }
461
462         if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 ) ) == -1 ) {
463                 ber_free_buf( ber );
464                 return rc;
465         }
466
467         c[0].ldctl_oid = LDAP_CONTROL_SYNC;
468         c[0].ldctl_iscritical = si->si_type < 0;
469         ctrls[0] = &c[0];
470
471         c[1].ldctl_oid = LDAP_CONTROL_MANAGEDSAIT;
472         BER_BVZERO( &c[1].ldctl_value );
473         c[1].ldctl_iscritical = 1;
474         ctrls[1] = &c[1];
475
476         if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
477                 c[2].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
478                 c[2].ldctl_value = si->si_bindconf.sb_authzId;
479                 c[2].ldctl_iscritical = 1;
480                 ctrls[2] = &c[2];
481                 ctrls[3] = NULL;
482         } else {
483                 ctrls[2] = NULL;
484         }
485
486         rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
487                 ctrls, NULL, NULL, si->si_slimit, &si->si_msgid );
488         ber_free_buf( ber );
489         return rc;
490 }
491
492 static int
493 check_syncprov(
494         Operation *op,
495         syncinfo_t *si )
496 {
497         AttributeName at[2];
498         Attribute a = {0};
499         Entry e = {0};
500         SlapReply rs = {REP_SEARCH};
501         int i, j, changed = 0;
502
503         /* Look for contextCSN from syncprov overlay. If
504          * there's no overlay, this will be a no-op. That means
505          * this is a pure consumer, so local changes will not be
506          * allowed, and all changes will already be reflected in
507          * the cookieState.
508          */
509         a.a_desc = slap_schema.si_ad_contextCSN;
510         e.e_attrs = &a;
511         e.e_name = si->si_contextdn;
512         e.e_nname = si->si_contextdn;
513         at[0].an_name = a.a_desc->ad_cname;
514         at[0].an_desc = a.a_desc;
515         BER_BVZERO( &at[1].an_name );
516         rs.sr_entry = &e;
517         rs.sr_flags = REP_ENTRY_MODIFIABLE;
518         rs.sr_attrs = at;
519         op->o_req_dn = e.e_name;
520         op->o_req_ndn = e.e_nname;
521
522         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
523         i = backend_operational( op, &rs );
524         if ( i == LDAP_SUCCESS && a.a_nvals ) {
525                 int num = a.a_numvals;
526                 /* check for differences */
527                 if ( num != si->si_cookieState->cs_num ) {
528                         changed = 1;
529                 } else {
530                         for ( i=0; i<num; i++ ) {
531                                 if ( ber_bvcmp( &a.a_nvals[i],
532                                         &si->si_cookieState->cs_vals[i] )) {
533                                         changed = 1;
534                                         break;
535                                 }
536                         }
537                 }
538                 if ( changed ) {
539                         ber_bvarray_free( si->si_cookieState->cs_vals );
540                         ch_free( si->si_cookieState->cs_sids );
541                         si->si_cookieState->cs_num = num;
542                         si->si_cookieState->cs_vals = a.a_nvals;
543                         si->si_cookieState->cs_sids = slap_parse_csn_sids( a.a_nvals,
544                                 num, NULL );
545                         si->si_cookieState->cs_age++;
546                 } else {
547                         ber_bvarray_free( a.a_nvals );
548                 }
549                 ber_bvarray_free( a.a_vals );
550         }
551         /* See if the cookieState has changed due to anything outside
552          * this particular consumer. That includes other consumers in
553          * the same context, or local changes detected above.
554          */
555         if ( si->si_cookieState->cs_num > 0 && si->si_cookieAge !=
556                 si->si_cookieState->cs_age ) {
557                 if ( !si->si_syncCookie.numcsns ) {
558                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
559                         ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
560                                 si->si_cookieState->cs_vals, NULL );
561                         changed = 1;
562                 } else {
563                         for (i=0; !BER_BVISNULL( &si->si_syncCookie.ctxcsn[i] ); i++) {
564                                 /* bogus, just dup everything */
565                                 if ( si->si_syncCookie.sids[i] == -1 ) {
566                                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
567                                         ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
568                                                 si->si_cookieState->cs_vals, NULL );
569                                         changed = 1;
570                                         break;
571                                 }
572                                 for (j=0; j<si->si_cookieState->cs_num; j++) {
573                                         if ( si->si_syncCookie.sids[i] !=
574                                                 si->si_cookieState->cs_sids[j] )
575                                                 continue;
576                                         if ( bvmatch( &si->si_syncCookie.ctxcsn[i],
577                                                 &si->si_cookieState->cs_vals[j] ))
578                                                 break;
579                                         ber_bvreplace( &si->si_syncCookie.ctxcsn[i],
580                                                 &si->si_cookieState->cs_vals[j] );
581                                         changed = 1;
582                                         break;
583                                 }
584                         }
585                 }
586         }
587         if ( changed ) {
588                 si->si_cookieAge = si->si_cookieState->cs_age;
589                 ch_free( si->si_syncCookie.octet_str.bv_val );
590                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
591                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
592                         si->si_syncCookie.sid );
593                 slap_parse_sync_cookie( &si->si_syncCookie, NULL );
594         }
595         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
596         return changed;
597 }
598
599 static int
600 do_syncrep1(
601         Operation *op,
602         syncinfo_t *si )
603 {
604         int     rc;
605         int cmdline_cookie_found = 0;
606
607         struct sync_cookie      *sc = NULL;
608 #ifdef HAVE_TLS
609         void    *ssl;
610 #endif
611
612         rc = slap_client_connect( &si->si_ld, &si->si_bindconf );
613         if ( rc != LDAP_SUCCESS ) {
614                 goto done;
615         }
616         op->o_protocol = LDAP_VERSION3;
617
618         /* Set SSF to strongest of TLS, SASL SSFs */
619         op->o_sasl_ssf = 0;
620         op->o_tls_ssf = 0;
621         op->o_transport_ssf = 0;
622 #ifdef HAVE_TLS
623         if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
624                 == LDAP_SUCCESS && ssl != NULL )
625         {
626                 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
627         }
628 #endif /* HAVE_TLS */
629         {
630                 ber_len_t ssf; /* ITS#5403, 3864 LDAP_OPT_X_SASL_SSF probably ought
631                                                   to use sasl_ssf_t but currently uses ber_len_t */
632                 if ( ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &ssf )
633                         == LDAP_SUCCESS )
634                         op->o_sasl_ssf = ssf;
635         }
636         op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
637                 ?  op->o_sasl_ssf : op->o_tls_ssf;
638
639         ldap_set_option( si->si_ld, LDAP_OPT_TIMELIMIT, &si->si_tlimit );
640
641         rc = LDAP_DEREF_NEVER;  /* actually could allow DEREF_FINDING */
642         ldap_set_option( si->si_ld, LDAP_OPT_DEREF, &rc );
643
644         ldap_set_option( si->si_ld, LDAP_OPT_REFERRALS, LDAP_OPT_OFF );
645
646         si->si_syncCookie.rid = si->si_rid;
647
648         /* whenever there are multiple data sources possible, advertise sid */
649         si->si_syncCookie.sid = ( SLAP_MULTIMASTER( si->si_be ) || si->si_be != si->si_wbe ) ?
650                 slap_serverID : -1;
651
652         /* We've just started up, or the remote server hasn't sent us
653          * any meaningful state.
654          */
655         if ( !si->si_syncCookie.ctxcsn ) {
656                 int i;
657
658                 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
659                         if ( si->si_rid == sc->rid ) {
660                                 cmdline_cookie_found = 1;
661                                 break;
662                         }
663                 }
664
665                 if ( cmdline_cookie_found ) {
666                         /* cookie is supplied in the command line */
667
668                         LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
669
670                         slap_sync_cookie_free( &si->si_syncCookie, 0 );
671                         si->si_syncCookie.octet_str = sc->octet_str;
672                         ch_free( sc );
673                         /* ctxcsn wasn't parsed yet, do it now */
674                         slap_parse_sync_cookie( &si->si_syncCookie, NULL );
675                 } else {
676                         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
677                         if ( !si->si_cookieState->cs_num ) {
678                                 /* get contextCSN shadow replica from database */
679                                 BerVarray csn = NULL;
680                                 void *ctx = op->o_tmpmemctx;
681
682                                 op->o_req_ndn = si->si_contextdn;
683                                 op->o_req_dn = op->o_req_ndn;
684
685                                 /* try to read stored contextCSN */
686                                 op->o_tmpmemctx = NULL;
687                                 backend_attribute( op, NULL, &op->o_req_ndn,
688                                         slap_schema.si_ad_contextCSN, &csn, ACL_READ );
689                                 op->o_tmpmemctx = ctx;
690                                 if ( csn ) {
691                                         si->si_cookieState->cs_vals = csn;
692                                         for (i=0; !BER_BVISNULL( &csn[i] ); i++);
693                                         si->si_cookieState->cs_num = i;
694                                         si->si_cookieState->cs_sids = slap_parse_csn_sids( csn, i, NULL );
695                                         slap_sort_csn_sids( csn, si->si_cookieState->cs_sids, i, NULL );
696                                 }
697                         }
698                         if ( si->si_cookieState->cs_num ) {
699                                 ber_bvarray_free( si->si_syncCookie.ctxcsn );
700                                 if ( ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
701                                         si->si_cookieState->cs_vals, NULL )) {
702                                         rc = LDAP_NO_MEMORY;
703                                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
704                                         goto done;
705                                 }
706                                 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
707                                 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num *
708                                         sizeof(int) );
709                                 for ( i=0; i<si->si_syncCookie.numcsns; i++ )
710                                         si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
711                         }
712                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
713                 }
714
715                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
716                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
717                         si->si_syncCookie.sid );
718         } else {
719                 /* ITS#6367: recreate the cookie so it has our SID, not our peer's */
720                 ch_free( si->si_syncCookie.octet_str.bv_val );
721                 BER_BVZERO( &si->si_syncCookie.octet_str );
722                 /* Look for contextCSN from syncprov overlay. */
723                 check_syncprov( op, si );
724                 if ( BER_BVISNULL( &si->si_syncCookie.octet_str ))
725                         slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
726                                 si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
727                                 si->si_syncCookie.sid );
728         }
729
730         si->si_refreshDone = 0;
731
732         rc = ldap_sync_search( si, op->o_tmpmemctx );
733
734         if( rc != LDAP_SUCCESS ) {
735                 Debug( LDAP_DEBUG_ANY, "do_syncrep1: %s "
736                         "ldap_search_ext: %s (%d)\n",
737                         si->si_ridtxt, ldap_err2string( rc ), rc );
738         }
739
740 done:
741         if ( rc ) {
742                 if ( si->si_ld ) {
743                         ldap_unbind_ext( si->si_ld, NULL, NULL );
744                         si->si_ld = NULL;
745                 }
746         }
747
748         return rc;
749 }
750
751 static int
752 compare_csns( struct sync_cookie *sc1, struct sync_cookie *sc2, int *which )
753 {
754         int i, j, match = 0;
755         const char *text;
756
757         *which = 0;
758
759         if ( sc1->numcsns < sc2->numcsns ) {
760                 *which = sc1->numcsns;
761                 return -1;
762         }
763
764         for (j=0; j<sc2->numcsns; j++) {
765                 for (i=0; i<sc1->numcsns; i++) {
766                         if ( sc1->sids[i] != sc2->sids[j] )
767                                 continue;
768                         value_match( &match, slap_schema.si_ad_entryCSN,
769                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
770                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
771                                 &sc1->ctxcsn[i], &sc2->ctxcsn[j], &text );
772                         if ( match < 0 ) {
773                                 *which = j;
774                                 return match;
775                         }
776                         break;
777                 }
778                 if ( i == sc1->numcsns ) {
779                         /* sc2 has a sid sc1 lacks */
780                         *which = j;
781                         return -1;
782                 }
783         }
784         return match;
785 }
786
787 #define SYNC_PAUSED     -3
788
789 static int
790 do_syncrep2(
791         Operation *op,
792         syncinfo_t *si )
793 {
794         BerElementBuffer berbuf;
795         BerElement      *ber = (BerElement *)&berbuf;
796
797         LDAPMessage     *msg = NULL;
798
799         struct sync_cookie      syncCookie = { NULL };
800         struct sync_cookie      syncCookie_req = { NULL };
801
802         int             rc,
803                         err = LDAP_SUCCESS;
804
805         Modifications   *modlist = NULL;
806
807         int                             m;
808
809         struct timeval *tout_p = NULL;
810         struct timeval tout = { 0, 0 };
811
812         int             refreshDeletes = 0;
813         char empty[6] = "empty";
814
815         if ( slapd_shutdown ) {
816                 rc = -2;
817                 goto done;
818         }
819
820         ber_init2( ber, NULL, LBER_USE_DER );
821         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
822
823         Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2 %s\n", si->si_ridtxt, 0, 0 );
824
825         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
826
827         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST && si->si_refreshDone ) {
828                 tout_p = &tout;
829         } else {
830                 tout_p = NULL;
831         }
832
833         while ( ( rc = ldap_result( si->si_ld, si->si_msgid, LDAP_MSG_ONE,
834                 tout_p, &msg ) ) > 0 )
835         {
836                 int                             match, punlock, syncstate;
837                 struct berval   *retdata, syncUUID[2], cookie = BER_BVNULL;
838                 char                    *retoid;
839                 LDAPControl             **rctrls = NULL, *rctrlp = NULL;
840                 BerVarray               syncUUIDs;
841                 ber_len_t               len;
842                 ber_tag_t               si_tag;
843                 Entry                   *entry;
844                 struct berval   bdn;
845
846                 if ( slapd_shutdown ) {
847                         rc = -2;
848                         goto done;
849                 }
850                 switch( ldap_msgtype( msg ) ) {
851                 case LDAP_RES_SEARCH_ENTRY:
852                         ldap_get_entry_controls( si->si_ld, msg, &rctrls );
853                         ldap_get_dn_ber( si->si_ld, msg, NULL, &bdn );
854                         if (!bdn.bv_len) {
855                                 bdn.bv_val = empty;
856                                 bdn.bv_len = sizeof(empty)-1;
857                         }
858                         /* we can't work without the control */
859                         if ( rctrls ) {
860                                 LDAPControl **next = NULL;
861                                 /* NOTE: make sure we use the right one;
862                                  * a better approach would be to run thru
863                                  * the whole list and take care of all */
864                                 /* NOTE: since we issue the search request,
865                                  * we should know what controls to expect,
866                                  * and there should be none apart from the
867                                  * sync-related control */
868                                 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_STATE, rctrls, &next );
869                                 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_STATE, next, NULL ) )
870                                 {
871                                         bdn.bv_val[bdn.bv_len] = '\0';
872                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
873                                                 "got search entry with multiple "
874                                                 "Sync State control (%s)\n", si->si_ridtxt, bdn.bv_val, 0 );
875                                         ldap_controls_free( rctrls );
876                                         rc = -1;
877                                         goto done;
878                                 }
879                         }
880                         if ( rctrlp == NULL ) {
881                                 bdn.bv_val[bdn.bv_len] = '\0';
882                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
883                                         "got search entry without "
884                                         "Sync State control (%s)\n", si->si_ridtxt, bdn.bv_val, 0 );
885                                 rc = -1;
886                                 goto done;
887                         }
888                         ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
889                         if ( ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID[0] )
890                                         == LBER_ERROR ) {
891                                 bdn.bv_val[bdn.bv_len] = '\0';
892                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s malformed message (%s)\n",
893                                         si->si_ridtxt, bdn.bv_val, 0 );
894                                 ldap_controls_free( rctrls );
895                                 rc = -1;
896                                 goto done;
897                         }
898                         /* FIXME: what if syncUUID is NULL or empty?
899                          * (happens with back-sql...) */
900                         if ( BER_BVISEMPTY( &syncUUID[0] ) ) {
901                                 bdn.bv_val[bdn.bv_len] = '\0';
902                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
903                                         "got empty syncUUID with LDAP_SYNC_%s (%s)\n",
904                                         si->si_ridtxt,
905                                         syncrepl_state2str( syncstate ), bdn.bv_val );
906                                 ldap_controls_free( rctrls );
907                                 rc = -1;
908                                 goto done;
909                         }
910                         punlock = -1;
911                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
912                                 ber_scanf( ber, /*"{"*/ "m}", &cookie );
913
914                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
915                                         si->si_ridtxt,
916                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
917
918                                 if ( !BER_BVISNULL( &cookie ) ) {
919                                         ch_free( syncCookie.octet_str.bv_val );
920                                         ber_dupbv( &syncCookie.octet_str, &cookie );
921                                 }
922                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
923                                 {
924                                         slap_parse_sync_cookie( &syncCookie, NULL );
925                                         if ( syncCookie.ctxcsn ) {
926                                                 int i, sid = slap_parse_csn_sid( syncCookie.ctxcsn );
927                                                 check_syncprov( op, si );
928                                                 for ( i =0; i<si->si_cookieState->cs_num; i++ ) {
929                                                         /* new SID */
930                                                         if ( sid < si->si_cookieState->cs_sids[i] )
931                                                                 break;
932                                                         if ( si->si_cookieState->cs_sids[i] == sid ) {
933                                                                 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_vals[i] ) <= 0 ) {
934                                                                         bdn.bv_val[bdn.bv_len] = '\0';
935                                                                         Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring %s (%s)\n",
936                                                                                 si->si_ridtxt, syncCookie.ctxcsn->bv_val, bdn.bv_val );
937                                                                         ldap_controls_free( rctrls );
938                                                                         rc = 0;
939                                                                         si->si_too_old = 1;
940                                                                         goto done;
941                                                                 }
942                                                                 si->si_too_old = 0;
943                                                                 break;
944                                                         }
945                                                 }
946                                                 /* check pending CSNs too */
947                                                 while ( ldap_pvt_thread_mutex_trylock( &si->si_cookieState->cs_pmutex )) {
948                                                         if ( slapd_shutdown ) {
949                                                                 rc = -2;
950                                                                 goto done;
951                                                         }
952                                                         if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
953                                                                 ldap_pvt_thread_yield();
954                                                 }
955                                                 for ( i =0; i<si->si_cookieState->cs_pnum; i++ ) {
956                                                         if ( sid < si->si_cookieState->cs_psids[i] )
957                                                                 break;
958                                                         if ( si->si_cookieState->cs_psids[i] == sid ) {
959                                                                 if ( ber_bvcmp( syncCookie.ctxcsn, &si->si_cookieState->cs_pvals[i] ) <= 0 ) {
960                                                                         bdn.bv_val[bdn.bv_len] = '\0';
961                                                                         Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN pending, ignoring %s (%s)\n",
962                                                                                 si->si_ridtxt, syncCookie.ctxcsn->bv_val, bdn.bv_val );
963                                                                         ldap_controls_free( rctrls );
964                                                                         rc = 0;
965                                                                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
966                                                                         goto done;
967                                                                 }
968                                                                 ber_bvreplace( &si->si_cookieState->cs_pvals[i],
969                                                                         syncCookie.ctxcsn );
970                                                                 break;
971                                                         }
972                                                 }
973                                                 /* new SID, add it */
974                                                 if ( i == si->si_cookieState->cs_pnum ||
975                                                         sid != si->si_cookieState->cs_psids[i] ) {
976                                                         slap_insert_csn_sids(
977                                                                 (struct sync_cookie *)&si->si_cookieState->cs_pvals,
978                                                                 i, sid, syncCookie.ctxcsn );
979                                                 }
980                                                 assert( punlock < 0 );
981                                                 punlock = i;
982                                         } else if (si->si_too_old) {
983                                                 bdn.bv_val[bdn.bv_len] = '\0';
984                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s CSN too old, ignoring (%s)\n",
985                                                         si->si_ridtxt, bdn.bv_val, 0 );
986                                                 ldap_controls_free( rctrls );
987                                                 rc = 0;
988                                                 goto done;
989                                         }
990                                         op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
991                                 }
992                         }
993                         rc = 0;
994                         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
995                                 modlist = NULL;
996                                 if ( ( rc = syncrepl_message_to_op( si, op, msg ) ) == LDAP_SUCCESS &&
997                                         syncCookie.ctxcsn )
998                                 {
999                                         rc = syncrepl_updateCookie( si, op, &syncCookie );
1000                                 } else switch ( rc ) {
1001                                         case LDAP_ALREADY_EXISTS:
1002                                         case LDAP_NO_SUCH_OBJECT:
1003                                         case LDAP_NO_SUCH_ATTRIBUTE:
1004                                         case LDAP_TYPE_OR_VALUE_EXISTS:
1005                                         case LDAP_NOT_ALLOWED_ON_NONLEAF:
1006                                                 rc = LDAP_SYNC_REFRESH_REQUIRED;
1007                                                 si->si_logstate = SYNCLOG_FALLBACK;
1008                                                 ldap_abandon_ext( si->si_ld, si->si_msgid, NULL, NULL );
1009                                                 bdn.bv_val[bdn.bv_len] = '\0';
1010                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s delta-sync lost sync on (%s), switching to REFRESH\n",
1011                                                         si->si_ridtxt, bdn.bv_val, 0 );
1012                                                 if (si->si_strict_refresh) {
1013                                                         slap_suspend_listeners();
1014                                                         connections_drop();
1015                                                 }
1016                                                 break;
1017                                         default:
1018                                                 break;
1019                                 }
1020                         } else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
1021                                 &modlist, &entry, syncstate, syncUUID ) ) == LDAP_SUCCESS )
1022                         {
1023                                 if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
1024                                         syncstate, syncUUID, syncCookie.ctxcsn ) ) == LDAP_SUCCESS &&
1025                                         syncCookie.ctxcsn )
1026                                 {
1027                                         rc = syncrepl_updateCookie( si, op, &syncCookie );
1028                                 }
1029                         }
1030                         if ( punlock >= 0 ) {
1031                                 /* on failure, revert pending CSN */
1032                                 if ( rc != LDAP_SUCCESS ) {
1033                                         int i;
1034                                         for ( i = 0; i<si->si_cookieState->cs_num; i++ ) {
1035                                                 if ( si->si_cookieState->cs_sids[i] == si->si_cookieState->cs_psids[punlock] ) {
1036                                                         ber_bvreplace( &si->si_cookieState->cs_pvals[punlock],
1037                                                                 &si->si_cookieState->cs_vals[i] );
1038                                                         break;
1039                                                 }
1040                                         }
1041                                         if ( i == si->si_cookieState->cs_num )
1042                                                 si->si_cookieState->cs_pvals[punlock].bv_val[0] = '\0';
1043                                 }
1044                                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_pmutex );
1045                         }
1046                         ldap_controls_free( rctrls );
1047                         if ( modlist ) {
1048                                 slap_mods_free( modlist, 1 );
1049                         }
1050                         if ( rc )
1051                                 goto done;
1052                         break;
1053
1054                 case LDAP_RES_SEARCH_REFERENCE:
1055                         Debug( LDAP_DEBUG_ANY,
1056                                 "do_syncrep2: %s reference received error\n",
1057                                 si->si_ridtxt, 0, 0 );
1058                         break;
1059
1060                 case LDAP_RES_SEARCH_RESULT:
1061                         Debug( LDAP_DEBUG_SYNC,
1062                                 "do_syncrep2: %s LDAP_RES_SEARCH_RESULT\n",
1063                                 si->si_ridtxt, 0, 0 );
1064                         err = LDAP_OTHER; /* FIXME check parse result properly */
1065                         ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
1066                                 &rctrls, 0 );
1067 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
1068                         if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
1069                                 /* map old result code to registered code */
1070                                 err = LDAP_SYNC_REFRESH_REQUIRED;
1071                         }
1072 #endif
1073                         if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
1074                                 if ( si->si_logstate == SYNCLOG_LOGGING ) {
1075                                         si->si_logstate = SYNCLOG_FALLBACK;
1076                                         Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s delta-sync lost sync, switching to REFRESH\n",
1077                                                 si->si_ridtxt, 0, 0 );
1078                                         if (si->si_strict_refresh) {
1079                                                 slap_suspend_listeners();
1080                                                 connections_drop();
1081                                         }
1082                                 }
1083                                 rc = err;
1084                                 goto done;
1085                         }
1086                         if ( err ) {
1087                                 Debug( LDAP_DEBUG_ANY,
1088                                         "do_syncrep2: %s LDAP_RES_SEARCH_RESULT (%d) %s\n",
1089                                         si->si_ridtxt, err, ldap_err2string( err ) );
1090                         }
1091                         if ( rctrls ) {
1092                                 LDAPControl **next = NULL;
1093                                 /* NOTE: make sure we use the right one;
1094                                  * a better approach would be to run thru
1095                                  * the whole list and take care of all */
1096                                 /* NOTE: since we issue the search request,
1097                                  * we should know what controls to expect,
1098                                  * and there should be none apart from the
1099                                  * sync-related control */
1100                                 rctrlp = ldap_control_find( LDAP_CONTROL_SYNC_DONE, rctrls, &next );
1101                                 if ( next && ldap_control_find( LDAP_CONTROL_SYNC_DONE, next, NULL ) )
1102                                 {
1103                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1104                                                 "got search result with multiple "
1105                                                 "Sync State control\n", si->si_ridtxt, 0, 0 );
1106                                         ldap_controls_free( rctrls );
1107                                         rc = -1;
1108                                         goto done;
1109                                 }
1110                         }
1111                         if ( rctrlp ) {
1112                                 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
1113
1114                                 ber_scanf( ber, "{" /*"}"*/);
1115                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
1116                                         ber_scanf( ber, "m", &cookie );
1117
1118                                         Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1119                                                 si->si_ridtxt, 
1120                                                 BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1121
1122                                         if ( !BER_BVISNULL( &cookie ) ) {
1123                                                 ch_free( syncCookie.octet_str.bv_val );
1124                                                 ber_dupbv( &syncCookie.octet_str, &cookie);
1125                                         }
1126                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1127                                         {
1128                                                 slap_parse_sync_cookie( &syncCookie, NULL );
1129                                                 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1130                                         }
1131                                 }
1132                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
1133                                 {
1134                                         ber_scanf( ber, "b", &refreshDeletes );
1135                                 }
1136                                 ber_scanf( ber, /*"{"*/ "}" );
1137                         }
1138                         if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1139                                 slap_sync_cookie_free( &syncCookie_req, 0 );
1140                                 slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1141                         }
1142                         if ( !syncCookie.ctxcsn ) {
1143                                 match = 1;
1144                         } else if ( !syncCookie_req.ctxcsn ) {
1145                                 match = -1;
1146                                 m = 0;
1147                         } else {
1148                                 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1149                         }
1150                         if ( rctrls ) {
1151                                 ldap_controls_free( rctrls );
1152                         }
1153                         if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
1154                                 /* FIXME : different error behaviors according to
1155                                  *      1) err code : LDAP_BUSY ...
1156                                  *      2) on err policy : stop service, stop sync, retry
1157                                  */
1158                                 if ( refreshDeletes == 0 && match < 0 &&
1159                                         err == LDAP_SUCCESS &&
1160                                         syncCookie_req.numcsns == syncCookie.numcsns )
1161                                 {
1162                                         syncrepl_del_nonpresent( op, si, NULL,
1163                                                 &syncCookie, m );
1164                                 } else {
1165                                         avl_free( si->si_presentlist, ch_free );
1166                                         si->si_presentlist = NULL;
1167                                 }
1168                         }
1169                         if ( syncCookie.ctxcsn && match < 0 && err == LDAP_SUCCESS )
1170                         {
1171                                 rc = syncrepl_updateCookie( si, op, &syncCookie );
1172                         }
1173                         if ( err == LDAP_SUCCESS
1174                                 && si->si_logstate == SYNCLOG_FALLBACK ) {
1175                                 si->si_logstate = SYNCLOG_LOGGING;
1176                                 rc = LDAP_SYNC_REFRESH_REQUIRED;
1177                                 slap_resume_listeners();
1178                         } else {
1179                                 rc = -2;
1180                         }
1181                         goto done;
1182
1183                 case LDAP_RES_INTERMEDIATE:
1184                         retoid = NULL;
1185                         retdata = NULL;
1186                         rc = ldap_parse_intermediate( si->si_ld, msg,
1187                                 &retoid, &retdata, NULL, 0 );
1188                         if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
1189                                 ber_init2( ber, retdata, LBER_USE_DER );
1190
1191                                 switch ( si_tag = ber_peek_tag( ber, &len ) ) {
1192                                 ber_tag_t tag;
1193                                 case LDAP_TAG_SYNC_NEW_COOKIE:
1194                                         Debug( LDAP_DEBUG_SYNC,
1195                                                 "do_syncrep2: %s %s - %s\n", 
1196                                                 si->si_ridtxt,
1197                                                 "LDAP_RES_INTERMEDIATE", 
1198                                                 "NEW_COOKIE" );
1199                                         ber_scanf( ber, "tm", &tag, &cookie );
1200                                         Debug( LDAP_DEBUG_SYNC,
1201                                                 "do_syncrep2: %s NEW_COOKIE: %s\n",
1202                                                 si->si_ridtxt,
1203                                                 cookie.bv_val, 0);
1204                                         if ( !BER_BVISNULL( &cookie ) ) {
1205                                                 ch_free( syncCookie.octet_str.bv_val );
1206                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
1207                                         }
1208                                         if (!BER_BVISNULL( &syncCookie.octet_str ) ) {
1209                                                 slap_parse_sync_cookie( &syncCookie, NULL );
1210                                                 op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1211                                         }
1212                                         break;
1213                                 case LDAP_TAG_SYNC_REFRESH_DELETE:
1214                                 case LDAP_TAG_SYNC_REFRESH_PRESENT:
1215                                         Debug( LDAP_DEBUG_SYNC,
1216                                                 "do_syncrep2: %s %s - %s\n", 
1217                                                 si->si_ridtxt,
1218                                                 "LDAP_RES_INTERMEDIATE", 
1219                                                 si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
1220                                                 "REFRESH_PRESENT" : "REFRESH_DELETE" );
1221                                         if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
1222                                                 si->si_refreshDelete = 1;
1223                                         } else {
1224                                                 si->si_refreshPresent = 1;
1225                                         }
1226                                         ber_scanf( ber, "t{" /*"}"*/, &tag );
1227                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
1228                                         {
1229                                                 ber_scanf( ber, "m", &cookie );
1230
1231                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1232                                                         si->si_ridtxt, 
1233                                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1234
1235                                                 if ( !BER_BVISNULL( &cookie ) ) {
1236                                                         ch_free( syncCookie.octet_str.bv_val );
1237                                                         ber_dupbv( &syncCookie.octet_str, &cookie );
1238                                                 }
1239                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1240                                                 {
1241                                                         slap_parse_sync_cookie( &syncCookie, NULL );
1242                                                         op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1243                                                 }
1244                                         }
1245                                         /* Defaults to TRUE */
1246                                         if ( ber_peek_tag( ber, &len ) ==
1247                                                 LDAP_TAG_REFRESHDONE )
1248                                         {
1249                                                 ber_scanf( ber, "b", &si->si_refreshDone );
1250                                         } else
1251                                         {
1252                                                 si->si_refreshDone = 1;
1253                                         }
1254                                         ber_scanf( ber, /*"{"*/ "}" );
1255                                         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST &&
1256                                                 si->si_refreshDone )
1257                                                 tout_p = &tout;
1258                                         break;
1259                                 case LDAP_TAG_SYNC_ID_SET:
1260                                         Debug( LDAP_DEBUG_SYNC,
1261                                                 "do_syncrep2: %s %s - %s\n", 
1262                                                 si->si_ridtxt,
1263                                                 "LDAP_RES_INTERMEDIATE", 
1264                                                 "SYNC_ID_SET" );
1265                                         ber_scanf( ber, "t{" /*"}"*/, &tag );
1266                                         if ( ber_peek_tag( ber, &len ) ==
1267                                                 LDAP_TAG_SYNC_COOKIE )
1268                                         {
1269                                                 ber_scanf( ber, "m", &cookie );
1270
1271                                                 Debug( LDAP_DEBUG_SYNC, "do_syncrep2: %s cookie=%s\n",
1272                                                         si->si_ridtxt,
1273                                                         BER_BVISNULL( &cookie ) ? "" : cookie.bv_val, 0 );
1274
1275                                                 if ( !BER_BVISNULL( &cookie ) ) {
1276                                                         ch_free( syncCookie.octet_str.bv_val );
1277                                                         ber_dupbv( &syncCookie.octet_str, &cookie );
1278                                                 }
1279                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
1280                                                 {
1281                                                         slap_parse_sync_cookie( &syncCookie, NULL );
1282                                                         op->o_controls[slap_cids.sc_LDAPsync] = &syncCookie;
1283                                                         compare_csns( &syncCookie_req, &syncCookie, &m );
1284                                                 }
1285                                         }
1286                                         if ( ber_peek_tag( ber, &len ) ==
1287                                                 LDAP_TAG_REFRESHDELETES )
1288                                         {
1289                                                 ber_scanf( ber, "b", &refreshDeletes );
1290                                         }
1291                                         syncUUIDs = NULL;
1292                                         ber_scanf( ber, "[W]", &syncUUIDs );
1293                                         ber_scanf( ber, /*"{"*/ "}" );
1294                                         if ( refreshDeletes ) {
1295                                                 syncrepl_del_nonpresent( op, si, syncUUIDs,
1296                                                         &syncCookie, m );
1297                                                 ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
1298                                         } else {
1299                                                 int i;
1300                                                 for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
1301                                                         (void)avl_presentlist_insert( si, &syncUUIDs[i] );
1302                                                         slap_sl_free( syncUUIDs[i].bv_val, op->o_tmpmemctx );
1303                                                 }
1304                                                 slap_sl_free( syncUUIDs, op->o_tmpmemctx );
1305                                         }
1306                                         slap_sync_cookie_free( &syncCookie, 0 );
1307                                         break;
1308                                 default:
1309                                         Debug( LDAP_DEBUG_ANY,
1310                                                 "do_syncrep2: %s unknown syncinfo tag (%ld)\n",
1311                                                 si->si_ridtxt, (long) si_tag, 0 );
1312                                         ldap_memfree( retoid );
1313                                         ber_bvfree( retdata );
1314                                         continue;
1315                                 }
1316
1317                                 if ( SLAP_MULTIMASTER( op->o_bd ) && check_syncprov( op, si )) {
1318                                         slap_sync_cookie_free( &syncCookie_req, 0 );
1319                                         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
1320                                 }
1321                                 if ( !syncCookie.ctxcsn ) {
1322                                         match = 1;
1323                                 } else if ( !syncCookie_req.ctxcsn ) {
1324                                         match = -1;
1325                                         m = 0;
1326                                 } else {
1327                                         match = compare_csns( &syncCookie_req, &syncCookie, &m );
1328                                 }
1329
1330                                 if ( match < 0 ) {
1331                                         if ( si->si_refreshPresent == 1 &&
1332                                                 si_tag != LDAP_TAG_SYNC_NEW_COOKIE &&
1333                                                 syncCookie_req.numcsns == syncCookie.numcsns ) {
1334                                                 syncrepl_del_nonpresent( op, si, NULL,
1335                                                         &syncCookie, m );
1336                                         }
1337
1338                                         if ( syncCookie.ctxcsn )
1339                                         {
1340                                                 rc = syncrepl_updateCookie( si, op, &syncCookie);
1341                                         }
1342                                 } 
1343
1344                                 ldap_memfree( retoid );
1345                                 ber_bvfree( retdata );
1346
1347                                 if ( rc )
1348                                         goto done;
1349
1350                         } else {
1351                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1352                                         "unknown intermediate response (%d)\n",
1353                                         si->si_ridtxt, rc, 0 );
1354                                 ldap_memfree( retoid );
1355                                 ber_bvfree( retdata );
1356                         }
1357                         break;
1358
1359                 default:
1360                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1361                                 "unknown message (0x%02lx)\n",
1362                                 si->si_ridtxt,
1363                                 (unsigned long)ldap_msgtype( msg ), 0 );
1364                         break;
1365
1366                 }
1367                 if ( !BER_BVISNULL( &syncCookie.octet_str ) ) {
1368                         slap_sync_cookie_free( &syncCookie_req, 0 );
1369                         syncCookie_req = syncCookie;
1370                         memset( &syncCookie, 0, sizeof( syncCookie ));
1371                 }
1372                 ldap_msgfree( msg );
1373                 msg = NULL;
1374                 if ( ldap_pvt_thread_pool_pausing( &connection_pool )) {
1375                         slap_sync_cookie_free( &syncCookie, 0 );
1376                         slap_sync_cookie_free( &syncCookie_req, 0 );
1377                         return SYNC_PAUSED;
1378                 }
1379         }
1380
1381         if ( rc == -1 ) {
1382                 rc = LDAP_OTHER;
1383                 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
1384                 err = rc;
1385         }
1386
1387 done:
1388         if ( err != LDAP_SUCCESS ) {
1389                 Debug( LDAP_DEBUG_ANY,
1390                         "do_syncrep2: %s (%d) %s\n",
1391                         si->si_ridtxt, err, ldap_err2string( err ) );
1392         }
1393
1394         slap_sync_cookie_free( &syncCookie, 0 );
1395         slap_sync_cookie_free( &syncCookie_req, 0 );
1396
1397         if ( msg ) ldap_msgfree( msg );
1398
1399         if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1400                 if ( si->si_conn ) {
1401                         connection_client_stop( si->si_conn );
1402                         si->si_conn = NULL;
1403                 }
1404                 ldap_unbind_ext( si->si_ld, NULL, NULL );
1405                 si->si_ld = NULL;
1406         }
1407
1408         return rc;
1409 }
1410
1411 static void *
1412 do_syncrepl(
1413         void    *ctx,
1414         void    *arg )
1415 {
1416         struct re_s* rtask = arg;
1417         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1418         Connection conn = {0};
1419         OperationBuffer opbuf;
1420         Operation *op;
1421         int rc = LDAP_SUCCESS;
1422         int dostop = 0;
1423         ber_socket_t s;
1424         int i, defer = 1, fail = 0, freeinfo = 0;
1425         Backend *be;
1426
1427         if ( si == NULL )
1428                 return NULL;
1429         if ( slapd_shutdown )
1430                 return NULL;
1431
1432         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl %s\n", si->si_ridtxt, 0, 0 );
1433
1434         /* Don't get stuck here while a pause is initiated */
1435         while ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
1436                 if ( slapd_shutdown )
1437                         return NULL;
1438                 if ( !ldap_pvt_thread_pool_pausecheck( &connection_pool ))
1439                         ldap_pvt_thread_yield();
1440         }
1441
1442         si->si_too_old = 0;
1443
1444         if ( si->si_ctype < 1 ) {
1445                 goto deleted;
1446         }
1447
1448         switch( abs( si->si_type ) ) {
1449         case LDAP_SYNC_REFRESH_ONLY:
1450         case LDAP_SYNC_REFRESH_AND_PERSIST:
1451                 break;
1452         default:
1453                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1454                 return NULL;
1455         }
1456
1457         if ( slapd_shutdown ) {
1458                 if ( si->si_ld ) {
1459                         if ( si->si_conn ) {
1460                                 connection_client_stop( si->si_conn );
1461                                 si->si_conn = NULL;
1462                         }
1463                         ldap_unbind_ext( si->si_ld, NULL, NULL );
1464                         si->si_ld = NULL;
1465                 }
1466                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1467                 return NULL;
1468         }
1469
1470         connection_fake_init( &conn, &opbuf, ctx );
1471         op = &opbuf.ob_op;
1472         /* o_connids must be unique for slap_graduate_commit_csn */
1473         op->o_connid = SLAPD_SYNC_RID2SYNCCONN(si->si_rid);
1474
1475         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1476         be = si->si_be;
1477
1478         /* Coordinate contextCSN updates with any syncprov overlays
1479          * in use. This may be complicated by the use of the glue
1480          * overlay.
1481          *
1482          * Typically there is a single syncprov mastering the entire
1483          * glued tree. In that case, our contextCSN updates should
1484          * go to the master DB. But if there is no syncprov on the
1485          * master DB, then nothing special is needed here.
1486          *
1487          * Alternatively, there may be individual syncprov overlays
1488          * on each glued branch. In that case, each syncprov only
1489          * knows about changes within its own branch. And so our
1490          * contextCSN updates should only go to the local DB.
1491          */
1492         if ( !si->si_wbe ) {
1493                 if ( SLAP_GLUE_SUBORDINATE( be ) && !overlay_is_inst( be, "syncprov" )) {
1494                         BackendDB * top_be = select_backend( &be->be_nsuffix[0], 1 );
1495                         if ( overlay_is_inst( top_be, "syncprov" ))
1496                                 si->si_wbe = top_be;
1497                         else
1498                                 si->si_wbe = be;
1499                 } else {
1500                         si->si_wbe = be;
1501                 }
1502                 if ( SLAP_SYNC_SUBENTRY( si->si_wbe )) {
1503                         build_new_dn( &si->si_contextdn, &si->si_wbe->be_nsuffix[0],
1504                                 (struct berval *)&slap_ldapsync_cn_bv, NULL );
1505                 } else {
1506                         si->si_contextdn = si->si_wbe->be_nsuffix[0];
1507                 }
1508         }
1509         if ( !si->si_schemachecking )
1510                 op->o_no_schema_check = 1;
1511
1512         /* Establish session, do search */
1513         if ( !si->si_ld ) {
1514                 si->si_refreshDelete = 0;
1515                 si->si_refreshPresent = 0;
1516
1517                 if ( si->si_presentlist ) {
1518                     avl_free( si->si_presentlist, ch_free );
1519                     si->si_presentlist = NULL;
1520                 }
1521
1522                 /* use main DB when retrieving contextCSN */
1523                 op->o_bd = si->si_wbe;
1524                 op->o_dn = op->o_bd->be_rootdn;
1525                 op->o_ndn = op->o_bd->be_rootndn;
1526                 rc = do_syncrep1( op, si );
1527         }
1528
1529 reload:
1530         /* Process results */
1531         if ( rc == LDAP_SUCCESS ) {
1532                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1533
1534                 /* use current DB */
1535                 op->o_bd = be;
1536                 op->o_dn = op->o_bd->be_rootdn;
1537                 op->o_ndn = op->o_bd->be_rootndn;
1538                 rc = do_syncrep2( op, si );
1539                 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1540                         rc = ldap_sync_search( si, op->o_tmpmemctx );
1541                         goto reload;
1542                 }
1543
1544 deleted:
1545                 /* We got deleted while running on cn=config */
1546                 if ( si->si_ctype < 1 ) {
1547                         if ( si->si_ctype == -1 ) {
1548                                 si->si_ctype = 0;
1549                                 freeinfo = 1;
1550                         }
1551                         if ( si->si_conn )
1552                                 dostop = 1;
1553                         rc = -1;
1554                 }
1555
1556                 if ( rc != SYNC_PAUSED ) {
1557                         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1558                                 /* If we succeeded, enable the connection for further listening.
1559                                  * If we failed, tear down the connection and reschedule.
1560                                  */
1561                                 if ( rc == LDAP_SUCCESS ) {
1562                                         if ( si->si_conn ) {
1563                                                 connection_client_enable( si->si_conn );
1564                                         } else {
1565                                                 si->si_conn = connection_client_setup( s, do_syncrepl, arg );
1566                                         } 
1567                                 } else if ( si->si_conn ) {
1568                                         dostop = 1;
1569                                 }
1570                         } else {
1571                                 if ( rc == -2 ) rc = 0;
1572                         }
1573                 }
1574         }
1575
1576         /* At this point, we have 5 cases:
1577          * 1) for any hard failure, give up and remove this task
1578          * 2) for ServerDown, reschedule this task to run later
1579          * 3) for threadpool pause, reschedule to run immediately
1580          * 4) for Refresh and Success, reschedule to run
1581          * 5) for Persist and Success, reschedule to defer
1582          */
1583         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1584
1585         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask ) ) {
1586                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1587         }
1588
1589         if ( dostop ) {
1590                 connection_client_stop( si->si_conn );
1591                 si->si_conn = NULL;
1592         }
1593
1594         if ( rc == SYNC_PAUSED ) {
1595                 rtask->interval.tv_sec = 0;
1596                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1597                 rtask->interval.tv_sec = si->si_interval;
1598                 rc = 0;
1599         } else if ( rc == LDAP_SUCCESS ) {
1600                 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1601                         defer = 0;
1602                 }
1603                 rtask->interval.tv_sec = si->si_interval;
1604                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1605                 if ( si->si_retrynum ) {
1606                         for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1607                                 si->si_retrynum[i] = si->si_retrynum_init[i];
1608                         }
1609                         si->si_retrynum[i] = RETRYNUM_TAIL;
1610                 }
1611         } else {
1612                 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1613                         if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1614                                 break;
1615                 }
1616
1617                 if ( si->si_ctype < 1
1618                         || !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1619                         if ( si->si_re ) {
1620                                 ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1621                                 si->si_re = NULL;
1622                         }
1623                         fail = RETRYNUM_TAIL;
1624                 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1625                         if ( si->si_retrynum[i] > 0 )
1626                                 si->si_retrynum[i]--;
1627                         fail = si->si_retrynum[i];
1628                         rtask->interval.tv_sec = si->si_retryinterval[i];
1629                         ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1630                         slap_wake_listener();
1631                 }
1632         }
1633
1634         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1635         ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1636
1637         if ( rc ) {
1638                 if ( fail == RETRYNUM_TAIL ) {
1639                         Debug( LDAP_DEBUG_ANY,
1640                                 "do_syncrepl: %s rc %d quitting\n",
1641                                 si->si_ridtxt, rc, 0 );
1642                 } else if ( fail > 0 ) {
1643                         Debug( LDAP_DEBUG_ANY,
1644                                 "do_syncrepl: %s rc %d retrying (%d retries left)\n",
1645                                 si->si_ridtxt, rc, fail );
1646                 } else {
1647                         Debug( LDAP_DEBUG_ANY,
1648                                 "do_syncrepl: %s rc %d retrying\n",
1649                                 si->si_ridtxt, rc, 0 );
1650                 }
1651         }
1652
1653         /* Do final delete cleanup */
1654         if ( freeinfo ) {
1655                 syncinfo_free( si, 0 );
1656         }
1657         return NULL;
1658 }
1659
1660 #ifdef ENABLE_REWRITE
1661 static int
1662 syncrepl_rewrite_dn(
1663         syncinfo_t *si,
1664         struct berval *dn,
1665         struct berval *sdn )
1666 {
1667         char nul;
1668         int rc;
1669
1670         nul = dn->bv_val[dn->bv_len];
1671         dn->bv_val[dn->bv_len] = 0;
1672         rc = rewrite( si->si_rewrite, SUFFIXM_CTX, dn->bv_val, &sdn->bv_val );
1673         dn->bv_val[dn->bv_len] = nul;
1674
1675         if ( sdn->bv_val == dn->bv_val )
1676                 sdn->bv_val = NULL;
1677         else if ( rc == REWRITE_REGEXEC_OK && sdn->bv_val )
1678                 sdn->bv_len = strlen( sdn->bv_val );
1679         return rc;
1680 }
1681 #define REWRITE_VAL(si, ad, bv, bv2)    \
1682         BER_BVZERO( &bv2 );     \
1683         if ( si->si_rewrite && ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName) \
1684                 syncrepl_rewrite_dn( si, &bv, &bv2); \
1685         if ( BER_BVISNULL( &bv2 ))  \
1686                 ber_dupbv( &bv2, &bv )
1687 #define REWRITE_DN(si, bv, bv2, dn, ndn) \
1688         BER_BVZERO( &bv2 );     \
1689         if (si->si_rewrite) \
1690                 syncrepl_rewrite_dn(si, &bv, &bv2); \
1691         rc = dnPrettyNormal( NULL, bv2.bv_val ? &bv2 : &bv, &dn, &ndn, op->o_tmpmemctx ); \
1692         ch_free(bv2.bv_val)
1693 #else
1694 #define REWRITE_VAL(si, ad, bv, bv2)    ber_dupbv(&bv2, &bv)
1695 #define REWRITE_DN(si, bv, bv2, dn, ndn) \
1696         rc = dnPrettyNormal( NULL, &bv, &dn, &ndn, op->o_tmpmemctx )
1697 #endif
1698
1699
1700 static slap_verbmasks modops[] = {
1701         { BER_BVC("add"), LDAP_REQ_ADD },
1702         { BER_BVC("delete"), LDAP_REQ_DELETE },
1703         { BER_BVC("modify"), LDAP_REQ_MODIFY },
1704         { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1705         { BER_BVNULL, 0 }
1706 };
1707
1708 static int
1709 syncrepl_accesslog_mods(
1710         syncinfo_t *si,
1711         struct berval *vals,
1712         struct Modifications **modres
1713 )
1714 {
1715         char *colon;
1716         const char *text;
1717         AttributeDescription *ad;
1718         struct berval bv, bv2;
1719         short op;
1720         Modifications *mod = NULL, *modlist = NULL, **modtail;
1721         int i, rc = 0;
1722
1723         modtail = &modlist;
1724
1725         for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1726                 ad = NULL;
1727                 bv = vals[i];
1728
1729                 colon = ber_bvchr( &bv, ':' );
1730                 if ( !colon ) {
1731                         /* Invalid */
1732                         continue;
1733                 }
1734
1735                 bv.bv_len = colon - bv.bv_val;
1736                 if ( slap_bv2ad( &bv, &ad, &text ) ) {
1737                         /* Invalid */
1738                         Debug( LDAP_DEBUG_ANY, "syncrepl_accesslog_mods: %s "
1739                                 "Invalid attribute %s, %s\n",
1740                                 si->si_ridtxt, bv.bv_val, text );
1741                         slap_mods_free( modlist, 1 );
1742                         modlist = NULL;
1743                         rc = -1;
1744                         break;
1745                 }
1746
1747                 /* Ignore dynamically generated attrs */
1748                 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1749                         continue;
1750                 }
1751
1752                 /* Ignore excluded attrs */
1753                 if ( ldap_charray_inlist( si->si_exattrs,
1754                         ad->ad_type->sat_cname.bv_val ) )
1755                 {
1756                         continue;
1757                 }
1758
1759                 switch(colon[1]) {
1760                 case '+':       op = LDAP_MOD_ADD; break;
1761                 case '-':       op = LDAP_MOD_DELETE; break;
1762                 case '=':       op = LDAP_MOD_REPLACE; break;
1763                 case '#':       op = LDAP_MOD_INCREMENT; break;
1764                 default:        continue;
1765                 }
1766
1767                 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1768                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1769                         mod->sml_flags = 0;
1770                         mod->sml_op = op;
1771                         mod->sml_next = NULL;
1772                         mod->sml_desc = ad;
1773                         mod->sml_type = ad->ad_cname;
1774                         mod->sml_values = NULL;
1775                         mod->sml_nvalues = NULL;
1776                         mod->sml_numvals = 0;
1777
1778                         *modtail = mod;
1779                         modtail = &mod->sml_next;
1780                 }
1781                 if ( colon[2] == ' ' ) {
1782                         bv.bv_val = colon + 3;
1783                         bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1784                         REWRITE_VAL( si, ad, bv, bv2 );
1785                         ber_bvarray_add( &mod->sml_values, &bv2 );
1786                         mod->sml_numvals++;
1787                 }
1788         }
1789         *modres = modlist;
1790         return rc;
1791 }
1792
1793 static int
1794 syncrepl_changelog_mods(
1795         syncinfo_t *si,
1796         struct berval *vals,
1797         struct Modifications **modres
1798 )
1799 {
1800         return -1;      /* FIXME */
1801 }
1802
1803 typedef struct OpExtraSync {
1804         OpExtra oe;
1805         syncinfo_t *oe_si;
1806 } OpExtraSync;
1807
1808 /* Copy the original modlist, split Replace ops into Delete/Add,
1809  * and drop mod opattrs since this modification is in the past.
1810  */
1811 static Modifications *mods_dup( Operation *op, Modifications *modlist, int match )
1812 {
1813         Modifications *mod, *modnew = NULL, *modtail = NULL;
1814         int size;
1815         for ( ; modlist; modlist = modlist->sml_next ) {
1816                 /* older ops */
1817                 if ( match < 0 ) {
1818                         if ( modlist->sml_desc == slap_schema.si_ad_modifiersName ||
1819                                 modlist->sml_desc == slap_schema.si_ad_modifyTimestamp ||
1820                                 modlist->sml_desc == slap_schema.si_ad_entryCSN )
1821                                 continue;
1822                         if ( modlist->sml_op == LDAP_MOD_REPLACE ) {
1823                                 mod = op->o_tmpalloc( sizeof(Modifications), op->o_tmpmemctx );
1824                                 mod->sml_desc = modlist->sml_desc;
1825                                 mod->sml_values = NULL;
1826                                 mod->sml_nvalues = NULL;
1827                                 mod->sml_op = LDAP_MOD_DELETE;
1828                                 mod->sml_numvals = 0;
1829                                 mod->sml_flags = 0;
1830                                 if ( !modnew )
1831                                         modnew = mod;
1832                                 if ( modtail )
1833                                         modtail->sml_next = mod;
1834                                 modtail = mod;
1835                         }
1836                 }
1837                 if ( modlist->sml_numvals ) {
1838                         size = (modlist->sml_numvals+1) * sizeof(struct berval);
1839                         if ( modlist->sml_nvalues ) size *= 2;
1840                 } else {
1841                         size = 0;
1842                 }
1843                 size += sizeof(Modifications);
1844                 mod = op->o_tmpalloc( size, op->o_tmpmemctx );
1845                 if ( !modnew )
1846                         modnew = mod;
1847                 if ( modtail )
1848                         modtail->sml_next = mod;
1849                 modtail = mod;
1850                 mod->sml_desc = modlist->sml_desc;
1851                 mod->sml_numvals = modlist->sml_numvals;
1852                 mod->sml_flags = 0;
1853                 if ( modlist->sml_numvals ) {
1854                         int i;
1855                         mod->sml_values = (BerVarray)(mod+1);
1856                         for (i=0; i<mod->sml_numvals; i++)
1857                                 mod->sml_values[i] = modlist->sml_values[i];
1858                         BER_BVZERO(&mod->sml_values[i]);
1859                         if ( modlist->sml_nvalues ) {
1860                                 mod->sml_nvalues = mod->sml_values + mod->sml_numvals + 1;
1861                                 for (i=0; i<mod->sml_numvals; i++)
1862                                         mod->sml_nvalues[i] = modlist->sml_nvalues[i];
1863                                 BER_BVZERO(&mod->sml_nvalues[i]);
1864                         } else {
1865                                 mod->sml_nvalues = NULL;
1866                         }
1867                 } else {
1868                         mod->sml_values = NULL;
1869                         mod->sml_nvalues = NULL;
1870                 }
1871                 if ( match < 0 && modlist->sml_op == LDAP_MOD_REPLACE )
1872                         mod->sml_op = LDAP_MOD_ADD;
1873                 else
1874                         mod->sml_op = modlist->sml_op;
1875                 mod->sml_next = NULL;
1876         }
1877         return modnew;
1878 }
1879
1880 typedef struct resolve_ctxt {
1881         syncinfo_t *rx_si;
1882         Modifications *rx_mods;
1883 } resolve_ctxt;
1884
1885 static void
1886 compare_vals( Modifications *m1, Modifications *m2 )
1887 {
1888         int i, j;
1889         struct berval *bv1, *bv2;
1890
1891         if ( m2->sml_nvalues ) {
1892                 bv2 = m2->sml_nvalues;
1893                 bv1 = m1->sml_nvalues;
1894         } else {
1895                 bv2 = m2->sml_values;
1896                 bv1 = m1->sml_values;
1897         }
1898         for ( j=0; j<m2->sml_numvals; j++ ) {
1899                 for ( i=0; i<m1->sml_numvals; i++ ) {
1900                         if ( !ber_bvcmp( &bv1[i], &bv2[j] )) {
1901                                 int k;
1902                                 for ( k=i; k<m1->sml_numvals-1; k++ ) {
1903                                         m1->sml_values[k] = m1->sml_values[k+1];
1904                                         if ( m1->sml_nvalues )
1905                                                 m1->sml_nvalues[k] = m1->sml_nvalues[k+1];
1906                                 }
1907                                 BER_BVZERO(&m1->sml_values[k]);
1908                                 if ( m1->sml_nvalues ) {
1909                                         BER_BVZERO(&m1->sml_nvalues[k]);
1910                                 }
1911                                 m1->sml_numvals--;
1912                                 i--;
1913                         }
1914                 }
1915         }
1916 }
1917
1918 static int
1919 syncrepl_resolve_cb( Operation *op, SlapReply *rs )
1920 {
1921         if ( rs->sr_type == REP_SEARCH ) {
1922                 resolve_ctxt *rx = op->o_callback->sc_private;
1923                 Attribute *a = attr_find( rs->sr_entry->e_attrs, ad_reqMod );
1924                 if ( a ) {
1925                         Modifications *oldmods, *newmods, *m1, *m2, **prev;
1926                         oldmods = rx->rx_mods;
1927                         syncrepl_accesslog_mods( rx->rx_si, a->a_vals, &newmods );
1928                         for ( m2 = newmods; m2; m2=m2->sml_next ) {
1929                                 for ( prev = &oldmods, m1 = *prev; m1; m1 = *prev ) {
1930                                         if ( m1->sml_desc != m2->sml_desc ) {
1931                                                 prev = &m1->sml_next;
1932                                                 continue;
1933                                         }
1934                                         if ( m2->sml_op == LDAP_MOD_DELETE ||
1935                                                 m2->sml_op == LDAP_MOD_REPLACE ) {
1936                                                 int numvals = m2->sml_numvals;
1937                                                 if ( m2->sml_op == LDAP_MOD_REPLACE )
1938                                                         numvals = 0;
1939                                                 /* New delete All cancels everything */
1940                                                 if ( numvals == 0 ) {
1941 drop:
1942                                                         *prev = m1->sml_next;
1943                                                         op->o_tmpfree( m1, op->o_tmpmemctx );
1944                                                         continue;
1945                                                 }
1946                                                 if ( m1->sml_op == LDAP_MOD_DELETE ) {
1947                                                         if ( m1->sml_numvals == 0 ) {
1948                                                                 /* turn this to SOFTDEL later */
1949                                                                 m1->sml_flags = SLAP_MOD_INTERNAL;
1950                                                         } else {
1951                                                                 compare_vals( m1, m2 );
1952                                                                 if ( !m1->sml_numvals )
1953                                                                         goto drop;
1954                                                         }
1955                                                 } else if ( m1->sml_op == LDAP_MOD_ADD ) {
1956                                                         compare_vals( m1, m2 );
1957                                                         if ( !m1->sml_numvals )
1958                                                                 goto drop;
1959                                                 }
1960                                         }
1961
1962                                         if ( m2->sml_op == LDAP_MOD_ADD ||
1963                                                 m2->sml_op == LDAP_MOD_REPLACE ) {
1964                                                 if ( m1->sml_op == LDAP_MOD_DELETE ) {
1965                                                         if ( !m1->sml_numvals ) goto drop;
1966                                                         compare_vals( m1, m2 );
1967                                                         if ( !m1->sml_numvals )
1968                                                                 goto drop;
1969                                                 }
1970                                                 if ( m2->sml_desc->ad_type->sat_atype.at_single_value )
1971                                                         goto drop;
1972                                                 compare_vals( m1, m2 );
1973                                                 if ( !m1->sml_numvals )
1974                                                         goto drop;
1975                                         }
1976                                         prev = &m1->sml_next;
1977                                 }
1978                         }
1979                         slap_mods_free( newmods, 1 );
1980                         rx->rx_mods = oldmods;
1981                 }
1982         }
1983         return LDAP_SUCCESS;
1984 }
1985
1986 typedef struct modify_ctxt {
1987         Modifications *mx_orig;
1988         Modifications *mx_free;
1989 } modify_ctxt;
1990
1991 static int
1992 syncrepl_modify_cb( Operation *op, SlapReply *rs )
1993 {
1994         slap_callback *sc = op->o_callback;
1995         modify_ctxt *mx = sc->sc_private;
1996         Modifications *ml;
1997
1998         op->orm_no_opattrs = 0;
1999         op->orm_modlist = mx->mx_orig;
2000         for ( ml = mx->mx_free; ml; ml = mx->mx_free ) {
2001                 mx->mx_free = ml->sml_next;
2002                 op->o_tmpfree( ml, op->o_tmpmemctx );
2003         }
2004         op->o_callback = sc->sc_next;
2005         op->o_tmpfree( sc, op->o_tmpmemctx );
2006         return SLAP_CB_CONTINUE;
2007 }
2008
2009 static int
2010 syncrepl_op_modify( Operation *op, SlapReply *rs )
2011 {
2012         slap_overinst *on = (slap_overinst *)op->o_bd->bd_info;
2013         OpExtra *oex;
2014         syncinfo_t *si;
2015         Entry *e;
2016         int rc, match = 0;
2017         Modifications *mod, *newlist;
2018
2019         LDAP_SLIST_FOREACH( oex, &op->o_extra, oe_next ) {
2020                 if ( oex->oe_key == (void *)syncrepl_message_to_op )
2021                         break;
2022         }
2023         if ( !oex )
2024                 return SLAP_CB_CONTINUE;
2025
2026         si = ((OpExtraSync *)oex)->oe_si;
2027
2028         /* Check if entryCSN in modlist is newer than entryCSN in entry.
2029          * We do it here because the op has been serialized by accesslog
2030          * by the time we get here. If the CSN is new enough, just do the
2031          * mod. If not, we need to resolve conflicts.
2032          */
2033
2034         for ( mod = op->orm_modlist; mod; mod=mod->sml_next ) {
2035                 if ( mod->sml_desc == slap_schema.si_ad_entryCSN ) break;
2036         }
2037         /* FIXME: what should we do if entryCSN is missing from the mod? */
2038         if ( !mod )
2039                 return SLAP_CB_CONTINUE;
2040
2041         rc = overlay_entry_get_ov( op, &op->o_req_ndn, NULL, NULL, 0, &e, on );
2042         if ( rc == 0 ) {
2043                 Attribute *a;
2044                 const char *text;
2045                 a = attr_find( e->e_attrs, slap_schema.si_ad_entryCSN );
2046                 value_match( &match, slap_schema.si_ad_entryCSN,
2047                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
2048                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
2049                         &mod->sml_nvalues[0], &a->a_nvals[0], &text );
2050                 overlay_entry_release_ov( op, e, 0, on );
2051         }
2052         /* equal? Should never happen */
2053         if ( match == 0 )
2054                 return LDAP_SUCCESS;
2055
2056         /* mod is older: resolve conflicts...
2057          * 1. Save/copy original modlist. Split Replace to Del/Add.
2058          * 2. Find all mods to this reqDN newer than the mod stamp.
2059          * 3. Resolve any mods in this request that affect attributes
2060          *    touched by newer mods.
2061          *    old         new
2062          *    delete all  delete all  drop
2063          *    delete all  delete X    SOFTDEL
2064          *    delete X    delete all  drop
2065          *    delete X    delete X    drop
2066          *    delete X    delete Y    OK
2067          *    delete all  add X       drop
2068          *    delete X    add X       drop
2069          *    delete X    add Y       OK
2070          *    add X       delete all  drop
2071          *    add X       delete X    drop
2072          *    add X       add X       drop
2073          *    add X       add Y       if SV, drop else OK
2074          *
2075          * 4. Swap original modlist back in response callback so
2076          *    that accesslog logs the original mod.
2077          *
2078          * Even if the mod is newer, other out-of-order changes may
2079          * have been committed, forcing us to tweak the modlist:
2080          * 1. Save/copy original modlist.
2081          * 2. Change deletes to soft deletes.
2082          * 3. Change Adds of single-valued attrs to Replace.
2083          */
2084
2085         newlist = mods_dup( op, op->orm_modlist, match );
2086
2087         /* mod is older */
2088         if ( match < 0 ) {
2089                 Operation op2 = *op;
2090                 AttributeName an[2];
2091                 const char *text;
2092                 struct berval bv;
2093                 char *ptr;
2094                 Modifications *ml;
2095                 int size, rc;
2096                 SlapReply rs1 = {0};
2097                 resolve_ctxt rx;
2098                 slap_callback cb = { NULL, syncrepl_resolve_cb, NULL, NULL };
2099
2100                 rx.rx_si = si;
2101                 rx.rx_mods = newlist;
2102                 cb.sc_private = &rx;
2103
2104                 op2.o_tag = LDAP_REQ_SEARCH;
2105                 op2.ors_scope = LDAP_SCOPE_SUBTREE;
2106                 op2.ors_deref = LDAP_DEREF_NEVER;
2107                 op2.o_req_dn = si->si_logbase;
2108                 op2.o_req_ndn = si->si_logbase;
2109                 op2.ors_tlimit = SLAP_NO_LIMIT;
2110                 op2.ors_slimit = SLAP_NO_LIMIT;
2111                 op2.ors_limit = NULL;
2112                 memset( an, 0, sizeof(an));
2113                 an[0].an_desc = ad_reqMod;
2114                 an[0].an_name = ad_reqMod->ad_cname;
2115                 op2.ors_attrs = an;
2116                 op2.ors_attrsonly = 0;
2117
2118                 bv = mod->sml_nvalues[0];
2119
2120                 size = sizeof("(&(entryCSN>=)(reqDN=))");
2121                 size += bv.bv_len + op->o_req_ndn.bv_len + si->si_logfilterstr.bv_len;
2122                 op2.ors_filterstr.bv_val = op->o_tmpalloc( size, op->o_tmpmemctx );
2123                 op2.ors_filterstr.bv_len = sprintf(op2.ors_filterstr.bv_val,
2124                         "(&(entryCSN>=%s)(reqDN=%s)%s)",
2125                         bv.bv_val, op->o_req_ndn.bv_val, si->si_logfilterstr.bv_val );
2126                 op2.ors_filter = str2filter_x( op, op2.ors_filterstr.bv_val );
2127
2128                 op2.o_callback = &cb;
2129                 op2.o_bd = select_backend( &op2.o_req_ndn, 1 );
2130                 op2.o_bd->be_search( &op2, &rs1 );
2131                 newlist = rx.rx_mods;
2132         }
2133
2134         {
2135                 slap_callback *sc = op->o_tmpalloc( sizeof(slap_callback) +
2136                         sizeof(modify_ctxt), op->o_tmpmemctx );
2137                 modify_ctxt *mx = (modify_ctxt *)(sc+1);
2138                 Modifications *ml;
2139
2140                 sc->sc_response = syncrepl_modify_cb;
2141                 sc->sc_private = mx;
2142                 sc->sc_next = op->o_callback;
2143                 sc->sc_cleanup = NULL;
2144                 op->o_callback = sc;
2145                 op->orm_no_opattrs = 1;
2146                 mx->mx_orig = op->orm_modlist;
2147                 mx->mx_free = newlist;
2148                 for ( ml = newlist; ml; ml=ml->sml_next ) {
2149                         if ( ml->sml_flags == SLAP_MOD_INTERNAL ) {
2150                                 ml->sml_flags = 0;
2151                                 ml->sml_op = SLAP_MOD_SOFTDEL;
2152                         }
2153                         else if ( ml->sml_op == LDAP_MOD_DELETE )
2154                                 ml->sml_op = SLAP_MOD_SOFTDEL;
2155                         else if ( ml->sml_op == LDAP_MOD_ADD &&
2156                                 ml->sml_desc->ad_type->sat_atype.at_single_value )
2157                                 ml->sml_op = LDAP_MOD_REPLACE;
2158                 }
2159                 op->orm_modlist = newlist;
2160                 op->o_csn = mod->sml_nvalues[0];
2161         }
2162         return SLAP_CB_CONTINUE;
2163 }
2164
2165 static int
2166 syncrepl_message_to_op(
2167         syncinfo_t      *si,
2168         Operation       *op,
2169         LDAPMessage     *msg
2170 )
2171 {
2172         BerElement      *ber = NULL;
2173         Modifications   *modlist = NULL;
2174         logschema *ls;
2175         SlapReply rs = { REP_RESULT };
2176         slap_callback cb = { NULL, null_callback, NULL, NULL };
2177
2178         const char      *text;
2179         char txtbuf[SLAP_TEXT_BUFLEN];
2180         size_t textlen = sizeof txtbuf;
2181
2182         struct berval   bdn, dn = BER_BVNULL, ndn;
2183         struct berval   bv, bv2, *bvals = NULL;
2184         struct berval   rdn = BER_BVNULL, sup = BER_BVNULL,
2185                 prdn = BER_BVNULL, nrdn = BER_BVNULL,
2186                 psup = BER_BVNULL, nsup = BER_BVNULL;
2187         int             rc, deleteOldRdn = 0, freeReqDn = 0;
2188         int             do_graduate = 0;
2189
2190         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
2191                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
2192                         "Message type should be entry (%d)",
2193                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
2194                 return -1;
2195         }
2196
2197         if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
2198                 ls = &accesslog_sc;
2199         else
2200                 ls = &changelog_sc;
2201
2202         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
2203
2204         if ( rc != LDAP_SUCCESS ) {
2205                 Debug( LDAP_DEBUG_ANY,
2206                         "syncrepl_message_to_op: %s dn get failed (%d)",
2207                         si->si_ridtxt, rc, 0 );
2208                 return rc;
2209         }
2210
2211         op->o_tag = LBER_DEFAULT;
2212         op->o_bd = si->si_wbe;
2213
2214         if ( BER_BVISEMPTY( &bdn )) {
2215                 Debug( LDAP_DEBUG_ANY,
2216                         "syncrepl_message_to_op: %s got empty dn",
2217                         si->si_ridtxt, 0, 0 );
2218                 return LDAP_OTHER;
2219         }
2220
2221         while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ) )
2222                 == LDAP_SUCCESS ) {
2223                 if ( bv.bv_val == NULL )
2224                         break;
2225
2226                 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn ) ) {
2227                         bdn = bvals[0];
2228                         REWRITE_DN( si, bdn, bv2, dn, ndn );
2229                         if ( rc != LDAP_SUCCESS ) {
2230                                 Debug( LDAP_DEBUG_ANY,
2231                                         "syncrepl_message_to_op: %s "
2232                                         "dn \"%s\" normalization failed (%d)",
2233                                         si->si_ridtxt, bdn.bv_val, rc );
2234                                 rc = -1;
2235                                 ch_free( bvals );
2236                                 goto done;
2237                         }
2238                         ber_dupbv( &op->o_req_dn, &dn );
2239                         ber_dupbv( &op->o_req_ndn, &ndn );
2240                         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
2241                         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
2242                         freeReqDn = 1;
2243                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req ) ) {
2244                         int i = verb_to_mask( bvals[0].bv_val, modops );
2245                         if ( i < 0 ) {
2246                                 Debug( LDAP_DEBUG_ANY,
2247                                         "syncrepl_message_to_op: %s unknown op %s",
2248                                         si->si_ridtxt, bvals[0].bv_val, 0 );
2249                                 ch_free( bvals );
2250                                 rc = -1;
2251                                 goto done;
2252                         }
2253                         op->o_tag = modops[i].mask;
2254                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod ) ) {
2255                         /* Parse attribute into modlist */
2256                         if ( si->si_syncdata == SYNCDATA_ACCESSLOG ) {
2257                                 rc = syncrepl_accesslog_mods( si, bvals, &modlist );
2258                         } else {
2259                                 rc = syncrepl_changelog_mods( si, bvals, &modlist );
2260                         }
2261                         if ( rc ) goto done;
2262                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn ) ) {
2263                         rdn = bvals[0];
2264                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn ) ) {
2265                         if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ) ) {
2266                                 deleteOldRdn = 1;
2267                         }
2268                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup ) ) {
2269                         sup = bvals[0];
2270                 } else if ( !ber_bvstrcasecmp( &bv,
2271                         &slap_schema.si_ad_entryCSN->ad_cname ) )
2272                 {
2273                         slap_queue_csn( op, bvals );
2274                         do_graduate = 1;
2275                 }
2276                 ch_free( bvals );
2277         }
2278
2279         /* If we didn't get a mod type or a target DN, bail out */
2280         if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn ) ) {
2281                 rc = -1;
2282                 goto done;
2283         }
2284
2285         op->o_callback = &cb;
2286         slap_op_time( &op->o_time, &op->o_tincr );
2287
2288         switch( op->o_tag ) {
2289         case LDAP_REQ_ADD:
2290         case LDAP_REQ_MODIFY:
2291                 /* If we didn't get required data, bail */
2292                 if ( !modlist ) goto done;
2293
2294                 rc = slap_mods_check( op, modlist, &text, txtbuf, textlen, NULL );
2295
2296                 if ( rc != LDAP_SUCCESS ) {
2297                         Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
2298                                 "mods check (%s)\n",
2299                                 si->si_ridtxt, text, 0 );
2300                         goto done;
2301                 }
2302
2303                 if ( op->o_tag == LDAP_REQ_ADD ) {
2304                         Entry *e = entry_alloc();
2305                         op->ora_e = e;
2306                         op->ora_e->e_name = op->o_req_dn;
2307                         op->ora_e->e_nname = op->o_req_ndn;
2308                         freeReqDn = 0;
2309                         rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
2310                         if( rc != LDAP_SUCCESS ) {
2311                                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
2312                                 "mods2entry (%s)\n",
2313                                         si->si_ridtxt, text, 0 );
2314                         } else {
2315                                 rc = op->o_bd->be_add( op, &rs );
2316                                 Debug( LDAP_DEBUG_SYNC,
2317                                         "syncrepl_message_to_op: %s be_add %s (%d)\n", 
2318                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
2319                                 do_graduate = 0;
2320                         }
2321                         if ( e == op->ora_e )
2322                                 be_entry_release_w( op, op->ora_e );
2323                 } else {
2324                         OpExtraSync oes;
2325                         op->orm_modlist = modlist;
2326                         op->o_bd = si->si_wbe;
2327                         /* delta-mmr needs additional checks in syncrepl_op_modify */
2328                         if ( SLAP_MULTIMASTER( op->o_bd )) {
2329                                 oes.oe.oe_key = (void *)syncrepl_message_to_op;
2330                                 oes.oe_si = si;
2331                                 LDAP_SLIST_INSERT_HEAD( &op->o_extra, &oes.oe, oe_next );
2332                         }
2333                         rc = op->o_bd->be_modify( op, &rs );
2334                         if ( SLAP_MULTIMASTER( op->o_bd )) {
2335                                 LDAP_SLIST_REMOVE( &op->o_extra, &oes.oe, OpExtra, oe_next );
2336                                 BER_BVZERO( &op->o_csn );
2337                         }
2338                         modlist = op->orm_modlist;
2339                         Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
2340                                 "syncrepl_message_to_op: %s be_modify %s (%d)\n", 
2341                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2342                         op->o_bd = si->si_be;
2343                         do_graduate = 0;
2344                 }
2345                 break;
2346         case LDAP_REQ_MODRDN:
2347                 if ( BER_BVISNULL( &rdn ) ) goto done;
2348
2349                 if ( rdnPretty( NULL, &rdn, &prdn, NULL ) ) {
2350                         goto done;
2351                 }
2352                 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ) ) {
2353                         goto done;
2354                 }
2355                 if ( !BER_BVISNULL( &sup ) ) {
2356                         REWRITE_DN( si, sup, bv2, psup, nsup );
2357                         if ( rc )
2358                                 goto done;
2359                         op->orr_newSup = &psup;
2360                         op->orr_nnewSup = &nsup;
2361                 } else {
2362                         op->orr_newSup = NULL;
2363                         op->orr_nnewSup = NULL;
2364                 }
2365                 op->orr_newrdn = prdn;
2366                 op->orr_nnewrdn = nrdn;
2367                 op->orr_deleteoldrdn = deleteOldRdn;
2368                 op->orr_modlist = NULL;
2369                 if ( slap_modrdn2mods( op, &rs ) ) {
2370                         goto done;
2371                 }
2372
2373                 /* Append modlist for operational attrs */
2374                 {
2375                         Modifications *m;
2376
2377                         for ( m = op->orr_modlist; m->sml_next; m = m->sml_next )
2378                                 ;
2379                         m->sml_next = modlist;
2380                         modlist = NULL;
2381                 }
2382                 rc = op->o_bd->be_modrdn( op, &rs );
2383                 slap_mods_free( op->orr_modlist, 1 );
2384                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
2385                         "syncrepl_message_to_op: %s be_modrdn %s (%d)\n", 
2386                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
2387                 do_graduate = 0;
2388                 break;
2389         case LDAP_REQ_DELETE:
2390                 rc = op->o_bd->be_delete( op, &rs );
2391                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
2392                         "syncrepl_message_to_op: %s be_delete %s (%d)\n", 
2393                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
2394                 do_graduate = 0;
2395                 break;
2396         }
2397 done:
2398         if ( do_graduate )
2399                 slap_graduate_commit_csn( op );
2400         op->o_bd = si->si_be;
2401         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2402         BER_BVZERO( &op->o_csn );
2403         if ( modlist ) {
2404                 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
2405         }
2406         if ( !BER_BVISNULL( &rdn ) ) {
2407                 if ( !BER_BVISNULL( &nsup ) ) {
2408                         ch_free( nsup.bv_val );
2409                 }
2410                 if ( !BER_BVISNULL( &psup ) ) {
2411                         ch_free( psup.bv_val );
2412                 }
2413                 if ( !BER_BVISNULL( &nrdn ) ) {
2414                         ch_free( nrdn.bv_val );
2415                 }
2416                 if ( !BER_BVISNULL( &prdn ) ) {
2417                         ch_free( prdn.bv_val );
2418                 }
2419         }
2420         if ( freeReqDn ) {
2421                 ch_free( op->o_req_ndn.bv_val );
2422                 ch_free( op->o_req_dn.bv_val );
2423         }
2424         ber_free( ber, 0 );
2425         return rc;
2426 }
2427
2428 static int
2429 syncrepl_message_to_entry(
2430         syncinfo_t      *si,
2431         Operation       *op,
2432         LDAPMessage     *msg,
2433         Modifications   **modlist,
2434         Entry                   **entry,
2435         int             syncstate,
2436         struct berval   *syncUUID
2437 )
2438 {
2439         Entry           *e = NULL;
2440         BerElement      *ber = NULL;
2441         Modifications   tmp;
2442         Modifications   *mod;
2443         Modifications   **modtail = modlist;
2444
2445         const char      *text;
2446         char txtbuf[SLAP_TEXT_BUFLEN];
2447         size_t textlen = sizeof txtbuf;
2448
2449         struct berval   bdn = BER_BVNULL, dn, ndn, bv2;
2450         int             rc, is_ctx;
2451
2452         *modlist = NULL;
2453
2454         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
2455                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s "
2456                         "Message type should be entry (%d)",
2457                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
2458                 return -1;
2459         }
2460
2461         op->o_tag = LDAP_REQ_ADD;
2462
2463         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
2464         if ( rc != LDAP_SUCCESS ) {
2465                 Debug( LDAP_DEBUG_ANY,
2466                         "syncrepl_message_to_entry: %s dn get failed (%d)",
2467                         si->si_ridtxt, rc, 0 );
2468                 return rc;
2469         }
2470
2471         if ( BER_BVISEMPTY( &bdn ) && !BER_BVISEMPTY( &op->o_bd->be_nsuffix[0] ) ) {
2472                 Debug( LDAP_DEBUG_ANY,
2473                         "syncrepl_message_to_entry: %s got empty dn",
2474                         si->si_ridtxt, 0, 0 );
2475                 return LDAP_OTHER;
2476         }
2477
2478         /* syncUUID[0] is normalized UUID received over the wire
2479          * syncUUID[1] is denormalized UUID, generated here
2480          */
2481         (void)slap_uuidstr_from_normalized( &syncUUID[1], &syncUUID[0], op->o_tmpmemctx );
2482         Debug( LDAP_DEBUG_SYNC,
2483                 "syncrepl_message_to_entry: %s DN: %s, UUID: %s\n",
2484                 si->si_ridtxt, bdn.bv_val, syncUUID[1].bv_val );
2485
2486         if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
2487                 /* NOTE: this could be done even before decoding the DN,
2488                  * although encoding errors wouldn't be detected */
2489                 rc = LDAP_SUCCESS;
2490                 goto done;
2491         }
2492
2493         if ( entry == NULL ) {
2494                 return -1;
2495         }
2496
2497         REWRITE_DN( si, bdn, bv2, dn, ndn );
2498         if ( rc != LDAP_SUCCESS ) {
2499                 /* One of the things that could happen is that the schema
2500                  * is not lined-up; this could result in unknown attributes.
2501                  * A value non conformant to the syntax should be unlikely,
2502                  * except when replicating between different versions
2503                  * of the software, or when syntax validation bugs are fixed
2504                  */
2505                 Debug( LDAP_DEBUG_ANY,
2506                         "syncrepl_message_to_entry: "
2507                         "%s dn \"%s\" normalization failed (%d)",
2508                         si->si_ridtxt, bdn.bv_val, rc );
2509                 return rc;
2510         }
2511
2512         ber_dupbv( &op->o_req_dn, &dn );
2513         ber_dupbv( &op->o_req_ndn, &ndn );
2514         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
2515         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
2516
2517         is_ctx = dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] );
2518
2519         e = entry_alloc();
2520         e->e_name = op->o_req_dn;
2521         e->e_nname = op->o_req_ndn;
2522
2523         while ( ber_remaining( ber ) ) {
2524                 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
2525                         LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
2526                 {
2527                         break;
2528                 }
2529
2530                 /* Drop all updates to the contextCSN of the context entry
2531                  * (ITS#4622, etc.)
2532                  */
2533                 if ( is_ctx && !strcasecmp( tmp.sml_type.bv_val,
2534                         slap_schema.si_ad_contextCSN->ad_cname.bv_val )) {
2535                         ber_bvarray_free( tmp.sml_values );
2536                         continue;
2537                 }
2538
2539                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ) );
2540
2541                 mod->sml_op = LDAP_MOD_REPLACE;
2542                 mod->sml_flags = 0;
2543                 mod->sml_next = NULL;
2544                 mod->sml_desc = NULL;
2545                 mod->sml_type = tmp.sml_type;
2546                 mod->sml_values = tmp.sml_values;
2547                 mod->sml_nvalues = NULL;
2548                 mod->sml_numvals = 0;   /* slap_mods_check will set this */
2549
2550 #ifdef ENABLE_REWRITE
2551                 if (si->si_rewrite) {
2552                         AttributeDescription *ad = NULL;
2553                         slap_bv2ad( &tmp.sml_type, &ad, &text );
2554                         if ( ad ) {
2555                                 mod->sml_desc = ad;
2556                                 mod->sml_type = ad->ad_cname;
2557                                 if ( ad->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) {
2558                                         int i;
2559                                         for ( i = 0; tmp.sml_values[i].bv_val; i++ ) {
2560                                                 syncrepl_rewrite_dn( si, &tmp.sml_values[i], &bv2);
2561                                                 if ( !BER_BVISNULL( &bv2 )) {
2562                                                         ber_memfree( tmp.sml_values[i].bv_val );
2563                                                         tmp.sml_values[i] = bv2;
2564                                                 }
2565                                         }
2566                                 }
2567                         }
2568                 }
2569 #endif
2570                 *modtail = mod;
2571                 modtail = &mod->sml_next;
2572         }
2573
2574         if ( *modlist == NULL ) {
2575                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s no attributes\n",
2576                         si->si_ridtxt, 0, 0 );
2577                 rc = -1;
2578                 goto done;
2579         }
2580
2581         rc = slap_mods_check( op, *modlist, &text, txtbuf, textlen, NULL );
2582
2583         if ( rc != LDAP_SUCCESS ) {
2584                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods check (%s)\n",
2585                         si->si_ridtxt, text, 0 );
2586                 goto done;
2587         }
2588
2589         /* Strip out dynamically generated attrs */
2590         for ( modtail = modlist; *modtail ; ) {
2591                 mod = *modtail;
2592                 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
2593                         *modtail = mod->sml_next;
2594                         slap_mod_free( &mod->sml_mod, 0 );
2595                         ch_free( mod );
2596                 } else {
2597                         modtail = &mod->sml_next;
2598                 }
2599         }
2600
2601         /* Strip out attrs in exattrs list */
2602         for ( modtail = modlist; *modtail ; ) {
2603                 mod = *modtail;
2604                 if ( ldap_charray_inlist( si->si_exattrs,
2605                         mod->sml_desc->ad_type->sat_cname.bv_val ) )
2606                 {
2607                         *modtail = mod->sml_next;
2608                         slap_mod_free( &mod->sml_mod, 0 );
2609                         ch_free( mod );
2610                 } else {
2611                         modtail = &mod->sml_next;
2612                 }
2613         }
2614
2615         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
2616         if( rc != LDAP_SUCCESS ) {
2617                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods2entry (%s)\n",
2618                         si->si_ridtxt, text, 0 );
2619         }
2620
2621 done:
2622         ber_free( ber, 0 );
2623         if ( rc != LDAP_SUCCESS ) {
2624                 if ( e ) {
2625                         entry_free( e );
2626                         e = NULL;
2627                 }
2628         }
2629         if ( entry )
2630                 *entry = e;
2631
2632         return rc;
2633 }
2634
2635 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
2636
2637 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
2638  * entry if a previous refresh was interrupted before sending us a new
2639  * context state. We try to compare the new entry to the existing entry
2640  * and ignore the new entry if they are the same.
2641  *
2642  * Also, we may get an update where the entryDN has changed, due to
2643  * a ModDn on the provider. We detect this as well, so we can issue
2644  * the corresponding operation locally.
2645  *
2646  * In the case of a modify, we get a list of all the attributes
2647  * in the original entry. Rather than deleting the entry and re-adding it,
2648  * we issue a Modify request that deletes all the attributes and adds all
2649  * the new ones. This avoids the issue of trying to delete/add a non-leaf
2650  * entry.
2651  *
2652  * We otherwise distinguish ModDN from Modify; in the case of
2653  * a ModDN we just use the CSN, modifyTimestamp and modifiersName
2654  * operational attributes from the entry, and do a regular ModDN.
2655  */
2656 typedef struct dninfo {
2657         Entry *new_entry;
2658         struct berval dn;
2659         struct berval ndn;
2660         struct berval nnewSup;
2661         int renamed;    /* Was an existing entry renamed? */
2662         int delOldRDN;  /* Was old RDN deleted? */
2663         Modifications **modlist;        /* the modlist we received */
2664         Modifications *mods;    /* the modlist we compared */
2665         int oldNcount;          /* #values of old naming attr */
2666         AttributeDescription *oldDesc;  /* for renames */
2667         AttributeDescription *newDesc;  /* for renames */
2668 } dninfo;
2669
2670 /* return 1 if inserted, 0 otherwise */
2671 static int
2672 avl_presentlist_insert(
2673         syncinfo_t* si,
2674         struct berval *syncUUID )
2675 {
2676         struct berval *syncuuid_bv = ch_malloc( sizeof( struct berval ) + syncUUID->bv_len + 1 );
2677
2678         syncuuid_bv->bv_len = syncUUID->bv_len;
2679         syncuuid_bv->bv_val = (char *)&syncuuid_bv[1];
2680         AC_MEMCPY( syncuuid_bv->bv_val, syncUUID->bv_val, syncUUID->bv_len );
2681         syncuuid_bv->bv_val[ syncuuid_bv->bv_len ] = '\0';
2682
2683         if ( avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
2684                 syncuuid_cmp, avl_dup_error ) )
2685         {
2686                 ch_free( syncuuid_bv );
2687                 return 0;
2688         }
2689
2690         return 1;
2691 }
2692
2693 static int
2694 syncrepl_entry(
2695         syncinfo_t* si,
2696         Operation *op,
2697         Entry* entry,
2698         Modifications** modlist,
2699         int syncstate,
2700         struct berval* syncUUID,
2701         struct berval* syncCSN )
2702 {
2703         Backend *be = op->o_bd;
2704         slap_callback   cb = { NULL, NULL, NULL, NULL };
2705         int syncuuid_inserted = 0;
2706
2707         SlapReply       rs_search = {REP_RESULT};
2708         Filter f = {0};
2709         AttributeAssertion ava = ATTRIBUTEASSERTION_INIT;
2710         int rc = LDAP_SUCCESS;
2711
2712         struct berval pdn = BER_BVNULL;
2713         dninfo dni = {0};
2714         int     retry = 1;
2715         int     freecsn = 1;
2716
2717         Debug( LDAP_DEBUG_SYNC,
2718                 "syncrepl_entry: %s LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_%s)\n",
2719                 si->si_ridtxt, syncrepl_state2str( syncstate ), 0 );
2720
2721         if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD ) ) {
2722                 if ( !si->si_refreshPresent && !si->si_refreshDone ) {
2723                         syncuuid_inserted = avl_presentlist_insert( si, syncUUID );
2724                 }
2725         }
2726
2727         if ( syncstate == LDAP_SYNC_PRESENT ) {
2728                 return 0;
2729         } else if ( syncstate != LDAP_SYNC_DELETE ) {
2730                 if ( entry == NULL ) {
2731                         return 0;
2732                 }
2733         }
2734
2735         if ( syncstate != LDAP_SYNC_DELETE ) {
2736                 Attribute       *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
2737
2738                 if ( a == NULL ) {
2739                         /* add if missing */
2740                         attr_merge_one( entry, slap_schema.si_ad_entryUUID,
2741                                 &syncUUID[1], syncUUID );
2742
2743                 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
2744                         /* replace only if necessary */
2745                         if ( a->a_nvals != a->a_vals ) {
2746                                 ber_memfree( a->a_nvals[0].bv_val );
2747                                 ber_dupbv( &a->a_nvals[0], syncUUID );
2748                         }
2749                         ber_memfree( a->a_vals[0].bv_val );
2750                         ber_dupbv( &a->a_vals[0], &syncUUID[1] );
2751                 }
2752         }
2753
2754         f.f_choice = LDAP_FILTER_EQUALITY;
2755         f.f_ava = &ava;
2756         ava.aa_desc = slap_schema.si_ad_entryUUID;
2757         ava.aa_value = *syncUUID;
2758
2759         if ( syncuuid_inserted ) {
2760                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
2761                         si->si_ridtxt, syncUUID[1].bv_val, 0 );
2762         }
2763         op->ors_filter = &f;
2764
2765         op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID[1].bv_len;
2766         op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
2767                 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx ); 
2768         AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
2769         AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
2770                 syncUUID[1].bv_val, syncUUID[1].bv_len );
2771         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
2772         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
2773
2774         op->o_tag = LDAP_REQ_SEARCH;
2775         op->ors_scope = LDAP_SCOPE_SUBTREE;
2776         op->ors_deref = LDAP_DEREF_NEVER;
2777
2778         /* get the entry for this UUID */
2779 #ifdef ENABLE_REWRITE
2780         if ( si->si_rewrite ) {
2781                 op->o_req_dn = si->si_suffixm;
2782                 op->o_req_ndn = si->si_suffixm;
2783         } else
2784 #endif
2785         {
2786                 op->o_req_dn = si->si_base;
2787                 op->o_req_ndn = si->si_base;
2788         }
2789
2790         op->o_time = slap_get_time();
2791         op->ors_tlimit = SLAP_NO_LIMIT;
2792         op->ors_slimit = 1;
2793         op->ors_limit = NULL;
2794
2795         op->ors_attrs = slap_anlist_all_attributes;
2796         op->ors_attrsonly = 0;
2797
2798         /* set callback function */
2799         op->o_callback = &cb;
2800         cb.sc_response = dn_callback;
2801         cb.sc_private = &dni;
2802         dni.new_entry = entry;
2803         dni.modlist = modlist;
2804
2805         rc = be->be_search( op, &rs_search );
2806         Debug( LDAP_DEBUG_SYNC,
2807                         "syncrepl_entry: %s be_search (%d)\n", 
2808                         si->si_ridtxt, rc, 0 );
2809
2810         if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
2811                 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2812         }
2813
2814         cb.sc_response = null_callback;
2815         cb.sc_private = si;
2816
2817         if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
2818                 Debug( LDAP_DEBUG_SYNC,
2819                                 "syncrepl_entry: %s %s\n",
2820                                 si->si_ridtxt, entry->e_name.bv_val, 0 );
2821         } else {
2822                 Debug( LDAP_DEBUG_SYNC,
2823                                 "syncrepl_entry: %s %s\n",
2824                                 si->si_ridtxt, dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0 );
2825         }
2826
2827         assert( BER_BVISNULL( &op->o_csn ) );
2828         if ( syncCSN ) {
2829                 slap_queue_csn( op, syncCSN );
2830         }
2831
2832         slap_op_time( &op->o_time, &op->o_tincr );
2833         switch ( syncstate ) {
2834         case LDAP_SYNC_ADD:
2835         case LDAP_SYNC_MODIFY:
2836                 if ( BER_BVISNULL( &op->o_csn ))
2837                 {
2838
2839                         Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
2840                         if ( a ) {
2841                                 /* FIXME: op->o_csn is assumed to be
2842                                  * on the thread's slab; this needs
2843                                  * to be cleared ASAP.
2844                                  */
2845                                 op->o_csn = a->a_vals[0];
2846                                 freecsn = 0;
2847                         }
2848                 }
2849 retry_add:;
2850                 if ( BER_BVISNULL( &dni.dn ) ) {
2851                         SlapReply       rs_add = {REP_RESULT};
2852
2853                         op->o_req_dn = entry->e_name;
2854                         op->o_req_ndn = entry->e_nname;
2855                         op->o_tag = LDAP_REQ_ADD;
2856                         op->ora_e = entry;
2857                         op->o_bd = si->si_wbe;
2858
2859                         rc = op->o_bd->be_add( op, &rs_add );
2860                         Debug( LDAP_DEBUG_SYNC,
2861                                         "syncrepl_entry: %s be_add %s (%d)\n", 
2862                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
2863                         switch ( rs_add.sr_err ) {
2864                         case LDAP_SUCCESS:
2865                                 if ( op->ora_e == entry ) {
2866                                         be_entry_release_w( op, entry );
2867                                 }
2868                                 entry = NULL;
2869                                 break;
2870
2871                         case LDAP_REFERRAL:
2872                         /* we assume that LDAP_NO_SUCH_OBJECT is returned 
2873                          * only if the suffix entry is not present.
2874                          * This should not happen during Persist phase.
2875                          */
2876                         case LDAP_NO_SUCH_OBJECT:
2877                                 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST &&
2878                                         si->si_refreshDone ) {
2879                                         /* Something's wrong, start over */
2880                                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
2881                                         si->si_syncCookie.ctxcsn = NULL;
2882                                         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
2883                                         ber_bvarray_free( si->si_cookieState->cs_vals );
2884                                         ch_free( si->si_cookieState->cs_sids );
2885                                         si->si_cookieState->cs_vals = NULL;
2886                                         si->si_cookieState->cs_sids = 0;
2887                                         si->si_cookieState->cs_num = 0;
2888                                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2889                                         return LDAP_NO_SUCH_OBJECT;
2890                                 }
2891                                 rc = syncrepl_add_glue( op, entry );
2892                                 entry = NULL;
2893                                 break;
2894
2895                         /* if an entry was added via syncrepl_add_glue(),
2896                          * it likely has no entryUUID, so the previous
2897                          * be_search() doesn't find it.  In this case,
2898                          * give syncrepl a chance to modify it. Also
2899                          * allow for entries that were recreated with the
2900                          * same DN but a different entryUUID.
2901                          */
2902                         case LDAP_ALREADY_EXISTS:
2903                                 if ( retry ) {
2904                                         Operation       op2 = *op;
2905                                         SlapReply       rs2 = { REP_RESULT };
2906                                         slap_callback   cb2 = { 0 };
2907
2908                                         op2.o_bd = be;
2909                                         op2.o_tag = LDAP_REQ_SEARCH;
2910                                         op2.o_req_dn = entry->e_name;
2911                                         op2.o_req_ndn = entry->e_nname;
2912                                         op2.ors_scope = LDAP_SCOPE_BASE;
2913                                         op2.ors_deref = LDAP_DEREF_NEVER;
2914                                         op2.ors_attrs = slap_anlist_all_attributes;
2915                                         op2.ors_attrsonly = 0;
2916                                         op2.ors_limit = NULL;
2917                                         op2.ors_slimit = 1;
2918                                         op2.ors_tlimit = SLAP_NO_LIMIT;
2919
2920                                         f.f_choice = LDAP_FILTER_PRESENT;
2921                                         f.f_desc = slap_schema.si_ad_objectClass;
2922                                         op2.ors_filter = &f;
2923                                         op2.ors_filterstr = generic_filterstr;
2924
2925                                         op2.o_callback = &cb2;
2926                                         cb2.sc_response = dn_callback;
2927                                         cb2.sc_private = &dni;
2928
2929                                         rc = be->be_search( &op2, &rs2 );
2930                                         if ( rc ) goto done;
2931
2932                                         retry = 0;
2933                                         slap_op_time( &op->o_time, &op->o_tincr );
2934                                         goto retry_add;
2935                                 }
2936                                 /* FALLTHRU */
2937
2938                         default:
2939                                 Debug( LDAP_DEBUG_ANY,
2940                                         "syncrepl_entry: %s be_add %s failed (%d)\n",
2941                                         si->si_ridtxt, op->o_req_dn.bv_val, rs_add.sr_err );
2942                                 break;
2943                         }
2944                         syncCSN = NULL;
2945                         op->o_bd = be;
2946                         goto done;
2947                 }
2948                 /* FALLTHRU */
2949                 op->o_req_dn = dni.dn;
2950                 op->o_req_ndn = dni.ndn;
2951                 if ( dni.renamed ) {
2952                         struct berval noldp, newp;
2953                         Modifications *mod, **modtail, **ml, *m2;
2954                         int i, got_replace = 0, just_rename = 0;
2955                         SlapReply rs_modify = {REP_RESULT};
2956
2957                         op->o_tag = LDAP_REQ_MODRDN;
2958                         dnRdn( &entry->e_name, &op->orr_newrdn );
2959                         dnRdn( &entry->e_nname, &op->orr_nnewrdn );
2960
2961                         if ( !BER_BVISNULL( &dni.nnewSup )) {
2962                                 dnParent( &entry->e_name, &newp );
2963                                 op->orr_newSup = &newp;
2964                                 op->orr_nnewSup = &dni.nnewSup;
2965                         } else {
2966                                 op->orr_newSup = NULL;
2967                                 op->orr_nnewSup = NULL;
2968                         }
2969                         op->orr_deleteoldrdn = dni.delOldRDN;
2970                         op->orr_modlist = NULL;
2971                         if ( ( rc = slap_modrdn2mods( op, &rs_modify ) ) ) {
2972                                 goto done;
2973                         }
2974
2975                         /* Drop the RDN-related mods from this op, because their
2976                          * equivalents were just setup by slap_modrdn2mods.
2977                          *
2978                          * If delOldRDN is TRUE then we should see a delete modop
2979                          * for oldDesc. We might see a replace instead.
2980                          *  delete with no values: therefore newDesc != oldDesc.
2981                          *   if oldNcount == 1, then Drop this op.
2982                          *  delete with 1 value: can only be the oldRDN value. Drop op.
2983                          *  delete with N values: Drop oldRDN value, keep remainder.
2984                          *  replace with 1 value: if oldNcount == 1 and
2985                          *     newDesc == oldDesc, Drop this op.
2986                          * Any other cases must be left intact.
2987                          *
2988                          * We should also see an add modop for newDesc. (But not if
2989                          * we got a replace modop due to delOldRDN.) If it has
2990                          * multiple values, we'll have to drop the new RDN value.
2991                          */
2992                         modtail = &op->orr_modlist;
2993                         if ( dni.delOldRDN ) {
2994                                 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
2995                                         if ( (*ml)->sml_desc == dni.oldDesc ) {
2996                                                 mod = *ml;
2997                                                 if ( mod->sml_op == LDAP_MOD_REPLACE &&
2998                                                         dni.oldDesc != dni.newDesc ) {
2999                                                         /* This Replace is due to other Mods.
3000                                                          * Just let it ride.
3001                                                          */
3002                                                         continue;
3003                                                 }
3004                                                 if ( mod->sml_numvals <= 1 &&
3005                                                         dni.oldNcount == 1 &&
3006                                                         ( mod->sml_op == LDAP_MOD_DELETE ||
3007                                                           mod->sml_op == LDAP_MOD_REPLACE )) {
3008                                                         if ( mod->sml_op == LDAP_MOD_REPLACE )
3009                                                                 got_replace = 1;
3010                                                         /* Drop this op */
3011                                                         *ml = mod->sml_next;
3012                                                         mod->sml_next = NULL;
3013                                                         slap_mods_free( mod, 1 );
3014                                                         break;
3015                                                 }
3016                                                 if ( mod->sml_op != LDAP_MOD_DELETE || mod->sml_numvals == 0 )
3017                                                         continue;
3018                                                 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
3019                                                         if ( m2->sml_desc == dni.oldDesc &&
3020                                                                 m2->sml_op == LDAP_MOD_DELETE ) break;
3021                                                 }
3022                                                 for ( i=0; i<mod->sml_numvals; i++ ) {
3023                                                         if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
3024                                                                 mod->sml_numvals--;
3025                                                                 ch_free( mod->sml_values[i].bv_val );
3026                                                                 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
3027                                                                 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
3028                                                                 if ( mod->sml_nvalues ) {
3029                                                                         ch_free( mod->sml_nvalues[i].bv_val );
3030                                                                         mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
3031                                                                         BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
3032                                                                 }
3033                                                                 break;
3034                                                         }
3035                                                 }
3036                                                 if ( !mod->sml_numvals ) {
3037                                                         /* Drop this op */
3038                                                         *ml = mod->sml_next;
3039                                                         mod->sml_next = NULL;
3040                                                         slap_mods_free( mod, 1 );
3041                                                 }
3042                                                 break;
3043                                         }
3044                                 }
3045                         }
3046                         if ( !got_replace ) {
3047                                 for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next ) {
3048                                         if ( (*ml)->sml_desc == dni.newDesc ) {
3049                                                 mod = *ml;
3050                                                 if ( mod->sml_op != LDAP_MOD_ADD )
3051                                                         continue;
3052                                                 if ( mod->sml_numvals == 1 ) {
3053                                                         /* Drop this op */
3054                                                         *ml = mod->sml_next;
3055                                                         mod->sml_next = NULL;
3056                                                         slap_mods_free( mod, 1 );
3057                                                         break;
3058                                                 }
3059                                                 for ( m2 = op->orr_modlist; m2; m2=m2->sml_next ) {
3060                                                         if ( m2->sml_desc == dni.oldDesc &&
3061                                                                 m2->sml_op == SLAP_MOD_SOFTADD ) break;
3062                                                 }
3063                                                 for ( i=0; i<mod->sml_numvals; i++ ) {
3064                                                         if ( bvmatch( &mod->sml_values[i], &m2->sml_values[0] )) {
3065                                                                 mod->sml_numvals--;
3066                                                                 ch_free( mod->sml_values[i].bv_val );
3067                                                                 mod->sml_values[i] = mod->sml_values[mod->sml_numvals];
3068                                                                 BER_BVZERO( &mod->sml_values[mod->sml_numvals] );
3069                                                                 if ( mod->sml_nvalues ) {
3070                                                                         ch_free( mod->sml_nvalues[i].bv_val );
3071                                                                         mod->sml_nvalues[i] = mod->sml_nvalues[mod->sml_numvals];
3072                                                                         BER_BVZERO( &mod->sml_nvalues[mod->sml_numvals] );
3073                                                                 }
3074                                                                 break;
3075                                                         }
3076                                                 }
3077                                                 break;
3078                                         }
3079                                 }
3080                         }
3081
3082                         /* RDNs must be NUL-terminated for back-ldap */
3083                         noldp = op->orr_newrdn;
3084                         ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
3085                         noldp = op->orr_nnewrdn;
3086                         ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
3087
3088                         /* Setup opattrs too */
3089                         {
3090                                 static AttributeDescription *nullattr = NULL;
3091                                 static AttributeDescription **const opattrs[] = {
3092                                         &slap_schema.si_ad_entryCSN,
3093                                         &slap_schema.si_ad_modifiersName,
3094                                         &slap_schema.si_ad_modifyTimestamp,
3095                                         &nullattr
3096                                 };
3097                                 AttributeDescription *opattr;
3098                                 int i;
3099
3100                                 modtail = &m2;
3101                                 /* pull mod off incoming modlist */
3102                                 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
3103                                         for ( ml = &dni.mods; *ml; ml = &(*ml)->sml_next )
3104                                         {
3105                                                 if ( (*ml)->sml_desc == opattr ) {
3106                                                         mod = *ml;
3107                                                         *ml = mod->sml_next;
3108                                                         mod->sml_next = NULL;
3109                                                         *modtail = mod;
3110                                                         modtail = &mod->sml_next;
3111                                                         break;
3112                                                 }
3113                                         }
3114                                 }
3115                                 /* If there are still Modifications left, put the opattrs
3116                                  * back, and let be_modify run. Otherwise, append the opattrs
3117                                  * to the orr_modlist.
3118                                  */
3119                                 if ( dni.mods ) {
3120                                         mod = dni.mods;
3121                                         /* don't set a CSN for the rename op */
3122                                         if ( syncCSN )
3123                                                 slap_graduate_commit_csn( op );
3124                                 } else {
3125                                         mod = op->orr_modlist;
3126                                         just_rename = 1;
3127                                 }
3128                                 for ( ; mod->sml_next; mod=mod->sml_next );
3129                                 mod->sml_next = m2;
3130                         }
3131                         op->o_bd = si->si_wbe;
3132 retry_modrdn:;
3133                         rs_reinit( &rs_modify, REP_RESULT );
3134                         rc = op->o_bd->be_modrdn( op, &rs_modify );
3135
3136                         /* NOTE: noSuchObject should result because the new superior
3137                          * has not been added yet (ITS#6472) */
3138                         if ( rc == LDAP_NO_SUCH_OBJECT && op->orr_nnewSup != NULL ) {
3139                                 Operation op2 = *op;
3140                                 rc = syncrepl_add_glue_ancestors( &op2, entry );
3141                                 if ( rc == LDAP_SUCCESS ) {
3142                                         goto retry_modrdn;
3143                                 }
3144                         }
3145                 
3146                         op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
3147                         op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
3148
3149                         slap_mods_free( op->orr_modlist, 1 );
3150                         Debug( LDAP_DEBUG_SYNC,
3151                                         "syncrepl_entry: %s be_modrdn %s (%d)\n", 
3152                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
3153                         op->o_bd = be;
3154                         /* Renamed entries may still have other mods so just fallthru */
3155                         op->o_req_dn = entry->e_name;
3156                         op->o_req_ndn = entry->e_nname;
3157                         /* Use CSN on the modify */
3158                         if ( just_rename )
3159                                 syncCSN = NULL;
3160                         else if ( syncCSN )
3161                                 slap_queue_csn( op, syncCSN );
3162                 }
3163                 if ( dni.mods ) {
3164                         SlapReply rs_modify = {REP_RESULT};
3165
3166                         op->o_tag = LDAP_REQ_MODIFY;
3167                         op->orm_modlist = dni.mods;
3168                         op->orm_no_opattrs = 1;
3169                         op->o_bd = si->si_wbe;
3170
3171                         rc = op->o_bd->be_modify( op, &rs_modify );
3172                         slap_mods_free( op->orm_modlist, 1 );
3173                         op->orm_no_opattrs = 0;
3174                         Debug( LDAP_DEBUG_SYNC,
3175                                         "syncrepl_entry: %s be_modify %s (%d)\n", 
3176                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
3177                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
3178                                 Debug( LDAP_DEBUG_ANY,
3179                                         "syncrepl_entry: %s be_modify failed (%d)\n",
3180                                         si->si_ridtxt, rs_modify.sr_err, 0 );
3181                         }
3182                         syncCSN = NULL;
3183                         op->o_bd = be;
3184                 } else if ( !dni.renamed ) {
3185                         Debug( LDAP_DEBUG_SYNC,
3186                                         "syncrepl_entry: %s entry unchanged, ignored (%s)\n", 
3187                                         si->si_ridtxt, op->o_req_dn.bv_val, 0 );
3188                         if ( syncCSN ) {
3189                                 slap_graduate_commit_csn( op );
3190                                 syncCSN = NULL;
3191                         }
3192                 }
3193                 goto done;
3194         case LDAP_SYNC_DELETE :
3195                 if ( !BER_BVISNULL( &dni.dn ) ) {
3196                         SlapReply       rs_delete = {REP_RESULT};
3197                         op->o_req_dn = dni.dn;
3198                         op->o_req_ndn = dni.ndn;
3199                         op->o_tag = LDAP_REQ_DELETE;
3200                         op->o_bd = si->si_wbe;
3201                         if ( !syncCSN ) {
3202                                 slap_queue_csn( op, si->si_syncCookie.ctxcsn );
3203                         }
3204                         rc = op->o_bd->be_delete( op, &rs_delete );
3205                         Debug( LDAP_DEBUG_SYNC,
3206                                         "syncrepl_entry: %s be_delete %s (%d)\n", 
3207                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
3208                         if ( rc == LDAP_NO_SUCH_OBJECT )
3209                                 rc = LDAP_SUCCESS;
3210
3211                         while ( rs_delete.sr_err == LDAP_SUCCESS
3212                                 && op->o_delete_glue_parent ) {
3213                                 op->o_delete_glue_parent = 0;
3214                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
3215                                         slap_callback cb = { NULL };
3216                                         cb.sc_response = slap_null_cb;
3217                                         dnParent( &op->o_req_ndn, &pdn );
3218                                         op->o_req_dn = pdn;
3219                                         op->o_req_ndn = pdn;
3220                                         op->o_callback = &cb;
3221                                         rs_reinit( &rs_delete, REP_RESULT );
3222                                         op->o_bd->be_delete( op, &rs_delete );
3223                                 } else {
3224                                         break;
3225                                 }
3226                         }
3227                         syncCSN = NULL;
3228                         op->o_bd = be;
3229                 }
3230                 goto done;
3231
3232         default :
3233                 Debug( LDAP_DEBUG_ANY,
3234                         "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
3235                 goto done;
3236         }
3237
3238 done:
3239         slap_sl_free( syncUUID[1].bv_val, op->o_tmpmemctx );
3240         BER_BVZERO( &syncUUID[1] );
3241         if ( !BER_BVISNULL( &dni.ndn ) ) {
3242                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
3243         }
3244         if ( !BER_BVISNULL( &dni.dn ) ) {
3245                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
3246         }
3247         if ( entry ) {
3248                 entry_free( entry );
3249         }
3250         if ( syncCSN ) {
3251                 slap_graduate_commit_csn( op );
3252         }
3253         if ( !BER_BVISNULL( &op->o_csn ) && freecsn ) {
3254                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
3255         }
3256         BER_BVZERO( &op->o_csn );
3257         return rc;
3258 }
3259
3260 static struct berval gcbva[] = {
3261         BER_BVC("top"),
3262         BER_BVC("glue"),
3263         BER_BVNULL
3264 };
3265
3266 #define NP_DELETE_ONE   2
3267
3268 static void
3269 syncrepl_del_nonpresent(
3270         Operation *op,
3271         syncinfo_t *si,
3272         BerVarray uuids,
3273         struct sync_cookie *sc,
3274         int m )
3275 {
3276         Backend* be = op->o_bd;
3277         slap_callback   cb = { NULL };
3278         struct nonpresent_entry *np_list, *np_prev;
3279         int rc;
3280         AttributeName   an[2];
3281
3282         struct berval pdn = BER_BVNULL;
3283         struct berval csn;
3284
3285 #ifdef ENABLE_REWRITE
3286         if ( si->si_rewrite ) {
3287                 op->o_req_dn = si->si_suffixm;
3288                 op->o_req_ndn = si->si_suffixm;
3289         } else
3290 #endif
3291         {
3292                 op->o_req_dn = si->si_base;
3293                 op->o_req_ndn = si->si_base;
3294         }
3295
3296         cb.sc_response = nonpresent_callback;
3297         cb.sc_private = si;
3298
3299         op->o_callback = &cb;
3300         op->o_tag = LDAP_REQ_SEARCH;
3301         op->ors_scope = si->si_scope;
3302         op->ors_deref = LDAP_DEREF_NEVER;
3303         op->o_time = slap_get_time();
3304         op->ors_tlimit = SLAP_NO_LIMIT;
3305
3306
3307         if ( uuids ) {
3308                 Filter uf;
3309                 AttributeAssertion eq = ATTRIBUTEASSERTION_INIT;
3310                 int i;
3311
3312                 op->ors_attrsonly = 1;
3313                 op->ors_attrs = slap_anlist_no_attrs;
3314                 op->ors_limit = NULL;
3315                 op->ors_filter = &uf;
3316
3317                 uf.f_ava = &eq;
3318                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
3319                 uf.f_next = NULL;
3320                 uf.f_choice = LDAP_FILTER_EQUALITY;
3321                 si->si_refreshDelete |= NP_DELETE_ONE;
3322
3323                 for (i=0; uuids[i].bv_val; i++) {
3324                         SlapReply rs_search = {REP_RESULT};
3325
3326                         op->ors_slimit = 1;
3327                         uf.f_av_value = uuids[i];
3328                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
3329                         rc = be->be_search( op, &rs_search );
3330                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
3331                 }
3332                 si->si_refreshDelete ^= NP_DELETE_ONE;
3333         } else {
3334                 Filter *cf, *of;
3335                 Filter mmf[2];
3336                 AttributeAssertion mmaa;
3337                 SlapReply rs_search = {REP_RESULT};
3338
3339                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
3340                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
3341                 an[0].an_desc = slap_schema.si_ad_entryUUID;
3342                 op->ors_attrs = an;
3343                 op->ors_slimit = SLAP_NO_LIMIT;
3344                 op->ors_tlimit = SLAP_NO_LIMIT;
3345                 op->ors_limit = NULL;
3346                 op->ors_attrsonly = 0;
3347                 op->ors_filter = filter_dup( si->si_filter, op->o_tmpmemctx );
3348                 /* In multimaster, updates can continue to arrive while
3349                  * we're searching. Limit the search result to entries
3350                  * older than our newest cookie CSN.
3351                  */
3352                 if ( SLAP_MULTIMASTER( op->o_bd )) {
3353                         Filter *f;
3354                         int i;
3355
3356                         f = mmf;
3357                         f->f_choice = LDAP_FILTER_AND;
3358                         f->f_next = op->ors_filter;
3359                         f->f_and = f+1;
3360                         of = f->f_and;
3361                         f = of;
3362                         f->f_choice = LDAP_FILTER_LE;
3363                         f->f_ava = &mmaa;
3364                         f->f_av_desc = slap_schema.si_ad_entryCSN;
3365                         f->f_next = NULL;
3366                         BER_BVZERO( &f->f_av_value );
3367                         for ( i=0; i<sc->numcsns; i++ ) {
3368                                 if ( ber_bvcmp( &sc->ctxcsn[i], &f->f_av_value ) > 0 )
3369                                         f->f_av_value = sc->ctxcsn[i];
3370                         }
3371                         of = op->ors_filter;
3372                         op->ors_filter = mmf;
3373                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
3374                 } else {
3375                         cf = NULL;
3376                         op->ors_filterstr = si->si_filterstr;
3377                 }
3378                 op->o_nocaching = 1;
3379
3380
3381                 rc = be->be_search( op, &rs_search );
3382                 if ( SLAP_MULTIMASTER( op->o_bd )) {
3383                         op->ors_filter = of;
3384                 }
3385                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter, 1 );
3386                 if ( op->ors_filterstr.bv_val != si->si_filterstr.bv_val ) {
3387                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
3388                 }
3389
3390         }
3391
3392         op->o_nocaching = 0;
3393
3394         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
3395
3396                 if ( sc->ctxcsn && !BER_BVISNULL( &sc->ctxcsn[m] ) ) {
3397                         csn = sc->ctxcsn[m];
3398                 } else {
3399                         csn = si->si_syncCookie.ctxcsn[0];
3400                 }
3401
3402                 op->o_bd = si->si_wbe;
3403                 slap_queue_csn( op, &csn );
3404
3405                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
3406                 while ( np_list != NULL ) {
3407                         SlapReply rs_delete = {REP_RESULT};
3408
3409                         LDAP_LIST_REMOVE( np_list, npe_link );
3410                         np_prev = np_list;
3411                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
3412                         op->o_tag = LDAP_REQ_DELETE;
3413                         op->o_callback = &cb;
3414                         cb.sc_response = null_callback;
3415                         cb.sc_private = si;
3416                         op->o_req_dn = *np_prev->npe_name;
3417                         op->o_req_ndn = *np_prev->npe_nname;
3418                         rc = op->o_bd->be_delete( op, &rs_delete );
3419                         Debug( LDAP_DEBUG_SYNC,
3420                                 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n", 
3421                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
3422
3423                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
3424                                 SlapReply rs_modify = {REP_RESULT};
3425                                 Modifications mod1, mod2;
3426                                 mod1.sml_op = LDAP_MOD_REPLACE;
3427                                 mod1.sml_flags = 0;
3428                                 mod1.sml_desc = slap_schema.si_ad_objectClass;
3429                                 mod1.sml_type = mod1.sml_desc->ad_cname;
3430                                 mod1.sml_numvals = 2;
3431                                 mod1.sml_values = &gcbva[0];
3432                                 mod1.sml_nvalues = NULL;
3433                                 mod1.sml_next = &mod2;
3434
3435                                 mod2.sml_op = LDAP_MOD_REPLACE;
3436                                 mod2.sml_flags = 0;
3437                                 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
3438                                 mod2.sml_type = mod2.sml_desc->ad_cname;
3439                                 mod2.sml_numvals = 1;
3440                                 mod2.sml_values = &gcbva[1];
3441                                 mod2.sml_nvalues = NULL;
3442                                 mod2.sml_next = NULL;
3443
3444                                 op->o_tag = LDAP_REQ_MODIFY;
3445                                 op->orm_modlist = &mod1;
3446
3447                                 rc = op->o_bd->be_modify( op, &rs_modify );
3448                                 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
3449                         }
3450
3451                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
3452                                         op->o_delete_glue_parent ) {
3453                                 op->o_delete_glue_parent = 0;
3454                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
3455                                         slap_callback cb = { NULL };
3456                                         cb.sc_response = slap_null_cb;
3457                                         dnParent( &op->o_req_ndn, &pdn );
3458                                         op->o_req_dn = pdn;
3459                                         op->o_req_ndn = pdn;
3460                                         op->o_callback = &cb;
3461                                         rs_reinit( &rs_delete, REP_RESULT );
3462                                         /* give it a root privil ? */
3463                                         op->o_bd->be_delete( op, &rs_delete );
3464                                 } else {
3465                                         break;
3466                                 }
3467                         }
3468
3469                         op->o_delete_glue_parent = 0;
3470
3471                         ber_bvfree( np_prev->npe_name );
3472                         ber_bvfree( np_prev->npe_nname );
3473                         ch_free( np_prev );
3474
3475                         if ( slapd_shutdown ) {
3476                                 break;
3477                         }
3478                 }
3479
3480                 slap_graduate_commit_csn( op );
3481                 op->o_bd = be;
3482
3483                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
3484                 BER_BVZERO( &op->o_csn );
3485         }
3486
3487         return;
3488 }
3489
3490 static int
3491 syncrepl_add_glue_ancestors(
3492         Operation* op,
3493         Entry *e )
3494 {
3495         Backend *be = op->o_bd;
3496         slap_callback cb = { NULL };
3497         Attribute       *a;
3498         int     rc = LDAP_SUCCESS;
3499         int suffrdns;
3500         int i;
3501         struct berval dn = BER_BVNULL;
3502         struct berval ndn = BER_BVNULL;
3503         Entry   *glue;
3504         struct berval   ptr, nptr;
3505         char            *comma;
3506
3507         op->o_tag = LDAP_REQ_ADD;
3508         op->o_callback = &cb;
3509         cb.sc_response = null_callback;
3510         cb.sc_private = NULL;
3511
3512         dn = e->e_name;
3513         ndn = e->e_nname;
3514
3515         /* count RDNs in suffix */
3516         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
3517                 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
3518                         comma++;
3519                         ptr.bv_len -= comma - ptr.bv_val;
3520                         ptr.bv_val = comma;
3521                         i++;
3522                 }
3523                 suffrdns = i;
3524         } else {
3525                 /* suffix is "" */
3526                 suffrdns = 0;
3527         }
3528
3529         /* Start with BE suffix */
3530         ptr = dn;
3531         for ( i = 0; i < suffrdns; i++ ) {
3532                 comma = ber_bvrchr( &ptr, ',' );
3533                 if ( comma != NULL ) {
3534                         ptr.bv_len = comma - ptr.bv_val;
3535                 } else {
3536                         ptr.bv_len = 0;
3537                         break;
3538                 }
3539         }
3540         
3541         if ( !BER_BVISEMPTY( &ptr ) ) {
3542                 dn.bv_len -= ptr.bv_len + ( suffrdns != 0 );
3543                 dn.bv_val += ptr.bv_len + ( suffrdns != 0 );
3544         }
3545
3546         /* the normalizedDNs are always the same length, no counting
3547          * required.
3548          */
3549         nptr = ndn;
3550         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
3551                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
3552                 ndn.bv_len = be->be_nsuffix[0].bv_len;
3553
3554                 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
3555
3556         } else {
3557                 nptr.bv_len = 0;
3558         }
3559
3560         while ( ndn.bv_val > e->e_nname.bv_val ) {
3561                 SlapReply       rs_add = {REP_RESULT};
3562
3563                 glue = entry_alloc();
3564                 ber_dupbv( &glue->e_name, &dn );
3565                 ber_dupbv( &glue->e_nname, &ndn );
3566
3567                 a = attr_alloc( slap_schema.si_ad_objectClass );
3568
3569                 a->a_numvals = 2;
3570                 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
3571                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
3572                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
3573                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
3574
3575                 a->a_nvals = a->a_vals;
3576
3577                 a->a_next = glue->e_attrs;
3578                 glue->e_attrs = a;
3579
3580                 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
3581
3582                 a->a_numvals = 1;
3583                 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
3584                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
3585                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
3586
3587                 a->a_nvals = a->a_vals;
3588
3589                 a->a_next = glue->e_attrs;
3590                 glue->e_attrs = a;
3591
3592                 op->o_req_dn = glue->e_name;
3593                 op->o_req_ndn = glue->e_nname;
3594                 op->ora_e = glue;
3595                 rc = be->be_add ( op, &rs_add );
3596                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
3597                         if ( op->ora_e == glue )
3598                                 be_entry_release_w( op, glue );
3599                 } else {
3600                 /* incl. ALREADY EXIST */
3601                         entry_free( glue );
3602                         if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
3603                                 entry_free( e );
3604                                 return rc;
3605                         }
3606                 }
3607
3608                 /* Move to next child */
3609                 comma = ber_bvrchr( &ptr, ',' );
3610                 if ( comma == NULL ) {
3611                         break;
3612                 }
3613                 ptr.bv_len = comma - ptr.bv_val;
3614                 
3615                 dn.bv_val = ++comma;
3616                 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
3617
3618                 comma = ber_bvrchr( &nptr, ',' );
3619                 assert( comma != NULL );
3620                 nptr.bv_len = comma - nptr.bv_val;
3621
3622                 ndn.bv_val = ++comma;
3623                 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
3624         }
3625
3626         return rc;
3627 }
3628
3629 int
3630 syncrepl_add_glue(
3631         Operation* op,
3632         Entry *e )
3633 {
3634         slap_callback cb = { NULL };
3635         int     rc;
3636         Backend *be = op->o_bd;
3637         SlapReply       rs_add = {REP_RESULT};
3638
3639         rc = syncrepl_add_glue_ancestors( op, e );
3640         switch ( rc ) {
3641         case LDAP_SUCCESS:
3642         case LDAP_ALREADY_EXISTS:
3643                 break;
3644
3645         default:
3646                 return rc;
3647         }
3648
3649         op->o_tag = LDAP_REQ_ADD;
3650         op->o_callback = &cb;
3651         cb.sc_response = null_callback;
3652         cb.sc_private = NULL;
3653
3654         op->o_req_dn = e->e_name;
3655         op->o_req_ndn = e->e_nname;
3656         op->ora_e = e;
3657         rc = be->be_add ( op, &rs_add );
3658         if ( rs_add.sr_err == LDAP_SUCCESS ) {
3659                 if ( op->ora_e == e )
3660                         be_entry_release_w( op, e );
3661         } else {
3662                 entry_free( e );
3663         }
3664
3665         return rc;
3666 }
3667
3668 static int
3669 syncrepl_updateCookie(
3670         syncinfo_t *si,
3671         Operation *op,
3672         struct sync_cookie *syncCookie )
3673 {
3674         Backend *be = op->o_bd;
3675         Modifications mod;
3676         struct berval first = BER_BVNULL;
3677         struct sync_cookie sc;
3678 #ifdef CHECK_CSN
3679         Syntax *syn = slap_schema.si_ad_contextCSN->ad_type->sat_syntax;
3680 #endif
3681
3682         int rc, i, j, changed = 0;
3683         ber_len_t len;
3684
3685         slap_callback cb = { NULL };
3686         SlapReply       rs_modify = {REP_RESULT};
3687
3688         mod.sml_op = LDAP_MOD_REPLACE;
3689         mod.sml_desc = slap_schema.si_ad_contextCSN;
3690         mod.sml_type = mod.sml_desc->ad_cname;
3691         mod.sml_flags = SLAP_MOD_INTERNAL;
3692         mod.sml_nvalues = NULL;
3693         mod.sml_next = NULL;
3694
3695         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
3696
3697 #ifdef CHECK_CSN
3698         for ( i=0; i<syncCookie->numcsns; i++ ) {
3699                 assert( !syn->ssyn_validate( syn, syncCookie->ctxcsn+i ));
3700         }
3701         for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3702                 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3703         }
3704 #endif
3705
3706         /* clone the cookieState CSNs so we can Replace the whole thing */
3707         sc.numcsns = si->si_cookieState->cs_num;
3708         if ( sc.numcsns ) {
3709                 ber_bvarray_dup_x( &sc.ctxcsn, si->si_cookieState->cs_vals, NULL );
3710                 sc.sids = ch_malloc( sc.numcsns * sizeof(int));
3711                 for ( i=0; i<sc.numcsns; i++ )
3712                         sc.sids[i] = si->si_cookieState->cs_sids[i];
3713         } else {
3714                 sc.ctxcsn = NULL;
3715                 sc.sids = NULL;
3716         }
3717
3718         /* find any CSNs in the syncCookie that are newer than the cookieState */
3719         for ( i=0; i<syncCookie->numcsns; i++ ) {
3720                 for ( j=0; j<sc.numcsns; j++ ) {
3721                         if ( syncCookie->sids[i] < sc.sids[j] )
3722                                 break;
3723                         if ( syncCookie->sids[i] != sc.sids[j] )
3724                                 continue;
3725                         len = syncCookie->ctxcsn[i].bv_len;
3726                         if ( len > sc.ctxcsn[j].bv_len )
3727                                 len = sc.ctxcsn[j].bv_len;
3728                         if ( memcmp( syncCookie->ctxcsn[i].bv_val,
3729                                 sc.ctxcsn[j].bv_val, len ) > 0 ) {
3730                                 ber_bvreplace( &sc.ctxcsn[j], &syncCookie->ctxcsn[i] );
3731                                 changed = 1;
3732                                 if ( BER_BVISNULL( &first ) ||
3733                                         memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 ) {
3734                                         first = syncCookie->ctxcsn[i];
3735                                 }
3736                         }
3737                         break;
3738                 }
3739                 /* there was no match for this SID, it's a new CSN */
3740                 if ( j == sc.numcsns ||
3741                         syncCookie->sids[i] != sc.sids[j] ) {
3742                         slap_insert_csn_sids( &sc, j, syncCookie->sids[i],
3743                                 &syncCookie->ctxcsn[i] );
3744                         if ( BER_BVISNULL( &first ) ||
3745                                 memcmp( syncCookie->ctxcsn[i].bv_val, first.bv_val, first.bv_len ) > 0 ) {
3746                                 first = syncCookie->ctxcsn[i];
3747                         }
3748                         changed = 1;
3749                 }
3750         }
3751         /* Should never happen, ITS#5065 */
3752         if ( BER_BVISNULL( &first ) || !changed ) {
3753                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3754                 ber_bvarray_free( sc.ctxcsn );
3755                 ch_free( sc.sids );
3756                 return 0;
3757         }
3758         op->o_bd = si->si_wbe;
3759         slap_queue_csn( op, &first );
3760
3761         op->o_tag = LDAP_REQ_MODIFY;
3762
3763         cb.sc_response = null_callback;
3764         cb.sc_private = si;
3765
3766         op->o_callback = &cb;
3767         op->o_req_dn = si->si_contextdn;
3768         op->o_req_ndn = si->si_contextdn;
3769
3770         /* update contextCSN */
3771         op->o_dont_replicate = 1;
3772
3773         mod.sml_numvals = sc.numcsns;
3774         mod.sml_values = sc.ctxcsn;
3775
3776         op->orm_modlist = &mod;
3777         op->orm_no_opattrs = 1;
3778         rc = op->o_bd->be_modify( op, &rs_modify );
3779
3780         if ( rs_modify.sr_err == LDAP_NO_SUCH_OBJECT &&
3781                 SLAP_SYNC_SUBENTRY( op->o_bd )) {
3782                 const char      *text;
3783                 char txtbuf[SLAP_TEXT_BUFLEN];
3784                 size_t textlen = sizeof txtbuf;
3785                 Entry *e = slap_create_context_csn_entry( op->o_bd, NULL );
3786                 rs_reinit( &rs_modify, REP_RESULT );
3787                 rc = slap_mods2entry( &mod, &e, 0, 1, &text, txtbuf, textlen);
3788                 op->ora_e = e;
3789                 rc = op->o_bd->be_add( op, &rs_modify );
3790                 if ( e == op->ora_e )
3791                         be_entry_release_w( op, op->ora_e );
3792         }
3793
3794         op->orm_no_opattrs = 0;
3795         op->o_dont_replicate = 0;
3796
3797         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
3798                 slap_sync_cookie_free( &si->si_syncCookie, 0 );
3799                 ber_bvarray_free( si->si_cookieState->cs_vals );
3800                 ch_free( si->si_cookieState->cs_sids );
3801                 si->si_cookieState->cs_vals = sc.ctxcsn;
3802                 si->si_cookieState->cs_sids = sc.sids;
3803                 si->si_cookieState->cs_num = sc.numcsns;
3804
3805                 /* Don't just dup the provider's cookie, recreate it */
3806                 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
3807                 ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn, si->si_cookieState->cs_vals, NULL );
3808                 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num * sizeof(int) );
3809                 for ( i=0; i<si->si_cookieState->cs_num; i++ )
3810                         si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
3811
3812                 si->si_cookieState->cs_age++;
3813                 si->si_cookieAge = si->si_cookieState->cs_age;
3814         } else {
3815                 Debug( LDAP_DEBUG_ANY,
3816                         "syncrepl_updateCookie: %s be_modify failed (%d)\n",
3817                         si->si_ridtxt, rs_modify.sr_err, 0 );
3818                 ch_free( sc.sids );
3819                 ber_bvarray_free( sc.ctxcsn );
3820         }
3821         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
3822
3823         op->o_bd = be;
3824         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
3825         BER_BVZERO( &op->o_csn );
3826         if ( mod.sml_next ) slap_mods_free( mod.sml_next, 1 );
3827
3828 #ifdef CHECK_CSN
3829         for ( i=0; i<si->si_cookieState->cs_num; i++ ) {
3830                 assert( !syn->ssyn_validate( syn, si->si_cookieState->cs_vals+i ));
3831         }
3832 #endif
3833
3834         return rc;
3835 }
3836
3837 /* Compare the attribute from the old entry to the one in the new
3838  * entry. The Modifications from the new entry will either be left
3839  * in place, or changed to an Add or Delete as needed.
3840  */
3841 static void
3842 attr_cmp( Operation *op, Attribute *old, Attribute *new,
3843         Modifications ***mret, Modifications ***mcur )
3844 {
3845         int i, j;
3846         Modifications *mod, **modtail;
3847
3848         modtail = *mret;
3849
3850         if ( old ) {
3851                 int n, o, nn, no;
3852                 struct berval **adds, **dels;
3853                 /* count old and new */
3854                 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
3855                 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
3856
3857                 /* there MUST be both old and new values */
3858                 assert( o != 0 );
3859                 assert( n != 0 );
3860                 j = 0;
3861
3862                 adds = op->o_tmpalloc( sizeof(struct berval *) * n, op->o_tmpmemctx );
3863                 dels = op->o_tmpalloc( sizeof(struct berval *) * o, op->o_tmpmemctx );
3864
3865                 for ( i=0; i<o; i++ ) dels[i] = &old->a_vals[i];
3866                 for ( i=0; i<n; i++ ) adds[i] = &new->a_vals[i];
3867
3868                 nn = n; no = o;
3869
3870                 for ( i=0; i<o; i++ ) {
3871                         for ( j=0; j<n; j++ ) {
3872                                 if ( !adds[j] )
3873                                         continue;
3874                                 if ( bvmatch( dels[i], adds[j] ) ) {
3875                                         no--;
3876                                         nn--;
3877                                         adds[j] = NULL;
3878                                         dels[i] = NULL;
3879                                         break;
3880                                 }
3881                         }
3882                 }
3883
3884                 /* Don't delete/add an objectClass, always use the replace op.
3885                  * Modify would fail if provider has replaced entry with a new,
3886                  * and the new explicitly includes a superior of a class that was
3887                  * only included implicitly in the old entry.  Ref ITS#5517.
3888                  *
3889                  * Also use replace op if attr has no equality matching rule.
3890                  * (ITS#5781)
3891                  */
3892                 if ( ( nn || ( no > 0 && no < o ) ) &&
3893                         ( old->a_desc == slap_schema.si_ad_objectClass ||
3894                          !old->a_desc->ad_type->sat_equality ) )
3895                 {
3896                         no = o;
3897                 }
3898
3899                 i = j;
3900                 /* all old values were deleted, just use the replace op */
3901                 if ( no == o ) {
3902                         i = j-1;
3903                 } else if ( no ) {
3904                 /* delete some values */
3905                         mod = ch_malloc( sizeof( Modifications ) );
3906                         mod->sml_op = LDAP_MOD_DELETE;
3907                         mod->sml_flags = 0;
3908                         mod->sml_desc = old->a_desc;
3909                         mod->sml_type = mod->sml_desc->ad_cname;
3910                         mod->sml_numvals = no;
3911                         mod->sml_values = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3912                         if ( old->a_vals != old->a_nvals ) {
3913                                 mod->sml_nvalues = ch_malloc( ( no + 1 ) * sizeof(struct berval) );
3914                         } else {
3915                                 mod->sml_nvalues = NULL;
3916                         }
3917                         j = 0;
3918                         for ( i = 0; i < o; i++ ) {
3919                                 if ( !dels[i] ) continue;
3920                                 ber_dupbv( &mod->sml_values[j], &old->a_vals[i] );
3921                                 if ( mod->sml_nvalues ) {
3922                                         ber_dupbv( &mod->sml_nvalues[j], &old->a_nvals[i] );
3923                                 }
3924                                 j++;
3925                         }
3926                         BER_BVZERO( &mod->sml_values[j] );
3927                         if ( mod->sml_nvalues ) {
3928                                 BER_BVZERO( &mod->sml_nvalues[j] );
3929                         }
3930                         *modtail = mod;
3931                         modtail = &mod->sml_next;
3932                         i = j;
3933                 }
3934                 op->o_tmpfree( dels, op->o_tmpmemctx );
3935                 /* some values were added */
3936                 if ( nn && no < o ) {
3937                         mod = ch_malloc( sizeof( Modifications ) );
3938                         mod->sml_op = LDAP_MOD_ADD;
3939                         mod->sml_flags = 0;
3940                         mod->sml_desc = old->a_desc;
3941                         mod->sml_type = mod->sml_desc->ad_cname;
3942                         mod->sml_numvals = nn;
3943                         mod->sml_values = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3944                         if ( old->a_vals != old->a_nvals ) {
3945                                 mod->sml_nvalues = ch_malloc( ( nn + 1 ) * sizeof(struct berval) );
3946                         } else {
3947                                 mod->sml_nvalues = NULL;
3948                         }
3949                         j = 0;
3950                         for ( i = 0; i < n; i++ ) {
3951                                 if ( !adds[i] ) continue;
3952                                 ber_dupbv( &mod->sml_values[j], &new->a_vals[i] );
3953                                 if ( mod->sml_nvalues ) {
3954                                         ber_dupbv( &mod->sml_nvalues[j], &new->a_nvals[i] );
3955                                 }
3956                                 j++;
3957                         }
3958                         BER_BVZERO( &mod->sml_values[j] );
3959                         if ( mod->sml_nvalues ) {
3960                                 BER_BVZERO( &mod->sml_nvalues[j] );
3961                         }
3962                         *modtail = mod;
3963                         modtail = &mod->sml_next;
3964                         i = j;
3965                 }
3966                 op->o_tmpfree( adds, op->o_tmpmemctx );
3967         } else {
3968                 /* new attr, just use the new mod */
3969                 i = 0;
3970                 j = 1;
3971         }
3972         /* advance to next element */
3973         mod = **mcur;
3974         if ( mod ) {
3975                 if ( i != j ) {
3976                         **mcur = mod->sml_next;
3977                         *modtail = mod;
3978                         modtail = &mod->sml_next;
3979                 } else {
3980                         *mcur = &mod->sml_next;
3981                 }
3982         }
3983         *mret = modtail;
3984 }
3985
3986 /* Generate a set of modifications to change the old entry into the
3987  * new one. On input ml is a list of modifications equivalent to
3988  * the new entry. It will be massaged and the result will be stored
3989  * in mods.
3990  */
3991 void syncrepl_diff_entry( Operation *op, Attribute *old, Attribute *new,
3992         Modifications **mods, Modifications **ml, int is_ctx)
3993 {
3994         Modifications **modtail = mods;
3995
3996         /* We assume that attributes are saved in the same order
3997          * in the remote and local databases. So if we walk through
3998          * the attributeDescriptions one by one they should match in
3999          * lock step. If not, look for an add or delete.
4000          */
4001         while ( old && new )
4002         {
4003                 /* If we've seen this before, use its mod now */
4004                 if ( new->a_flags & SLAP_ATTR_IXADD ) {
4005                         attr_cmp( op, NULL, new, &modtail, &ml );
4006                         new = new->a_next;
4007                         continue;
4008                 }
4009                 /* Skip contextCSN */
4010                 if ( is_ctx && old->a_desc ==
4011                         slap_schema.si_ad_contextCSN ) {
4012                         old = old->a_next;
4013                         continue;
4014                 }
4015
4016                 if ( old->a_desc != new->a_desc ) {
4017                         Modifications *mod;
4018                         Attribute *tmp;
4019
4020                         /* If it's just been re-added later,
4021                          * remember that we've seen it.
4022                          */
4023                         tmp = attr_find( new, old->a_desc );
4024                         if ( tmp ) {
4025                                 tmp->a_flags |= SLAP_ATTR_IXADD;
4026                         } else {
4027                                 /* If it's a new attribute, pull it in.
4028                                  */
4029                                 tmp = attr_find( old, new->a_desc );
4030                                 if ( !tmp ) {
4031                                         attr_cmp( op, NULL, new, &modtail, &ml );
4032                                         new = new->a_next;
4033                                         continue;
4034                                 }
4035                                 /* Delete old attr */
4036                                 mod = ch_malloc( sizeof( Modifications ) );
4037                                 mod->sml_op = LDAP_MOD_DELETE;
4038                                 mod->sml_flags = 0;
4039                                 mod->sml_desc = old->a_desc;
4040                                 mod->sml_type = mod->sml_desc->ad_cname;
4041                                 mod->sml_numvals = 0;
4042                                 mod->sml_values = NULL;
4043                                 mod->sml_nvalues = NULL;
4044                                 *modtail = mod;
4045                                 modtail = &mod->sml_next;
4046                         }
4047                         old = old->a_next;
4048                         continue;
4049                 }
4050                 /* kludge - always update modifiersName so that it
4051                  * stays co-located with the other mod opattrs. But only
4052                  * if we know there are other valid mods.
4053                  */
4054                 if ( *mods && ( old->a_desc == slap_schema.si_ad_modifiersName ||
4055                         old->a_desc == slap_schema.si_ad_modifyTimestamp ))
4056                         attr_cmp( op, NULL, new, &modtail, &ml );
4057                 else
4058                         attr_cmp( op, old, new, &modtail, &ml );
4059                 new = new->a_next;
4060                 old = old->a_next;
4061         }
4062         *modtail = *ml;
4063         *ml = NULL;
4064 }
4065
4066 static int
4067 dn_callback(
4068         Operation*      op,
4069         SlapReply*      rs )
4070 {
4071         dninfo *dni = op->o_callback->sc_private;
4072
4073         if ( rs->sr_type == REP_SEARCH ) {
4074                 if ( !BER_BVISNULL( &dni->dn ) ) {
4075                         Debug( LDAP_DEBUG_ANY,
4076                                 "dn_callback : consistency error - "
4077                                 "entryUUID is not unique\n", 0, 0, 0 );
4078                 } else {
4079                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
4080                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
4081                         /* If there is a new entry, see if it differs from the old.
4082                          * We compare the non-normalized values so that cosmetic changes
4083                          * in the provider are always propagated.
4084                          */
4085                         if ( dni->new_entry ) {
4086                                 Attribute *old, *new;
4087                                 struct berval old_rdn, new_rdn;
4088                                 struct berval old_p, new_p;
4089                                 int is_ctx, new_sup = 0;
4090
4091                                 /* If old entry is not a glue entry, make sure new entry
4092                                  * is actually newer than old entry
4093                                  */
4094                                 if ( !is_entry_glue( rs->sr_entry )) {
4095                                         old = attr_find( rs->sr_entry->e_attrs,
4096                                                 slap_schema.si_ad_entryCSN );
4097                                         new = attr_find( dni->new_entry->e_attrs,
4098                                                 slap_schema.si_ad_entryCSN );
4099                                         if ( new && old ) {
4100                                                 int rc;
4101                                                 ber_len_t len = old->a_vals[0].bv_len;
4102                                                 if ( len > new->a_vals[0].bv_len )
4103                                                         len = new->a_vals[0].bv_len;
4104                                                 rc = memcmp( old->a_vals[0].bv_val,
4105                                                         new->a_vals[0].bv_val, len );
4106                                                 if ( rc > 0 ) {
4107                                                         Debug( LDAP_DEBUG_SYNC,
4108                                                                 "dn_callback : new entry is older than ours "
4109                                                                 "%s ours %s, new %s\n",
4110                                                                 rs->sr_entry->e_name.bv_val,
4111                                                                 old->a_vals[0].bv_val,
4112                                                                 new->a_vals[0].bv_val );
4113                                                         return LDAP_SUCCESS;
4114                                                 } else if ( rc == 0 ) {
4115                                                         Debug( LDAP_DEBUG_SYNC,
4116                                                                 "dn_callback : entries have identical CSN "
4117                                                                 "%s %s\n",
4118                                                                 rs->sr_entry->e_name.bv_val,
4119                                                                 old->a_vals[0].bv_val, 0 );
4120                                                         return LDAP_SUCCESS;
4121                                                 }
4122                                         }
4123                                 }
4124
4125                                 is_ctx = dn_match( &rs->sr_entry->e_nname,
4126                                         &op->o_bd->be_nsuffix[0] );
4127
4128                                 /* Did the DN change?
4129                                  * case changes in the parent are ignored,
4130                                  * we only want to know if the RDN was
4131                                  * actually changed.
4132                                  */
4133                                 dnRdn( &rs->sr_entry->e_name, &old_rdn );
4134                                 dnRdn( &dni->new_entry->e_name, &new_rdn );
4135                                 dnParent( &rs->sr_entry->e_nname, &old_p );
4136                                 dnParent( &dni->new_entry->e_nname, &new_p );
4137
4138                                 new_sup = !dn_match( &old_p, &new_p );
4139                                 if ( !dn_match( &old_rdn, &new_rdn ) || new_sup )
4140                                 {
4141                                         struct berval oldRDN, oldVal;
4142                                         AttributeDescription *ad = NULL;
4143                                         int oldpos, newpos;
4144                                         Attribute *a;
4145
4146                                         dni->renamed = 1;
4147                                         if ( new_sup )
4148                                                 dni->nnewSup = new_p;
4149
4150                                         /* See if the oldRDN was deleted */
4151                                         dnRdn( &rs->sr_entry->e_nname, &oldRDN );
4152                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
4153                                         oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
4154                                                 oldRDN.bv_val );
4155                                         oldRDN.bv_len -= oldVal.bv_len + 1;
4156                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
4157                                         dni->oldDesc = ad;
4158                                         for ( oldpos=0, a=rs->sr_entry->e_attrs;
4159                                                 a && a->a_desc != ad; oldpos++, a=a->a_next );
4160                                         /* a should not be NULL but apparently it happens.
4161                                          * ITS#7144
4162                                          */
4163                                         dni->oldNcount = a ? a->a_numvals : 0;
4164                                         for ( newpos=0, a=dni->new_entry->e_attrs;
4165                                                 a && a->a_desc != ad; newpos++, a=a->a_next );
4166                                         if ( !a || oldpos != newpos || attr_valfind( a,
4167                                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
4168                                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
4169                                                 SLAP_MR_VALUE_OF_SYNTAX,
4170                                                 &oldVal, NULL, op->o_tmpmemctx ) != LDAP_SUCCESS )
4171                                         {
4172                                                 dni->delOldRDN = 1;
4173                                         }
4174                                         /* Get the newRDN's desc */
4175                                         dnRdn( &dni->new_entry->e_nname, &oldRDN );
4176                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=');
4177                                         oldRDN.bv_len = oldVal.bv_val - oldRDN.bv_val;
4178                                         ad = NULL;
4179                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
4180                                         dni->newDesc = ad;
4181
4182                                         /* A ModDN has happened, but in Refresh mode other
4183                                          * changes may have occurred before we picked it up.
4184                                          * So fallthru to regular Modify processing.
4185                                          */
4186                                 }
4187
4188                                 syncrepl_diff_entry( op, rs->sr_entry->e_attrs,
4189                                         dni->new_entry->e_attrs, &dni->mods, dni->modlist,
4190                                         is_ctx );
4191                         }
4192                 }
4193         } else if ( rs->sr_type == REP_RESULT ) {
4194                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
4195                         Debug( LDAP_DEBUG_ANY,
4196                                 "dn_callback : consistency error - "
4197                                 "entryUUID is not unique\n", 0, 0, 0 );
4198                 }
4199         }
4200
4201         return LDAP_SUCCESS;
4202 }
4203
4204 static int
4205 nonpresent_callback(
4206         Operation*      op,
4207         SlapReply*      rs )
4208 {
4209         syncinfo_t *si = op->o_callback->sc_private;
4210         Attribute *a;
4211         int count = 0;
4212         struct berval* present_uuid = NULL;
4213         struct nonpresent_entry *np_entry;
4214
4215         if ( rs->sr_type == REP_RESULT ) {
4216                 count = avl_free( si->si_presentlist, ch_free );
4217                 si->si_presentlist = NULL;
4218
4219         } else if ( rs->sr_type == REP_SEARCH ) {
4220                 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
4221                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
4222
4223                         if ( a ) {
4224                                 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
4225                                         syncuuid_cmp );
4226                         }
4227
4228                         if ( LogTest( LDAP_DEBUG_SYNC ) ) {
4229                                 char buf[sizeof("rid=999 non")];
4230
4231                                 snprintf( buf, sizeof(buf), "%s %s", si->si_ridtxt,
4232                                         present_uuid ? "" : "non" );
4233
4234                                 Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %spresent UUID %s, dn %s\n",
4235                                         buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
4236                         }
4237
4238                         if ( a == NULL ) return 0;
4239                 }
4240
4241                 if ( present_uuid == NULL ) {
4242                         np_entry = (struct nonpresent_entry *)
4243                                 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
4244                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
4245                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
4246                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
4247
4248                 } else {
4249                         avl_delete( &si->si_presentlist,
4250                                 &a->a_nvals[0], syncuuid_cmp );
4251                         ch_free( present_uuid );
4252                 }
4253         }
4254         return LDAP_SUCCESS;
4255 }
4256
4257 static int
4258 null_callback(
4259         Operation*      op,
4260         SlapReply*      rs )
4261 {
4262         if ( rs->sr_err != LDAP_SUCCESS &&
4263                 rs->sr_err != LDAP_REFERRAL &&
4264                 rs->sr_err != LDAP_ALREADY_EXISTS &&
4265                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
4266                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
4267         {
4268                 Debug( LDAP_DEBUG_ANY,
4269                         "null_callback : error code 0x%x\n",
4270                         rs->sr_err, 0, 0 );
4271         }
4272         return LDAP_SUCCESS;
4273 }
4274
4275 static struct berval *
4276 slap_uuidstr_from_normalized(
4277         struct berval* uuidstr,
4278         struct berval* normalized,
4279         void *ctx )
4280 {
4281 #if 0
4282         struct berval *new;
4283         unsigned char nibble;
4284         int i, d = 0;
4285
4286         if ( normalized == NULL ) return NULL;
4287         if ( normalized->bv_len != 16 ) return NULL;
4288
4289         if ( uuidstr ) {
4290                 new = uuidstr;
4291         } else {
4292                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
4293                 if ( new == NULL ) {
4294                         return NULL;
4295                 }
4296         }
4297
4298         new->bv_len = 36;
4299
4300         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
4301                 if ( new != uuidstr ) {
4302                         slap_sl_free( new, ctx );
4303                 }
4304                 return NULL;
4305         }
4306
4307         for ( i = 0; i < 16; i++ ) {
4308                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
4309                         new->bv_val[(i<<1)+d] = '-';
4310                         d += 1;
4311                 }
4312
4313                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
4314                 if ( nibble < 10 ) {
4315                         new->bv_val[(i<<1)+d] = nibble + '0';
4316                 } else {
4317                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
4318                 }
4319
4320                 nibble = (normalized->bv_val[i]) & 0xF;
4321                 if ( nibble < 10 ) {
4322                         new->bv_val[(i<<1)+d+1] = nibble + '0';
4323                 } else {
4324                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
4325                 }
4326         }
4327
4328         new->bv_val[new->bv_len] = '\0';
4329         return new;
4330 #endif
4331
4332         struct berval   *new;
4333         int             rc = 0;
4334
4335         if ( normalized == NULL ) return NULL;
4336         if ( normalized->bv_len != 16 ) return NULL;
4337
4338         if ( uuidstr ) {
4339                 new = uuidstr;
4340
4341         } else {
4342                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
4343                 if ( new == NULL ) {
4344                         return NULL;
4345                 }
4346         }
4347
4348         new->bv_len = 36;
4349
4350         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
4351                 rc = 1;
4352                 goto done;
4353         }
4354
4355         rc = lutil_uuidstr_from_normalized( normalized->bv_val,
4356                 normalized->bv_len, new->bv_val, new->bv_len + 1 );
4357
4358 done:;
4359         if ( rc == -1 ) {
4360                 if ( new != NULL ) {
4361                         if ( new->bv_val != NULL ) {
4362                                 slap_sl_free( new->bv_val, ctx );
4363                         }
4364
4365                         if ( new != uuidstr ) {
4366                                 slap_sl_free( new, ctx );
4367                         }
4368                 }
4369                 new = NULL;
4370
4371         } else {
4372                 new->bv_len = rc;
4373         }
4374
4375         return new;
4376 }
4377
4378 static int
4379 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
4380 {
4381         const struct berval *uuid1 = v_uuid1;
4382         const struct berval *uuid2 = v_uuid2;
4383         int rc = uuid1->bv_len - uuid2->bv_len;
4384         if ( rc ) return rc;
4385         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
4386 }
4387
4388 void
4389 syncinfo_free( syncinfo_t *sie, int free_all )
4390 {
4391         syncinfo_t *si_next;
4392
4393         Debug( LDAP_DEBUG_TRACE, "syncinfo_free: %s\n",
4394                 sie->si_ridtxt, 0, 0 );
4395
4396         do {
4397                 si_next = sie->si_next;
4398
4399                 if ( sie->si_ld ) {
4400                         if ( sie->si_conn ) {
4401                                 connection_client_stop( sie->si_conn );
4402                                 sie->si_conn = NULL;
4403                         }
4404                         ldap_unbind_ext( sie->si_ld, NULL, NULL );
4405                 }
4406         
4407                 if ( sie->si_re ) {
4408                         struct re_s             *re = sie->si_re;
4409                         sie->si_re = NULL;
4410
4411                         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
4412                         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) )
4413                                 ldap_pvt_runqueue_stoptask( &slapd_rq, re );
4414                         ldap_pvt_runqueue_remove( &slapd_rq, re );
4415                         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
4416                 }
4417
4418                 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
4419
4420                 bindconf_free( &sie->si_bindconf );
4421
4422                 if ( sie->si_filterstr.bv_val ) {
4423                         ch_free( sie->si_filterstr.bv_val );
4424                 }
4425                 if ( sie->si_filter ) {
4426                         filter_free( sie->si_filter );
4427                 }
4428                 if ( sie->si_logfilterstr.bv_val ) {
4429                         ch_free( sie->si_logfilterstr.bv_val );
4430                 }
4431                 if ( sie->si_base.bv_val ) {
4432                         ch_free( sie->si_base.bv_val );
4433                 }
4434                 if ( sie->si_logbase.bv_val ) {
4435                         ch_free( sie->si_logbase.bv_val );
4436                 }
4437                 if ( sie->si_be && SLAP_SYNC_SUBENTRY( sie->si_be )) {
4438                         ch_free( sie->si_contextdn.bv_val );
4439                 }
4440                 if ( sie->si_attrs ) {
4441                         int i = 0;
4442                         while ( sie->si_attrs[i] != NULL ) {
4443                                 ch_free( sie->si_attrs[i] );
4444                                 i++;
4445                         }
4446                         ch_free( sie->si_attrs );
4447                 }
4448                 if ( sie->si_exattrs ) {
4449                         int i = 0;
4450                         while ( sie->si_exattrs[i] != NULL ) {
4451                                 ch_free( sie->si_exattrs[i] );
4452                                 i++;
4453                         }
4454                         ch_free( sie->si_exattrs );
4455                 }
4456                 if ( sie->si_anlist ) {
4457                         int i = 0;
4458                         while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
4459                                 ch_free( sie->si_anlist[i].an_name.bv_val );
4460                                 i++;
4461                         }
4462                         ch_free( sie->si_anlist );
4463                 }
4464                 if ( sie->si_exanlist ) {
4465                         int i = 0;
4466                         while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
4467                                 ch_free( sie->si_exanlist[i].an_name.bv_val );
4468                                 i++;
4469                         }
4470                         ch_free( sie->si_exanlist );
4471                 }
4472                 if ( sie->si_retryinterval ) {
4473                         ch_free( sie->si_retryinterval );
4474                 }
4475                 if ( sie->si_retrynum ) {
4476                         ch_free( sie->si_retrynum );
4477                 }
4478                 if ( sie->si_retrynum_init ) {
4479                         ch_free( sie->si_retrynum_init );
4480                 }
4481                 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
4482                 if ( sie->si_presentlist ) {
4483                     avl_free( sie->si_presentlist, ch_free );
4484                 }
4485                 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
4486                         struct nonpresent_entry* npe;
4487                         npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
4488                         LDAP_LIST_REMOVE( npe, npe_link );
4489                         if ( npe->npe_name ) {
4490                                 if ( npe->npe_name->bv_val ) {
4491                                         ch_free( npe->npe_name->bv_val );
4492                                 }
4493                                 ch_free( npe->npe_name );
4494                         }
4495                         if ( npe->npe_nname ) {
4496                                 if ( npe->npe_nname->bv_val ) {
4497                                         ch_free( npe->npe_nname->bv_val );
4498                                 }
4499                                 ch_free( npe->npe_nname );
4500                         }
4501                         ch_free( npe );
4502                 }
4503                 if ( sie->si_cookieState ) {
4504                         sie->si_cookieState->cs_ref--;
4505                         if ( !sie->si_cookieState->cs_ref ) {
4506                                 ch_free( sie->si_cookieState->cs_sids );
4507                                 ber_bvarray_free( sie->si_cookieState->cs_vals );
4508                                 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
4509                                 ch_free( sie->si_cookieState->cs_psids );
4510                                 ber_bvarray_free( sie->si_cookieState->cs_pvals );
4511                                 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_pmutex );
4512                                 ch_free( sie->si_cookieState );
4513                         }
4514                 }
4515 #ifdef ENABLE_REWRITE
4516                 if ( sie->si_rewrite )
4517                         rewrite_info_delete( &sie->si_rewrite );
4518                 if ( sie->si_suffixm.bv_val )
4519                         ch_free( sie->si_suffixm.bv_val );
4520 #endif
4521                 ch_free( sie );
4522                 sie = si_next;
4523         } while ( free_all && si_next );
4524 }
4525
4526 #ifdef ENABLE_REWRITE
4527 static int
4528 config_suffixm( ConfigArgs *c, syncinfo_t *si )
4529 {
4530         char *argvEngine[] = { "rewriteEngine", "on", NULL };
4531         char *argvContext[] = { "rewriteContext", SUFFIXM_CTX, NULL };
4532         char *argvRule[] = { "rewriteRule", NULL, NULL, ":", NULL };
4533         char *vnc, *rnc;
4534         int rc;
4535
4536         if ( si->si_rewrite )
4537                 rewrite_info_delete( &si->si_rewrite );
4538         si->si_rewrite = rewrite_info_init( REWRITE_MODE_USE_DEFAULT );
4539
4540         rc = rewrite_parse( si->si_rewrite, c->fname, c->lineno, 2, argvEngine );
4541         if ( rc != LDAP_SUCCESS )
4542                 return rc;
4543
4544         rc = rewrite_parse( si->si_rewrite, c->fname, c->lineno, 2, argvContext );
4545         if ( rc != LDAP_SUCCESS )
4546                 return rc;
4547
4548         vnc = ch_malloc( si->si_base.bv_len + 6 );
4549         strcpy( vnc, "(.*)" );
4550         lutil_strcopy( lutil_strcopy( vnc+4, si->si_base.bv_val ), "$" );
4551         argvRule[1] = vnc;
4552
4553         rnc = ch_malloc( si->si_suffixm.bv_len + 3 );
4554         strcpy( rnc, "%1" );
4555         strcpy( rnc+2, si->si_suffixm.bv_val );
4556         argvRule[2] = rnc;
4557
4558         rc = rewrite_parse( si->si_rewrite, c->fname, c->lineno, 4, argvRule );
4559         ch_free( vnc );
4560         ch_free( rnc );
4561         return rc;
4562 }
4563 #endif
4564
4565 /* NOTE: used & documented in slapd.conf(5) */
4566 #define IDSTR                   "rid"
4567 #define PROVIDERSTR             "provider"
4568 #define SCHEMASTR               "schemachecking"
4569 #define FILTERSTR               "filter"
4570 #define SEARCHBASESTR           "searchbase"
4571 #define SCOPESTR                "scope"
4572 #define ATTRSONLYSTR            "attrsonly"
4573 #define ATTRSSTR                "attrs"
4574 #define TYPESTR                 "type"
4575 #define INTERVALSTR             "interval"
4576 #define RETRYSTR                "retry"
4577 #define SLIMITSTR               "sizelimit"
4578 #define TLIMITSTR               "timelimit"
4579 #define SYNCDATASTR             "syncdata"
4580 #define LOGBASESTR              "logbase"
4581 #define LOGFILTERSTR    "logfilter"
4582 #define SUFFIXMSTR              "suffixmassage"
4583 #define STRICT_REFRESH  "strictrefresh"
4584
4585 /* FIXME: undocumented */
4586 #define EXATTRSSTR              "exattrs"
4587 #define MANAGEDSAITSTR          "manageDSAit"
4588
4589 /* mandatory */
4590 enum {
4591         GOT_RID                 = 0x00000001U,
4592         GOT_PROVIDER            = 0x00000002U,
4593         GOT_SCHEMACHECKING      = 0x00000004U,
4594         GOT_FILTER              = 0x00000008U,
4595         GOT_SEARCHBASE          = 0x00000010U,
4596         GOT_SCOPE               = 0x00000020U,
4597         GOT_ATTRSONLY           = 0x00000040U,
4598         GOT_ATTRS               = 0x00000080U,
4599         GOT_TYPE                = 0x00000100U,
4600         GOT_INTERVAL            = 0x00000200U,
4601         GOT_RETRY               = 0x00000400U,
4602         GOT_SLIMIT              = 0x00000800U,
4603         GOT_TLIMIT              = 0x00001000U,
4604         GOT_SYNCDATA            = 0x00002000U,
4605         GOT_LOGBASE             = 0x00004000U,
4606         GOT_LOGFILTER           = 0x00008000U,
4607         GOT_EXATTRS             = 0x00010000U,
4608         GOT_MANAGEDSAIT         = 0x00020000U,
4609         GOT_BINDCONF            = 0x00040000U,
4610         GOT_SUFFIXM             = 0x00080000U,
4611
4612 /* check */
4613         GOT_REQUIRED            = (GOT_RID|GOT_PROVIDER|GOT_SEARCHBASE)
4614 };
4615
4616 static slap_verbmasks datamodes[] = {
4617         { BER_BVC("default"), SYNCDATA_DEFAULT },
4618         { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
4619         { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
4620         { BER_BVNULL, 0 }
4621 };
4622
4623 static int
4624 parse_syncrepl_retry(
4625         ConfigArgs      *c,
4626         char            *arg,
4627         syncinfo_t      *si )
4628 {
4629         char **retry_list;
4630         int j, k, n;
4631         int use_default = 0;
4632
4633         char *val = arg + STRLENOF( RETRYSTR "=" );
4634         if ( strcasecmp( val, "undefined" ) == 0 ) {
4635                 val = "3600 +";
4636                 use_default = 1;
4637         }
4638
4639         retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
4640         retry_list[0] = NULL;
4641
4642         slap_str2clist( &retry_list, val, " ,\t" );
4643
4644         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
4645         n = k / 2;
4646         if ( k % 2 ) {
4647                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4648                         "Error: incomplete syncrepl retry list" );
4649                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4650                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
4651                         ch_free( retry_list[k] );
4652                 }
4653                 ch_free( retry_list );
4654                 return 1;
4655         }
4656         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
4657         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
4658         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
4659         for ( j = 0; j < n; j++ ) {
4660                 unsigned long   t;
4661                 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
4662                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4663                                 "Error: invalid retry interval \"%s\" (#%d)",
4664                                 retry_list[j*2], j );
4665                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4666                         /* do some cleanup */
4667                         return 1;
4668                 }
4669                 si->si_retryinterval[j] = (time_t)t;
4670                 if ( *retry_list[j*2+1] == '+' ) {
4671                         si->si_retrynum_init[j] = RETRYNUM_FOREVER;
4672                         si->si_retrynum[j] = RETRYNUM_FOREVER;
4673                         j++;
4674                         break;
4675                 } else {
4676                         if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
4677                                         || si->si_retrynum_init[j] <= 0 )
4678                         {
4679                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4680                                         "Error: invalid initial retry number \"%s\" (#%d)",
4681                                         retry_list[j*2+1], j );
4682                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4683                                 /* do some cleanup */
4684                                 return 1;
4685                         }
4686                         if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
4687                                         || si->si_retrynum[j] <= 0 )
4688                         {
4689                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4690                                         "Error: invalid retry number \"%s\" (#%d)",
4691                                         retry_list[j*2+1], j );
4692                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4693                                 /* do some cleanup */
4694                                 return 1;
4695                         }
4696                 }
4697         }
4698         if ( j < 1 || si->si_retrynum_init[j-1] != RETRYNUM_FOREVER ) {
4699                 Debug( LDAP_DEBUG_CONFIG,
4700                         "%s: syncrepl will eventually stop retrying; the \"retry\" parameter should end with a '+'.\n",
4701                         c->log, 0, 0 );
4702         }
4703
4704         si->si_retrynum_init[j] = RETRYNUM_TAIL;
4705         si->si_retrynum[j] = RETRYNUM_TAIL;
4706         si->si_retryinterval[j] = 0;
4707         
4708         for ( k = 0; retry_list && retry_list[k]; k++ ) {
4709                 ch_free( retry_list[k] );
4710         }
4711         ch_free( retry_list );
4712         if ( !use_default ) {
4713                 si->si_got |= GOT_RETRY;
4714         }
4715
4716         return 0;
4717 }
4718
4719 static int
4720 parse_syncrepl_line(
4721         ConfigArgs      *c,
4722         syncinfo_t      *si )
4723 {
4724         int     i;
4725         char    *val;
4726
4727         for ( i = 1; i < c->argc; i++ ) {
4728                 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
4729                                         STRLENOF( IDSTR "=" ) ) )
4730                 {
4731                         int tmp;
4732                         /* '\0' string terminator accounts for '=' */
4733                         val = c->argv[ i ] + STRLENOF( IDSTR "=" );
4734                         if ( lutil_atoi( &tmp, val ) != 0 ) {
4735                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4736                                         "Error: parse_syncrepl_line: "
4737                                         "unable to parse syncrepl id \"%s\"", val );
4738                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4739                                 return -1;
4740                         }
4741                         if ( tmp > SLAP_SYNC_RID_MAX || tmp < 0 ) {
4742                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4743                                         "Error: parse_syncrepl_line: "
4744                                         "syncrepl id %d is out of range [0..%d]", tmp, SLAP_SYNC_RID_MAX );
4745                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4746                                 return -1;
4747                         }
4748                         si->si_rid = tmp;
4749                         sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
4750                         si->si_got |= GOT_RID;
4751                 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
4752                                         STRLENOF( PROVIDERSTR "=" ) ) )
4753                 {
4754                         val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
4755                         ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
4756 #ifdef HAVE_TLS
4757                         if ( ldap_is_ldaps_url( val ))
4758                                 si->si_bindconf.sb_tls_do_init = 1;
4759 #endif
4760                         si->si_got |= GOT_PROVIDER;
4761                 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
4762                                         STRLENOF( SCHEMASTR "=" ) ) )
4763                 {
4764                         val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
4765                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
4766                                 si->si_schemachecking = 1;
4767                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
4768                                 si->si_schemachecking = 0;
4769                         } else {
4770                                 si->si_schemachecking = 1;
4771                         }
4772                         si->si_got |= GOT_SCHEMACHECKING;
4773                 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
4774                                         STRLENOF( FILTERSTR "=" ) ) )
4775                 {
4776                         val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
4777                         if ( si->si_filterstr.bv_val )
4778                                 ch_free( si->si_filterstr.bv_val );
4779                         ber_str2bv( val, 0, 1, &si->si_filterstr );
4780                         si->si_got |= GOT_FILTER;
4781                 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
4782                                         STRLENOF( LOGFILTERSTR "=" ) ) )
4783                 {
4784                         val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
4785                         if ( si->si_logfilterstr.bv_val )
4786                                 ch_free( si->si_logfilterstr.bv_val );
4787                         ber_str2bv( val, 0, 1, &si->si_logfilterstr );
4788                         si->si_got |= GOT_LOGFILTER;
4789                 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
4790                                         STRLENOF( SEARCHBASESTR "=" ) ) )
4791                 {
4792                         struct berval   bv;
4793                         int             rc;
4794
4795                         val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
4796                         if ( si->si_base.bv_val ) {
4797                                 ch_free( si->si_base.bv_val );
4798                         }
4799                         ber_str2bv( val, 0, 0, &bv );
4800                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
4801                         if ( rc != LDAP_SUCCESS ) {
4802                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4803                                         "Invalid base DN \"%s\": %d (%s)",
4804                                         val, rc, ldap_err2string( rc ) );
4805                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4806                                 return -1;
4807                         }
4808                         si->si_got |= GOT_SEARCHBASE;
4809 #ifdef ENABLE_REWRITE
4810                 } else if ( !strncasecmp( c->argv[ i ], SUFFIXMSTR "=",
4811                                         STRLENOF( SUFFIXMSTR "=" ) ) )
4812                 {
4813                         struct berval   bv;
4814                         int             rc;
4815
4816                         val = c->argv[ i ] + STRLENOF( SUFFIXMSTR "=" );
4817                         if ( si->si_suffixm.bv_val ) {
4818                                 ch_free( si->si_suffixm.bv_val );
4819                         }
4820                         ber_str2bv( val, 0, 0, &bv );
4821                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_suffixm, NULL );
4822                         if ( rc != LDAP_SUCCESS ) {
4823                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4824                                         "Invalid massage DN \"%s\": %d (%s)",
4825                                         val, rc, ldap_err2string( rc ) );
4826                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4827                                 return -1;
4828                         }
4829                         if ( !be_issubordinate( c->be, &si->si_suffixm )) {
4830                                 ch_free( si->si_suffixm.bv_val );
4831                                 BER_BVZERO( &si->si_suffixm );
4832                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4833                                         "Massage DN \"%s\" is not within the database naming context",
4834                                         val );
4835                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4836                                 return -1;
4837                         }
4838                         si->si_got |= GOT_SUFFIXM;
4839 #endif
4840                 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
4841                                         STRLENOF( LOGBASESTR "=" ) ) )
4842                 {
4843                         struct berval   bv;
4844                         int             rc;
4845
4846                         val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
4847                         if ( si->si_logbase.bv_val ) {
4848                                 ch_free( si->si_logbase.bv_val );
4849                         }
4850                         ber_str2bv( val, 0, 0, &bv );
4851                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
4852                         if ( rc != LDAP_SUCCESS ) {
4853                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4854                                         "Invalid logbase DN \"%s\": %d (%s)",
4855                                         val, rc, ldap_err2string( rc ) );
4856                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4857                                 return -1;
4858                         }
4859                         si->si_got |= GOT_LOGBASE;
4860                 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
4861                                         STRLENOF( SCOPESTR "=" ) ) )
4862                 {
4863                         int j;
4864                         val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
4865                         j = ldap_pvt_str2scope( val );
4866                         if ( j < 0 ) {
4867                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4868                                         "Error: parse_syncrepl_line: "
4869                                         "unknown scope \"%s\"", val);
4870                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4871                                 return -1;
4872                         }
4873                         si->si_scope = j;
4874                         si->si_got |= GOT_SCOPE;
4875                 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
4876                                         STRLENOF( ATTRSONLYSTR ) ) )
4877                 {
4878                         si->si_attrsonly = 1;
4879                         si->si_got |= GOT_ATTRSONLY;
4880                 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
4881                                         STRLENOF( ATTRSSTR "=" ) ) )
4882                 {
4883                         val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
4884                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4885                                 char *attr_fname;
4886                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4887                                 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
4888                                 if ( si->si_anlist == NULL ) {
4889                                         ch_free( attr_fname );
4890                                         return -1;
4891                                 }
4892                                 si->si_anfile = attr_fname;
4893                         } else {
4894                                 char *str, *s, *next;
4895                                 const char *delimstr = " ,\t";
4896                                 str = ch_strdup( val );
4897                                 for ( s = ldap_pvt_strtok( str, delimstr, &next );
4898                                                 s != NULL;
4899                                                 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
4900                                 {
4901                                         if ( strlen(s) == 1 && *s == '*' ) {
4902                                                 si->si_allattrs = 1;
4903                                                 val[ s - str ] = delimstr[0];
4904                                         }
4905                                         if ( strlen(s) == 1 && *s == '+' ) {
4906                                                 si->si_allopattrs = 1;
4907                                                 val [ s - str ] = delimstr[0];
4908                                         }
4909                                 }
4910                                 ch_free( str );
4911                                 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
4912                                 if ( si->si_anlist == NULL ) {
4913                                         return -1;
4914                                 }
4915                         }
4916                         si->si_got |= GOT_ATTRS;
4917                 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
4918                                         STRLENOF( EXATTRSSTR "=" ) ) )
4919                 {
4920                         val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
4921                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
4922                                 char *attr_fname;
4923                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
4924                                 si->si_exanlist = file2anlist(
4925                                         si->si_exanlist, attr_fname, " ,\t" );
4926                                 if ( si->si_exanlist == NULL ) {
4927                                         ch_free( attr_fname );
4928                                         return -1;
4929                                 }
4930                                 ch_free( attr_fname );
4931                         } else {
4932                                 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
4933                                 if ( si->si_exanlist == NULL ) {
4934                                         return -1;
4935                                 }
4936                         }
4937                         si->si_got |= GOT_EXATTRS;
4938                 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
4939                                         STRLENOF( TYPESTR "=" ) ) )
4940                 {
4941                         val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
4942                         if ( !strncasecmp( val, "refreshOnly",
4943                                                 STRLENOF("refreshOnly") ) )
4944                         {
4945                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
4946                         } else if ( !strncasecmp( val, "refreshAndPersist",
4947                                                 STRLENOF("refreshAndPersist") ) )
4948                         {
4949                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
4950                                 si->si_interval = 60;
4951                         } else {
4952                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
4953                                         "Error: parse_syncrepl_line: "
4954                                         "unknown sync type \"%s\"", val);
4955                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4956                                 return -1;
4957                         }
4958                         si->si_got |= GOT_TYPE;
4959                 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
4960                                         STRLENOF( INTERVALSTR "=" ) ) )
4961                 {
4962                         val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
4963                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
4964                                 si->si_interval = 0;
4965                         } else if ( strchr( val, ':' ) != NULL ) {
4966                                 char *next, *ptr = val;
4967                                 int dd, hh, mm, ss;
4968
4969                                 dd = strtol( ptr, &next, 10 );
4970                                 if ( next == ptr || next[0] != ':' || dd < 0 ) {
4971                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4972                                                 "Error: parse_syncrepl_line: "
4973                                                 "invalid interval \"%s\", unable to parse days", val );
4974                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4975                                         return -1;
4976                                 }
4977                                 ptr = next + 1;
4978                                 hh = strtol( ptr, &next, 10 );
4979                                 if ( next == ptr || next[0] != ':' || hh < 0 || hh > 24 ) {
4980                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4981                                                 "Error: parse_syncrepl_line: "
4982                                                 "invalid interval \"%s\", unable to parse hours", val );
4983                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4984                                         return -1;
4985                                 }
4986                                 ptr = next + 1;
4987                                 mm = strtol( ptr, &next, 10 );
4988                                 if ( next == ptr || next[0] != ':' || mm < 0 || mm > 60 ) {
4989                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4990                                                 "Error: parse_syncrepl_line: "
4991                                                 "invalid interval \"%s\", unable to parse minutes", val );
4992                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
4993                                         return -1;
4994                                 }
4995                                 ptr = next + 1;
4996                                 ss = strtol( ptr, &next, 10 );
4997                                 if ( next == ptr || next[0] != '\0' || ss < 0 || ss > 60 ) {
4998                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
4999                                                 "Error: parse_syncrepl_line: "
5000                                                 "invalid interval \"%s\", unable to parse seconds", val );
5001                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5002                                         return -1;
5003                                 }
5004                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
5005                         } else {
5006                                 unsigned long   t;
5007
5008                                 if ( lutil_parse_time( val, &t ) != 0 ) {
5009                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
5010                                                 "Error: parse_syncrepl_line: "
5011                                                 "invalid interval \"%s\"", val );
5012                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5013                                         return -1;
5014                                 }
5015                                 si->si_interval = (time_t)t;
5016                         }
5017                         if ( si->si_interval < 0 ) {
5018                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5019                                         "Error: parse_syncrepl_line: "
5020                                         "invalid interval \"%ld\"",
5021                                         (long) si->si_interval);
5022                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5023                                 return -1;
5024                         }
5025                         si->si_got |= GOT_INTERVAL;
5026                 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
5027                                         STRLENOF( RETRYSTR "=" ) ) )
5028                 {
5029                         if ( parse_syncrepl_retry( c, c->argv[ i ], si ) ) {
5030                                 return 1;
5031                         }
5032                 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
5033                                         STRLENOF( MANAGEDSAITSTR "=" ) ) )
5034                 {
5035                         val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
5036                         if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
5037                                 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
5038                         {
5039                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5040                                         "invalid manageDSAit value \"%s\".\n",
5041                                         val );
5042                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5043                                 return 1;
5044                         }
5045                         si->si_got |= GOT_MANAGEDSAIT;
5046                 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
5047                                         STRLENOF( SLIMITSTR "=") ) )
5048                 {
5049                         val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
5050                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
5051                                 si->si_slimit = 0;
5052
5053                         } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
5054                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5055                                         "invalid size limit value \"%s\".\n",
5056                                         val );
5057                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5058                                 return 1;
5059                         }
5060                         si->si_got |= GOT_SLIMIT;
5061                 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
5062                                         STRLENOF( TLIMITSTR "=" ) ) )
5063                 {
5064                         val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
5065                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
5066                                 si->si_tlimit = 0;
5067
5068                         } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
5069                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5070                                         "invalid time limit value \"%s\".\n",
5071                                         val );
5072                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5073                                 return 1;
5074                         }
5075                         si->si_got |= GOT_TLIMIT;
5076                 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
5077                                         STRLENOF( SYNCDATASTR "=" ) ) )
5078                 {
5079                         val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
5080                         si->si_syncdata = verb_to_mask( val, datamodes );
5081                         si->si_got |= GOT_SYNCDATA;
5082                 } else if ( !strncasecmp( c->argv[ i ], STRICT_REFRESH,
5083                                         STRLENOF( STRICT_REFRESH ) ) )
5084                 {
5085                         si->si_strict_refresh = 1;
5086                 } else if ( !bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
5087                         si->si_got |= GOT_BINDCONF;
5088                 } else {
5089                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
5090                                 "Error: parse_syncrepl_line: "
5091                                 "unable to parse \"%s\"\n", c->argv[ i ] );
5092                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5093                         return -1;
5094                 }
5095         }
5096
5097         if ( ( si->si_got & GOT_REQUIRED ) != GOT_REQUIRED ) {
5098                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5099                         "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
5100                         si->si_got & GOT_RID ? "" : " "IDSTR,
5101                         si->si_got & GOT_PROVIDER ? "" : " "PROVIDERSTR,
5102                         si->si_got & GOT_SEARCHBASE ? "" : " "SEARCHBASESTR );
5103                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5104                 return -1;
5105         }
5106
5107         if ( !be_issubordinate( c->be, &si->si_base ) && !( si->si_got & GOT_SUFFIXM )) {
5108                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
5109                         "Base DN \"%s\" is not within the database naming context",
5110                         si->si_base.bv_val );
5111                 ch_free( si->si_base.bv_val );
5112                 BER_BVZERO( &si->si_base );
5113                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5114                 return -1;
5115         }
5116
5117 #ifdef ENABLE_REWRITE
5118         if ( si->si_got & GOT_SUFFIXM ) {
5119                 if (config_suffixm( c, si )) {
5120                         ch_free( si->si_suffixm.bv_val );
5121                         BER_BVZERO( &si->si_suffixm );
5122                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
5123                                 "Error configuring rewrite engine" );
5124                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
5125                         return -1;
5126                 }
5127         }
5128 #endif
5129
5130         if ( !( si->si_got & GOT_RETRY ) ) {
5131                 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": no retry defined, using default\n", 
5132                         si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", 0 );
5133                 if ( si->si_retryinterval == NULL ) {
5134                         if ( parse_syncrepl_retry( c, "retry=undefined", si ) ) {
5135                                 return 1;
5136                         }
5137                 }
5138         }
5139
5140         si->si_filter = str2filter( si->si_filterstr.bv_val );
5141         if ( si->si_filter == NULL ) {
5142                 Debug( LDAP_DEBUG_ANY, "syncrepl %s " SEARCHBASESTR "=\"%s\": unable to parse filter=\"%s\"\n", 
5143                         si->si_ridtxt, c->be->be_suffix ? c->be->be_suffix[ 0 ].bv_val : "(null)", si->si_filterstr.bv_val );
5144                 return 1;
5145         }
5146
5147         return 0;
5148 }
5149
5150 static int
5151 add_syncrepl(
5152         ConfigArgs *c )
5153 {
5154         syncinfo_t *si;
5155         int     rc = 0;
5156
5157         if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
5158                 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
5159                         "operations required for syncrepl", c->be->be_type );
5160                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
5161                 return 1;
5162         }
5163         if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
5164                 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
5165                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
5166                 return 1;
5167         }
5168         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
5169
5170         if ( si == NULL ) {
5171                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
5172                 return 1;
5173         }
5174
5175         si->si_bindconf.sb_tls = SB_TLS_OFF;
5176         si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
5177         si->si_schemachecking = 0;
5178         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
5179                 &si->si_filterstr );
5180         si->si_base.bv_val = NULL;
5181         si->si_scope = LDAP_SCOPE_SUBTREE;
5182         si->si_attrsonly = 0;
5183         si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
5184         si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
5185         si->si_attrs = NULL;
5186         si->si_allattrs = 0;
5187         si->si_allopattrs = 0;
5188         si->si_exattrs = NULL;
5189         si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
5190         si->si_interval = 86400;
5191         si->si_retryinterval = NULL;
5192         si->si_retrynum_init = NULL;
5193         si->si_retrynum = NULL;
5194         si->si_manageDSAit = 0;
5195         si->si_tlimit = 0;
5196         si->si_slimit = 0;
5197
5198         si->si_presentlist = NULL;
5199         LDAP_LIST_INIT( &si->si_nonpresentlist );
5200         ldap_pvt_thread_mutex_init( &si->si_mutex );
5201
5202         rc = parse_syncrepl_line( c, si );
5203
5204         if ( rc == 0 ) {
5205                 LDAPURLDesc *lud;
5206
5207                 /* Must be LDAPv3 because we need controls */
5208                 switch ( si->si_bindconf.sb_version ) {
5209                 case 0:
5210                         /* not explicitly set */
5211                         si->si_bindconf.sb_version = LDAP_VERSION3;
5212                         break;
5213                 case 3:
5214                         /* explicitly set */
5215                         break;
5216                 default:
5217                         Debug( LDAP_DEBUG_ANY,
5218                                 "version %d incompatible with syncrepl\n",
5219                                 si->si_bindconf.sb_version, 0, 0 );
5220                         syncinfo_free( si, 0 ); 
5221                         return 1;
5222                 }
5223
5224                 if ( ldap_url_parse( si->si_bindconf.sb_uri.bv_val, &lud )) {
5225                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
5226                                 "<%s> invalid URL", c->argv[0] );
5227                         Debug( LDAP_DEBUG_ANY, "%s: %s %s\n",
5228                                 c->log, c->cr_msg, si->si_bindconf.sb_uri.bv_val );
5229                         return 1;
5230                 }
5231
5232                 si->si_be = c->be;
5233                 if ( slapMode & SLAP_SERVER_MODE ) {
5234                         int isMe = 0;
5235                         /* check if consumer points to current server and database.
5236                          * If so, ignore this configuration.
5237                          */
5238                         if ( !SLAP_DBHIDDEN( c->be ) ) {
5239                                 int i;
5240                                 /* if searchbase doesn't match current DB suffix,
5241                                  * assume it's different
5242                                  */
5243                                 for ( i=0; !BER_BVISNULL( &c->be->be_nsuffix[i] ); i++ ) {
5244                                         if ( bvmatch( &si->si_base, &c->be->be_nsuffix[i] )) {
5245                                                 isMe = 1;
5246                                                 break;
5247                                         }
5248                                 }
5249                                 /* if searchbase matches, see if URLs match */
5250                                 if ( isMe && config_check_my_url( si->si_bindconf.sb_uri.bv_val,
5251                                                 lud ) == NULL )
5252                                         isMe = 0;
5253                         }
5254
5255                         if ( !isMe ) {
5256                                 init_syncrepl( si );
5257                                 ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
5258                                 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
5259                                         si->si_interval, do_syncrepl, si, "do_syncrepl",
5260                                         si->si_ridtxt );
5261                                 ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
5262                                 if ( si->si_re )
5263                                         rc = config_sync_shadow( c ) ? -1 : 0;
5264                                 else
5265                                         rc = -1;
5266                         }
5267                 } else {
5268                         /* mirrormode still needs to see this flag in tool mode */
5269                         rc = config_sync_shadow( c ) ? -1 : 0;
5270                 }
5271                 ldap_free_urldesc( lud );
5272         }
5273
5274 #ifdef HAVE_TLS
5275         /* Use main slapd defaults */
5276         bindconf_tls_defaults( &si->si_bindconf );
5277 #endif
5278         if ( rc < 0 ) {
5279                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
5280                 syncinfo_free( si, 0 ); 
5281                 return 1;
5282         } else {
5283                 Debug( LDAP_DEBUG_CONFIG,
5284                         "Config: ** successfully added syncrepl %s \"%s\"\n",
5285                         si->si_ridtxt,
5286                         BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
5287                         "(null)" : si->si_bindconf.sb_uri.bv_val, 0 );
5288                 if ( c->be->be_syncinfo ) {
5289                         syncinfo_t *sip;
5290
5291                         si->si_cookieState = c->be->be_syncinfo->si_cookieState;
5292
5293                         /* add new syncrepl to end of list (same order as when deleting) */
5294                         for ( sip = c->be->be_syncinfo; sip->si_next; sip = sip->si_next );
5295                         sip->si_next = si;
5296                 } else {
5297                         si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
5298                         ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
5299                         ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_pmutex );
5300
5301                         c->be->be_syncinfo = si;
5302                 }
5303                 si->si_cookieState->cs_ref++;
5304
5305                 si->si_next = NULL;
5306
5307                 return 0;
5308         }
5309 }
5310
5311 static void
5312 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
5313 {
5314         struct berval bc, uri, bs;
5315         char buf[BUFSIZ*2], *ptr;
5316         ber_len_t len;
5317         int i;
5318 #       define WHATSLEFT        ((ber_len_t) (&buf[sizeof( buf )] - ptr))
5319
5320         BER_BVZERO( bv );
5321
5322         /* temporarily inhibit bindconf from printing URI */
5323         uri = si->si_bindconf.sb_uri;
5324         BER_BVZERO( &si->si_bindconf.sb_uri );
5325         si->si_bindconf.sb_version = 0;
5326         bindconf_unparse( &si->si_bindconf, &bc );
5327         si->si_bindconf.sb_uri = uri;
5328         si->si_bindconf.sb_version = LDAP_VERSION3;
5329
5330         ptr = buf;
5331         assert( si->si_rid >= 0 && si->si_rid <= SLAP_SYNC_RID_MAX );
5332         len = snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
5333                 si->si_rid, si->si_bindconf.sb_uri.bv_val );
5334         if ( len >= sizeof( buf ) ) return;
5335         ptr += len;
5336         if ( !BER_BVISNULL( &bc ) ) {
5337                 if ( WHATSLEFT <= bc.bv_len ) {
5338                         free( bc.bv_val );
5339                         return;
5340                 }
5341                 ptr = lutil_strcopy( ptr, bc.bv_val );
5342                 free( bc.bv_val );
5343         }
5344         if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
5345                 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
5346                 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
5347                 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
5348                 *ptr++ = '"';
5349         }
5350         if ( !BER_BVISNULL( &si->si_base ) ) {
5351                 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
5352                 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
5353                 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
5354                 *ptr++ = '"';
5355         }
5356 #ifdef ENABLE_REWRITE
5357         if ( !BER_BVISNULL( &si->si_suffixm ) ) {
5358                 if ( WHATSLEFT <= STRLENOF( " " SUFFIXMSTR "=\"" "\"" ) + si->si_suffixm.bv_len ) return;
5359                 ptr = lutil_strcopy( ptr, " " SUFFIXMSTR "=\"" );
5360                 ptr = lutil_strcopy( ptr, si->si_suffixm.bv_val );
5361                 *ptr++ = '"';
5362         }
5363 #endif
5364         if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
5365                 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
5366                 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
5367                 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
5368                 *ptr++ = '"';
5369         }
5370         if ( !BER_BVISNULL( &si->si_logbase ) ) {
5371                 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
5372                 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
5373                 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
5374                 *ptr++ = '"';
5375         }
5376         if ( ldap_pvt_scope2bv( si->si_scope, &bs ) == LDAP_SUCCESS ) {
5377                 if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + bs.bv_len ) return;
5378                 ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
5379                 ptr = lutil_strcopy( ptr, bs.bv_val );
5380         }
5381         if ( si->si_attrsonly ) {
5382                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
5383                 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
5384         }
5385         if ( si->si_anfile ) {
5386                 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
5387                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
5388                 ptr = lutil_strcopy( ptr, si->si_anfile );
5389                 *ptr++ = '"';
5390         } else if ( si->si_allattrs || si->si_allopattrs ||
5391                 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
5392         {
5393                 char *old;
5394
5395                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
5396                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
5397                 old = ptr;
5398                 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
5399                 if ( ptr == NULL ) return;
5400                 if ( si->si_allattrs ) {
5401                         if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
5402                         if ( old != ptr ) *ptr++ = ',';
5403                         *ptr++ = '*';
5404                 }
5405                 if ( si->si_allopattrs ) {
5406                         if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
5407                         if ( old != ptr ) *ptr++ = ',';
5408                         *ptr++ = '+';
5409                 }
5410                 *ptr++ = '"';
5411         }
5412         if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
5413                 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
5414                 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
5415                 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
5416                 if ( ptr == NULL ) return;
5417         }
5418         if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
5419         ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
5420         ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
5421         
5422         if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
5423         ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
5424         ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
5425                 "refreshAndPersist" : "refreshOnly" );
5426
5427         if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
5428                 int dd, hh, mm, ss;
5429
5430                 dd = si->si_interval;
5431                 ss = dd % 60;
5432                 dd /= 60;
5433                 mm = dd % 60;
5434                 dd /= 60;
5435                 hh = dd % 24;
5436                 dd /= 24;
5437                 len = snprintf( ptr, WHATSLEFT, " %s=%02d:%02d:%02d:%02d",
5438                         INTERVALSTR, dd, hh, mm, ss );
5439                 if ( len >= WHATSLEFT ) return;
5440                 ptr += len;
5441         }
5442
5443         if ( si->si_got & GOT_RETRY ) {
5444                 const char *space = "";
5445                 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
5446                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
5447                 for (i=0; si->si_retryinterval[i]; i++) {
5448                         len = snprintf( ptr, WHATSLEFT, "%s%ld ", space,
5449                                 (long) si->si_retryinterval[i] );
5450                         space = " ";
5451                         if ( WHATSLEFT - 1 <= len ) return;
5452                         ptr += len;
5453                         if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
5454                                 *ptr++ = '+';
5455                         else {
5456                                 len = snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
5457                                 if ( WHATSLEFT <= len ) return;
5458                                 ptr += len;
5459                         }
5460                 }
5461                 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
5462                 *ptr++ = '"';
5463         } else {
5464                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=undefined" );
5465         }
5466
5467         if ( si->si_slimit ) {
5468                 len = snprintf( ptr, WHATSLEFT, " " SLIMITSTR "=%d", si->si_slimit );
5469                 if ( WHATSLEFT <= len ) return;
5470                 ptr += len;
5471         }
5472
5473         if ( si->si_tlimit ) {
5474                 len = snprintf( ptr, WHATSLEFT, " " TLIMITSTR "=%d", si->si_tlimit );
5475                 if ( WHATSLEFT <= len ) return;
5476                 ptr += len;
5477         }
5478
5479         if ( si->si_syncdata ) {
5480                 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
5481                         if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
5482                         ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
5483                         ptr = lutil_strcopy( ptr, bc.bv_val );
5484                 }
5485         }
5486         bc.bv_len = ptr - buf;
5487         bc.bv_val = buf;
5488         ber_dupbv( bv, &bc );
5489 }
5490
5491 int
5492 syncrepl_config( ConfigArgs *c )
5493 {
5494         if (c->op == SLAP_CONFIG_EMIT) {
5495                 if ( c->be->be_syncinfo ) {
5496                         struct berval bv;
5497                         syncinfo_t *si;
5498
5499                         for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
5500                                 syncrepl_unparse( si, &bv ); 
5501                                 ber_bvarray_add( &c->rvalue_vals, &bv );
5502                         }
5503                         return 0;
5504                 }
5505                 return 1;
5506         } else if ( c->op == LDAP_MOD_DELETE ) {
5507                 int isrunning = 0;
5508                 if ( c->be->be_syncinfo ) {
5509                         syncinfo_t *si, **sip;
5510                         int i;
5511
5512                         for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
5513                                 si = *sip;
5514                                 if ( c->valx == -1 || i == c->valx ) {
5515                                         *sip = si->si_next;
5516                                         si->si_ctype = -1;
5517                                         si->si_next = NULL;
5518                                         /* If the task is currently active, we have to leave
5519                                          * it running. It will exit on its own. This will only
5520                                          * happen when running on the cn=config DB.
5521                                          */
5522                                         if ( si->si_re ) {
5523                                                 if ( ldap_pvt_thread_mutex_trylock( &si->si_mutex )) {
5524                                                         isrunning = 1;
5525                                                 } else {
5526                                                         /* There is no active thread, but we must still
5527                                                          * ensure that no thread is (or will be) queued
5528                                                          * while we removes the task.
5529                                                          */
5530                                                         struct re_s *re = si->si_re;
5531                                                         si->si_re = NULL;
5532
5533                                                         if ( si->si_conn ) {
5534                                                                 connection_client_stop( si->si_conn );
5535                                                                 si->si_conn = NULL;
5536                                                         }
5537
5538                                                         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
5539                                                         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, re ) ) {
5540                                                                 ldap_pvt_runqueue_stoptask( &slapd_rq, re );
5541                                                                 isrunning = 1;
5542                                                         }
5543                                                         if ( ldap_pvt_thread_pool_retract( &connection_pool,
5544                                                                         re->routine, re ) > 0 )
5545                                                                 isrunning = 0;
5546
5547                                                         ldap_pvt_runqueue_remove( &slapd_rq, re );
5548                                                         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
5549
5550                                                         ldap_pvt_thread_mutex_unlock( &si->si_mutex );
5551                                                 }
5552                                         }
5553                                         if ( !isrunning ) {
5554                                                 syncinfo_free( si, 0 );
5555                                         }
5556                                         if ( i == c->valx )
5557                                                 break;
5558                                 } else {
5559                                         sip = &si->si_next;
5560                                 }
5561                         }
5562                 }
5563                 if ( !c->be->be_syncinfo ) {
5564                         SLAP_DBFLAGS( c->be ) &= ~SLAP_DBFLAG_SHADOW_MASK;
5565                 }
5566                 return 0;
5567         }
5568         if ( SLAP_SLURP_SHADOW( c->be ) ) {
5569                 Debug(LDAP_DEBUG_ANY, "%s: "
5570                         "syncrepl: database already shadowed.\n",
5571                         c->log, 0, 0);
5572                 return(1);
5573         } else {
5574                 return add_syncrepl( c );
5575         }
5576 }