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