]> git.sur5r.net Git - openldap/blob - servers/slapd/syncrepl.c
fix subtree rename integrity; curiously enough, tes023 only failed on 64 bit arch...
[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-2007 The OpenLDAP Foundation.
6  * Portions Copyright 2003 by IBM Corporation.
7  * Portions Copyright 2003 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 struct nonpresent_entry {
35         struct berval *npe_name;
36         struct berval *npe_nname;
37         LDAP_LIST_ENTRY(nonpresent_entry) npe_link;
38 };
39
40 typedef struct cookie_state {
41         ldap_pvt_thread_mutex_t cs_mutex;
42         int     cs_num;
43         int cs_age;
44         struct berval *cs_vals;
45         int *cs_sids;
46 } cookie_state;
47         
48 #define SYNCDATA_DEFAULT        0       /* entries are plain LDAP entries */
49 #define SYNCDATA_ACCESSLOG      1       /* entries are accesslog format */
50 #define SYNCDATA_CHANGELOG      2       /* entries are changelog format */
51
52 #define SYNCLOG_LOGGING         0       /* doing a log-based update */
53 #define SYNCLOG_FALLBACK        1       /* doing a full refresh */
54
55 #define RETRYNUM_FOREVER        (-1)    /* retry forever */
56 #define RETRYNUM_TAIL           (-2)    /* end of retrynum array */
57 #define RETRYNUM_VALID(n)       ((n) >= RETRYNUM_FOREVER)       /* valid retrynum */
58 #define RETRYNUM_FINITE(n)      ((n) > RETRYNUM_FOREVER)        /* not forever */
59
60 typedef struct syncinfo_s {
61         struct syncinfo_s       *si_next;
62         BackendDB               *si_be;
63         BackendDB               *si_wbe;
64         struct re_s             *si_re;
65         int                     si_rid;
66         char                    si_ridtxt[8];
67         slap_bindconf           si_bindconf;
68         struct berval           si_base;
69         struct berval           si_logbase;
70         struct berval           si_filterstr;
71         struct berval           si_logfilterstr;
72         int                     si_scope;
73         int                     si_attrsonly;
74         char                    *si_anfile;
75         AttributeName           *si_anlist;
76         AttributeName           *si_exanlist;
77         char                    **si_attrs;
78         char                    **si_exattrs;
79         int                     si_allattrs;
80         int                     si_allopattrs;
81         int                     si_schemachecking;
82         int                     si_type;        /* the active type */
83         int                     si_ctype;       /* the configured type */
84         time_t                  si_interval;
85         time_t                  *si_retryinterval;
86         int                     *si_retrynum_init;
87         int                     *si_retrynum;
88         struct sync_cookie      si_syncCookie;
89         cookie_state            *si_cookieState;
90         int                     si_cookieAge;
91         int                     si_manageDSAit;
92         int                     si_slimit;
93         int                     si_tlimit;
94         int                     si_refreshDelete;
95         int                     si_refreshPresent;
96         int                     si_syncdata;
97         int                     si_logstate;
98         int                     si_conn_setup;
99         Avlnode                 *si_presentlist;
100         LDAP                    *si_ld;
101         LDAP_LIST_HEAD(np, nonpresent_entry)    si_nonpresentlist;
102         ldap_pvt_thread_mutex_t si_mutex;
103 } syncinfo_t;
104
105 static int syncuuid_cmp( const void *, const void * );
106 static void avl_ber_bvfree( void * );
107 static void syncrepl_del_nonpresent( Operation *, syncinfo_t *, BerVarray, struct berval * );
108 static int syncrepl_message_to_op(
109                                         syncinfo_t *, Operation *, LDAPMessage * );
110 static int syncrepl_message_to_entry(
111                                         syncinfo_t *, Operation *, LDAPMessage *,
112                                         Modifications **, Entry **, int );
113 static int syncrepl_entry(
114                                         syncinfo_t *, Operation*, Entry*,
115                                         Modifications**,int, struct berval* );
116 static int syncrepl_updateCookie(
117                                         syncinfo_t *, Operation *, struct berval *,
118                                         struct sync_cookie * );
119 static struct berval * slap_uuidstr_from_normalized(
120                                         struct berval *, struct berval *, void * );
121
122 /* callback functions */
123 static int dn_callback( Operation *, SlapReply * );
124 static int nonpresent_callback( Operation *, SlapReply * );
125 static int null_callback( Operation *, SlapReply * );
126
127 static AttributeDescription *sync_descs[4];
128
129 static void
130 init_syncrepl(syncinfo_t *si)
131 {
132         int i, j, k, l, n;
133         char **attrs, **exattrs;
134
135         if ( !sync_descs[0] ) {
136                 sync_descs[0] = slap_schema.si_ad_objectClass;
137                 sync_descs[1] = slap_schema.si_ad_structuralObjectClass;
138                 sync_descs[2] = slap_schema.si_ad_entryCSN;
139                 sync_descs[3] = NULL;
140         }
141
142         if ( si->si_allattrs && si->si_allopattrs )
143                 attrs = NULL;
144         else
145                 attrs = anlist2attrs( si->si_anlist );
146
147         if ( attrs ) {
148                 if ( si->si_allattrs ) {
149                         i = 0;
150                         while ( attrs[i] ) {
151                                 if ( !is_at_operational( at_find( attrs[i] ) ) ) {
152                                         for ( j = i; attrs[j] != NULL; j++ ) {
153                                                 if ( j == i )
154                                                         ch_free( attrs[i] );
155                                                 attrs[j] = attrs[j+1];
156                                         }
157                                 } else {
158                                         i++;
159                                 }
160                         }
161                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
162                         attrs[i] = ch_strdup("*");
163                         attrs[i + 1] = NULL;
164
165                 } else if ( si->si_allopattrs ) {
166                         i = 0;
167                         while ( attrs[i] ) {
168                                 if ( is_at_operational( at_find( attrs[i] ) ) ) {
169                                         for ( j = i; attrs[j] != NULL; j++ ) {
170                                                 if ( j == i )
171                                                         ch_free( attrs[i] );
172                                                 attrs[j] = attrs[j+1];
173                                         }
174                                 } else {
175                                         i++;
176                                 }
177                         }
178                         attrs = ( char ** ) ch_realloc( attrs, (i + 2)*sizeof( char * ) );
179                         attrs[i] = ch_strdup("+");
180                         attrs[i + 1] = NULL;
181                 }
182
183                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
184                         j = 0;
185                         while ( attrs[j] ) {
186                                 if ( !strcmp( attrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
187                                         for ( k = j; attrs[k] != NULL; k++ ) {
188                                                 if ( k == j )
189                                                         ch_free( attrs[k] );
190                                                 attrs[k] = attrs[k+1];
191                                         }
192                                 } else {
193                                         j++;
194                                 }
195                         }
196                 }
197
198                 for ( n = 0; attrs[ n ] != NULL; n++ ) /* empty */;
199
200                 if ( si->si_allopattrs ) {
201                         attrs = ( char ** ) ch_realloc( attrs, (n + 2)*sizeof( char * ) );
202                 } else {
203                         attrs = ( char ** ) ch_realloc( attrs, (n + 4)*sizeof( char * ) );
204                 }
205
206                 /* Add Attributes */
207                 if ( si->si_allopattrs ) {
208                         attrs[n++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
209                 } else {
210                         for ( i = 0; sync_descs[ i ] != NULL; i++ ) {
211                                 attrs[ n++ ] = ch_strdup ( sync_descs[i]->ad_cname.bv_val );
212                         }
213                 }
214                 attrs[ n ] = NULL;
215
216         } else {
217
218                 i = 0;
219                 if ( si->si_allattrs == si->si_allopattrs ) {
220                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
221                         attrs[i++] = ch_strdup( "*" );
222                         attrs[i++] = ch_strdup( "+" );
223                 } else if ( si->si_allattrs && !si->si_allopattrs ) {
224                         for ( n = 0; sync_descs[ n ] != NULL; n++ ) ;
225                         attrs = (char**) ch_malloc( (n+1)* sizeof(char*) );
226                         attrs[i++] = ch_strdup( "*" );
227                         for ( j = 1; sync_descs[ j ] != NULL; j++ ) {
228                                 attrs[i++] = ch_strdup ( sync_descs[j]->ad_cname.bv_val );
229                         }
230                 } else if ( !si->si_allattrs && si->si_allopattrs ) {
231                         attrs = (char**) ch_malloc( 3 * sizeof(char*) );
232                         attrs[i++] = ch_strdup( "+" );
233                         attrs[i++] = ch_strdup( sync_descs[0]->ad_cname.bv_val );
234                 }
235                 attrs[i] = NULL;
236         }
237         
238         si->si_attrs = attrs;
239
240         exattrs = anlist2attrs( si->si_exanlist );
241
242         if ( exattrs ) {
243                 for ( n = 0; exattrs[n] != NULL; n++ ) ;
244
245                 for ( i = 0; sync_descs[i] != NULL; i++ ) {
246                         j = 0;
247                         while ( exattrs[j] != NULL ) {
248                                 if ( !strcmp( exattrs[j], sync_descs[i]->ad_cname.bv_val ) ) {
249                                         ch_free( exattrs[j] );
250                                         for ( k = j; exattrs[k] != NULL; k++ ) {
251                                                 exattrs[k] = exattrs[k+1];
252                                         }
253                                 } else {
254                                         j++;
255                                 }
256                         }
257                 }
258
259                 for ( i = 0; exattrs[i] != NULL; i++ ) {
260                         for ( j = 0; si->si_anlist[j].an_name.bv_val; j++ ) {
261                                 ObjectClass     *oc;
262                                 if ( ( oc = si->si_anlist[j].an_oc ) ) {
263                                         k = 0;
264                                         while ( oc->soc_required[k] ) {
265                                                 if ( !strcmp( exattrs[i],
266                                                          oc->soc_required[k]->sat_cname.bv_val ) ) {
267                                                         ch_free( exattrs[i] );
268                                                         for ( l = i; exattrs[l]; l++ ) {
269                                                                 exattrs[l] = exattrs[l+1];
270                                                         }
271                                                 } else {
272                                                         k++;
273                                                 }
274                                         }
275                                 }
276                         }
277                 }
278
279                 for ( i = 0; exattrs[i] != NULL; i++ ) ;
280
281                 if ( i != n )
282                         exattrs = (char **) ch_realloc( exattrs, (i + 1)*sizeof(char *) );
283         }
284
285         si->si_exattrs = exattrs;       
286 }
287
288 typedef struct logschema {
289         struct berval ls_dn;
290         struct berval ls_req;
291         struct berval ls_mod;
292         struct berval ls_newRdn;
293         struct berval ls_delRdn;
294         struct berval ls_newSup;
295 } logschema;
296
297 static logschema changelog_sc = {
298         BER_BVC("targetDN"),
299         BER_BVC("changeType"),
300         BER_BVC("changes"),
301         BER_BVC("newRDN"),
302         BER_BVC("deleteOldRDN"),
303         BER_BVC("newSuperior")
304 };
305
306 static logschema accesslog_sc = {
307         BER_BVC("reqDN"),
308         BER_BVC("reqType"),
309         BER_BVC("reqMod"),
310         BER_BVC("reqNewRDN"),
311         BER_BVC("reqDeleteOldRDN"),
312         BER_BVC("reqNewSuperior")
313 };
314
315 static int
316 ldap_sync_search(
317         syncinfo_t *si,
318         void *ctx )
319 {
320         BerElementBuffer berbuf;
321         BerElement *ber = (BerElement *)&berbuf;
322         LDAPControl c[2], *ctrls[3];
323         ber_int_t       msgid;
324         int rc;
325         int rhint;
326         char *base;
327         char **attrs, *lattrs[8];
328         char *filter;
329         int attrsonly;
330         int scope;
331
332         /* setup LDAP SYNC control */
333         ber_init2( ber, NULL, LBER_USE_DER );
334         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &ctx );
335
336         /* If we're using a log but we have no state, then fallback to
337          * normal mode for a full refresh.
338          */
339         if ( si->si_syncdata && !si->si_syncCookie.numcsns ) {
340                 si->si_logstate = SYNCLOG_FALLBACK;
341         }
342
343         /* Use the log parameters if we're in log mode */
344         if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
345                 logschema *ls;
346                 if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
347                         ls = &accesslog_sc;
348                 else
349                         ls = &changelog_sc;
350                 lattrs[0] = ls->ls_dn.bv_val;
351                 lattrs[1] = ls->ls_req.bv_val;
352                 lattrs[2] = ls->ls_mod.bv_val;
353                 lattrs[3] = ls->ls_newRdn.bv_val;
354                 lattrs[4] = ls->ls_delRdn.bv_val;
355                 lattrs[5] = ls->ls_newSup.bv_val;
356                 lattrs[6] = slap_schema.si_ad_entryCSN->ad_cname.bv_val;
357                 lattrs[7] = NULL;
358
359                 rhint = 0;
360                 base = si->si_logbase.bv_val;
361                 filter = si->si_logfilterstr.bv_val;
362                 attrs = lattrs;
363                 attrsonly = 0;
364                 scope = LDAP_SCOPE_SUBTREE;
365         } else {
366                 rhint = 1;
367                 base = si->si_base.bv_val;
368                 filter = si->si_filterstr.bv_val;
369                 attrs = si->si_attrs;
370                 attrsonly = si->si_attrsonly;
371                 scope = si->si_scope;
372         }
373         if ( si->si_syncdata && si->si_logstate == SYNCLOG_FALLBACK ) {
374                 si->si_type = LDAP_SYNC_REFRESH_ONLY;
375         } else {
376                 si->si_type = si->si_ctype;
377         }
378
379         if ( !BER_BVISNULL( &si->si_syncCookie.octet_str ) )
380         {
381                 ber_printf( ber, "{eOb}",
382                         abs(si->si_type), &si->si_syncCookie.octet_str, rhint );
383         } else {
384                 ber_printf( ber, "{eb}",
385                         abs(si->si_type), rhint );
386         }
387
388         if ( (rc = ber_flatten2( ber, &c[0].ldctl_value, 0 ) ) == LBER_ERROR ) {
389                 ber_free_buf( ber );
390                 return rc;
391         }
392
393         c[0].ldctl_oid = LDAP_CONTROL_SYNC;
394         c[0].ldctl_iscritical = si->si_type < 0;
395         ctrls[0] = &c[0];
396
397         if ( !BER_BVISNULL( &si->si_bindconf.sb_authzId ) ) {
398                 c[1].ldctl_oid = LDAP_CONTROL_PROXY_AUTHZ;
399                 c[1].ldctl_value = si->si_bindconf.sb_authzId;
400                 c[1].ldctl_iscritical = 1;
401                 ctrls[1] = &c[1];
402                 ctrls[2] = NULL;
403         } else {
404                 ctrls[1] = NULL;
405         }
406
407         rc = ldap_search_ext( si->si_ld, base, scope, filter, attrs, attrsonly,
408                 ctrls, NULL, NULL, si->si_slimit, &msgid );
409         ber_free_buf( ber );
410         return rc;
411 }
412
413 static int
414 do_syncrep1(
415         Operation *op,
416         syncinfo_t *si )
417 {
418         int     rc;
419         int cmdline_cookie_found = 0;
420
421         struct sync_cookie      *sc = NULL;
422 #ifdef HAVE_TLS
423         void    *ssl;
424 #endif
425
426         rc = slap_client_connect( &si->si_ld, &si->si_bindconf );
427         if ( rc != LDAP_SUCCESS ) {
428                 goto done;
429         }
430         op->o_protocol = LDAP_VERSION3;
431
432         /* Set SSF to strongest of TLS, SASL SSFs */
433         op->o_sasl_ssf = 0;
434         op->o_tls_ssf = 0;
435         op->o_transport_ssf = 0;
436 #ifdef HAVE_TLS
437         if ( ldap_get_option( si->si_ld, LDAP_OPT_X_TLS_SSL_CTX, &ssl )
438                 == LDAP_SUCCESS && ssl != NULL )
439         {
440                 op->o_tls_ssf = ldap_pvt_tls_get_strength( ssl );
441         }
442 #endif /* HAVE_TLS */
443         ldap_get_option( si->si_ld, LDAP_OPT_X_SASL_SSF, &op->o_sasl_ssf );
444         op->o_ssf = ( op->o_sasl_ssf > op->o_tls_ssf )
445                 ?  op->o_sasl_ssf : op->o_tls_ssf;
446
447         ldap_set_option( si->si_ld, LDAP_OPT_TIMELIMIT, &si->si_tlimit );
448
449         /* We've just started up, or the remote server hasn't sent us
450          * any meaningful state.
451          */
452         if ( BER_BVISNULL( &si->si_syncCookie.octet_str ) ) {
453                 int i;
454
455                 si->si_syncCookie.rid = si->si_rid;
456                 si->si_syncCookie.sid = SLAP_SINGLE_SHADOW( si->si_be ) ? -1 :
457                         slap_serverID;
458
459                 LDAP_STAILQ_FOREACH( sc, &slap_sync_cookie, sc_next ) {
460                         if ( si->si_rid == sc->rid ) {
461                                 cmdline_cookie_found = 1;
462                                 break;
463                         }
464                 }
465
466                 if ( cmdline_cookie_found ) {
467                         /* cookie is supplied in the command line */
468
469                         LDAP_STAILQ_REMOVE( &slap_sync_cookie, sc, sync_cookie, sc_next );
470
471                         /* ctxcsn wasn't parsed yet, do it now */
472                         slap_parse_sync_cookie( sc, op->o_tmpmemctx );
473                         slap_sync_cookie_free( &si->si_syncCookie, 0 );
474                         slap_dup_sync_cookie( &si->si_syncCookie, sc );
475                         slap_sync_cookie_free( sc, 1 );
476                 } else {
477                         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
478                         if ( !si->si_cookieState->cs_num ) {
479                                 /* get contextCSN shadow replica from database */
480                                 BerVarray csn = NULL;
481                                 void *ctx = op->o_tmpmemctx;
482
483                                 op->o_req_ndn = op->o_bd->be_nsuffix[0];
484                                 op->o_req_dn = op->o_req_ndn;
485
486                                 /* try to read stored contextCSN */
487                                 op->o_tmpmemctx = NULL;
488                                 backend_attribute( op, NULL, &op->o_req_ndn,
489                                         slap_schema.si_ad_contextCSN, &csn, ACL_READ );
490                                 op->o_tmpmemctx = ctx;
491                                 if ( csn ) {
492                                         si->si_cookieState->cs_vals = csn;
493                                         for (i=0; !BER_BVISNULL( &csn[i] ); i++);
494                                         si->si_cookieState->cs_num = i;
495                                         si->si_cookieState->cs_sids = slap_parse_csn_sids( csn, i, NULL );
496                                 }
497                         }
498                         if ( si->si_cookieState->cs_num ) {
499                                 ber_bvarray_free( si->si_syncCookie.ctxcsn );
500                                 if ( ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
501                                         si->si_cookieState->cs_vals, NULL )) {
502                                         rc = LDAP_NO_MEMORY;
503                                         goto done;
504                                 }
505                                 si->si_syncCookie.numcsns = si->si_cookieState->cs_num;
506                                 si->si_syncCookie.sids = ch_malloc( si->si_cookieState->cs_num *
507                                         sizeof(int) );
508                                 for ( i=0; i<si->si_syncCookie.numcsns; i++ )
509                                         si->si_syncCookie.sids[i] = si->si_cookieState->cs_sids[i];
510                         }
511                         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
512                 }
513
514                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
515                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
516                         si->si_syncCookie.sid );
517         } else {
518                 AttributeName at[2];
519                 Attribute a = {0};
520                 Entry e = {0};
521                 SlapReply rs = {0};
522                 int i, j, changed = 0;
523
524                 /* Look for contextCSN from syncprov overlay. If
525                  * there's no overlay, this will be a no-op. That means
526                  * this is a pure consumer, so local changes will not be
527                  * allowed, and all changes will already be reflected in
528                  * the cookieState.
529                  */
530                 a.a_desc = slap_schema.si_ad_contextCSN;
531                 e.e_attrs = &a;
532                 e.e_name = si->si_wbe->be_suffix[0];
533                 e.e_nname = si->si_wbe->be_nsuffix[0];
534                 rs.sr_entry = &e;
535                 rs.sr_flags = REP_ENTRY_MODIFIABLE;
536                 at[0].an_name = a.a_desc->ad_cname;
537                 at[0].an_desc = a.a_desc;
538                 BER_BVZERO( &at[1].an_name );
539                 op->o_req_dn = e.e_name;
540                 op->o_req_ndn = e.e_nname;
541
542                 ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
543                 rc = backend_operational( op, &rs );
544                 if ( rc == LDAP_SUCCESS && a.a_vals ) {
545                         int num;
546                         for (i=0; !BER_BVISNULL( &a.a_vals[i] ); i++) ;
547                         num = i;
548                         /* check for differences */
549                         if ( num != si->si_cookieState->cs_num ) {
550                                 changed = 1;
551                         } else {
552                                 for ( i=0; i<num; i++ ) {
553                                         if ( ber_bvcmp( &a.a_vals[i],
554                                                 &si->si_cookieState->cs_vals[i] )) {
555                                                 changed =1;
556                                                 break;
557                                         }
558                                 }
559                         }
560                         if ( changed ) {
561                                 ber_bvarray_free( si->si_cookieState->cs_vals );
562                                 ch_free( si->si_cookieState->cs_sids );
563                                 si->si_cookieState->cs_num = num;
564                                 si->si_cookieState->cs_vals = a.a_vals;
565                                 si->si_cookieState->cs_sids = slap_parse_csn_sids( a.a_vals,
566                                         num, NULL );
567                                 si->si_cookieState->cs_age++;
568                         } else {
569                                 ber_bvarray_free( a.a_vals );
570                         }
571                         changed = 0;
572                 }
573                 /* See if the cookieState has changed due to anything outside
574                  * this particular consumer. That includes other consumers in
575                  * the same context, or local changes detected above.
576                  */
577                 if ( si->si_cookieState->cs_num > 1 && si->si_cookieAge !=
578                         si->si_cookieState->cs_age ) {
579
580                         for (i=0; !BER_BVISNULL( &si->si_syncCookie.ctxcsn[i] ); i++) {
581                                 /* bogus, just dup everything */
582                                 if ( si->si_syncCookie.sids[i] == -1 ) {
583                                         ber_bvarray_free( si->si_syncCookie.ctxcsn );
584                                         ber_bvarray_dup_x( &si->si_syncCookie.ctxcsn,
585                                                 si->si_cookieState->cs_vals, NULL );
586                                         changed = 1;
587                                         break;
588                                 }
589                                 for (j=0; j<si->si_cookieState->cs_num; j++) {
590                                         if ( si->si_syncCookie.sids[i] !=
591                                                 si->si_cookieState->cs_sids[j] )
592                                                 continue;
593                                         if ( bvmatch( &si->si_syncCookie.ctxcsn[i],
594                                                 &si->si_cookieState->cs_vals[j] ))
595                                                 break;
596                                         ber_bvreplace( &si->si_syncCookie.ctxcsn[i],
597                                                 &si->si_cookieState->cs_vals[j] );
598                                         changed = 1;
599                                         break;
600                                 }
601                         }
602                         if ( changed ) {
603                                 ch_free( si->si_syncCookie.octet_str.bv_val );
604                                 slap_compose_sync_cookie( NULL, &si->si_syncCookie.octet_str,
605                                         si->si_syncCookie.ctxcsn, si->si_syncCookie.rid,
606                                         SLAP_SINGLE_SHADOW( si->si_be ) ? -1 : slap_serverID );
607                         }
608                 }
609                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
610         }
611
612         rc = ldap_sync_search( si, op->o_tmpmemctx );
613
614         if( rc != LDAP_SUCCESS ) {
615                 Debug( LDAP_DEBUG_ANY, "do_syncrep1: %s "
616                         "ldap_search_ext: %s (%d)\n",
617                         si->si_ridtxt, ldap_err2string( rc ), rc );
618         }
619
620 done:
621         if ( rc ) {
622                 if ( si->si_ld ) {
623                         ldap_unbind_ext( si->si_ld, NULL, NULL );
624                         si->si_ld = NULL;
625                 }
626         }
627
628         return rc;
629 }
630
631 static int
632 compare_csns( struct sync_cookie *sc1, struct sync_cookie *sc2, int *which )
633 {
634         int i, j, match = 0;
635         const char *text;
636
637         *which = 0;
638
639         if ( sc1->numcsns < sc2->numcsns ) {
640                 *which = sc1->numcsns;
641                 return -1;
642         }
643
644         for (i=0; !BER_BVISNULL( &sc1->ctxcsn[i] ); i++) {
645                 for (j=0; !BER_BVISNULL( &sc2->ctxcsn[j] ); j++) {
646                         if ( sc1->sids[i] != sc2->sids[j] )
647                                 continue;
648                         value_match( &match, slap_schema.si_ad_entryCSN,
649                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
650                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
651                                 &sc1->ctxcsn[i], &sc2->ctxcsn[i], &text );
652                         if ( match < 0 ) {
653                                 *which = j;
654                                 return match;
655                         }
656                         break;
657                 }
658         }
659         return match;
660 }
661
662 static int
663 do_syncrep2(
664         Operation *op,
665         syncinfo_t *si )
666 {
667         LDAPControl     **rctrls = NULL;
668         LDAPControl     *rctrlp;
669
670         BerElementBuffer berbuf;
671         BerElement      *ber = (BerElement *)&berbuf;
672
673         LDAPMessage     *res = NULL;
674         LDAPMessage     *msg = NULL;
675
676         char            *retoid = NULL;
677         struct berval   *retdata = NULL;
678
679         Entry           *entry = NULL;
680
681         int             syncstate;
682         struct berval   syncUUID = BER_BVNULL;
683         struct sync_cookie      syncCookie = { NULL };
684         struct sync_cookie      syncCookie_req = { NULL };
685         struct berval           cookie = BER_BVNULL;
686
687         int             rc,
688                         err = LDAP_SUCCESS;
689         ber_len_t       len;
690
691         struct berval   *psub;
692         Modifications   *modlist = NULL;
693
694         int                             match, m;
695
696         struct timeval *tout_p = NULL;
697         struct timeval tout = { 0, 0 };
698
699         int             refreshDeletes = 0;
700         int             refreshDone = 1;
701         BerVarray syncUUIDs = NULL;
702         ber_tag_t si_tag;
703
704         if ( slapd_shutdown ) {
705                 rc = -2;
706                 goto done;
707         }
708
709         ber_init2( ber, NULL, LBER_USE_DER );
710         ber_set_option( ber, LBER_OPT_BER_MEMCTX, &op->o_tmpmemctx );
711
712         Debug( LDAP_DEBUG_TRACE, "=>do_syncrep2 %s\n", si->si_ridtxt, 0, 0 );
713
714         psub = &si->si_be->be_nsuffix[0];
715
716         slap_dup_sync_cookie( &syncCookie_req, &si->si_syncCookie );
717
718         if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
719                 tout_p = &tout;
720         } else {
721                 tout_p = NULL;
722         }
723
724         while ( ( rc = ldap_result( si->si_ld, LDAP_RES_ANY, LDAP_MSG_ONE,
725                 tout_p, &res ) ) > 0 )
726         {
727                 if ( slapd_shutdown ) {
728                         rc = -2;
729                         goto done;
730                 }
731                 for( msg = ldap_first_message( si->si_ld, res );
732                         msg != NULL;
733                         msg = ldap_next_message( si->si_ld, msg ) )
734                 {
735                         if ( slapd_shutdown ) {
736                                 rc = -2;
737                                 goto done;
738                         }
739                         switch( ldap_msgtype( msg ) ) {
740                         case LDAP_RES_SEARCH_ENTRY:
741                                 ldap_get_entry_controls( si->si_ld, msg, &rctrls );
742                                 /* we can't work without the control */
743                                 rctrlp = NULL;
744                                 if ( rctrls ) {
745                                         /* NOTE: make sure we use the right one;
746                                          * a better approach would be to run thru
747                                          * the whole list and take care of all */
748                                         rctrlp = ldap_find_control( LDAP_CONTROL_SYNC_STATE, rctrls );
749                                 }
750                                 if ( rctrlp == NULL ) {
751                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
752                                                 "got search entry without "
753                                                 "Sync State control\n", si->si_ridtxt, 0, 0 );
754                                         rc = -1;
755                                         goto done;
756                                 }
757                                 ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
758                                 ber_scanf( ber, "{em" /*"}"*/, &syncstate, &syncUUID );
759                                 /* FIXME: what if syncUUID is NULL or empty?
760                                  * (happens with back-sql...) */
761                                 if ( BER_BVISEMPTY( &syncUUID ) ) {
762                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
763                                                 "got empty syncUUID\n", si->si_ridtxt, 0, 0 );
764                                         ldap_controls_free( rctrls );
765                                         rc = -1;
766                                         goto done;
767                                 }
768                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
769                                         ber_scanf( ber, /*"{"*/ "m}", &cookie );
770                                         if ( !BER_BVISNULL( &cookie ) ) {
771                                                 ch_free( syncCookie.octet_str.bv_val );
772                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
773                                         }
774                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
775                                         {
776                                                 slap_parse_sync_cookie( &syncCookie, NULL );
777                                         }
778                                 }
779                                 rc = 0;
780                                 if ( si->si_syncdata && si->si_logstate == SYNCLOG_LOGGING ) {
781                                         modlist = NULL;
782                                         if ( ( rc = syncrepl_message_to_op( si, op, msg ) ) == LDAP_SUCCESS &&
783                                                 syncCookie.ctxcsn )
784                                         {
785                                                 rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
786                                         }
787                                 } else if ( ( rc = syncrepl_message_to_entry( si, op, msg,
788                                         &modlist, &entry, syncstate ) ) == LDAP_SUCCESS )
789                                 {
790                                         if ( ( rc = syncrepl_entry( si, op, entry, &modlist,
791                                                 syncstate, &syncUUID ) ) == LDAP_SUCCESS &&
792                                                 syncCookie.ctxcsn )
793                                         {
794                                                 rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
795                                         }
796                                 }
797                                 ldap_controls_free( rctrls );
798                                 if ( modlist ) {
799                                         slap_mods_free( modlist, 1 );
800                                 }
801                                 if ( rc )
802                                         goto done;
803                                 break;
804
805                         case LDAP_RES_SEARCH_REFERENCE:
806                                 Debug( LDAP_DEBUG_ANY,
807                                         "do_syncrep2: %s reference received error\n",
808                                         si->si_ridtxt, 0, 0 );
809                                 break;
810
811                         case LDAP_RES_SEARCH_RESULT:
812                                 Debug( LDAP_DEBUG_SYNC,
813                                         "do_syncrep2: %s LDAP_RES_SEARCH_RESULT\n",
814                                         si->si_ridtxt, 0, 0 );
815                                 ldap_parse_result( si->si_ld, msg, &err, NULL, NULL, NULL,
816                                         &rctrls, 0 );
817 #ifdef LDAP_X_SYNC_REFRESH_REQUIRED
818                                 if ( err == LDAP_X_SYNC_REFRESH_REQUIRED ) {
819                                         /* map old result code to registered code */
820                                         err = LDAP_SYNC_REFRESH_REQUIRED;
821                                 }
822 #endif
823                                 if ( err == LDAP_SYNC_REFRESH_REQUIRED ) {
824                                         if ( si->si_logstate == SYNCLOG_LOGGING ) {
825                                                 si->si_logstate = SYNCLOG_FALLBACK;
826                                         }
827                                         rc = err;
828                                         goto done;
829                                 }
830                                 if ( rctrls ) {
831                                         rctrlp = *rctrls;
832                                         ber_init2( ber, &rctrlp->ldctl_value, LBER_USE_DER );
833
834                                         ber_scanf( ber, "{" /*"}"*/);
835                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE ) {
836                                                 ber_scanf( ber, "m", &cookie );
837                                                 if ( !BER_BVISNULL( &cookie ) ) {
838                                                         ch_free( syncCookie.octet_str.bv_val );
839                                                         ber_dupbv( &syncCookie.octet_str, &cookie);
840                                                 }
841                                                 if ( !BER_BVISNULL( &syncCookie.octet_str ) )
842                                                 {
843                                                         slap_parse_sync_cookie( &syncCookie, NULL );
844                                                 }
845                                         }
846                                         if ( ber_peek_tag( ber, &len ) == LDAP_TAG_REFRESHDELETES )
847                                         {
848                                                 ber_scanf( ber, "b", &refreshDeletes );
849                                         }
850                                         ber_scanf( ber, /*"{"*/ "}" );
851                                 }
852                                 if ( !syncCookie.ctxcsn ) {
853                                         match = 1;
854                                 } else if ( !syncCookie_req.ctxcsn ) {
855                                         match = -1;
856                                         m = 0;
857                                 } else {
858                                         match = compare_csns( &syncCookie_req, &syncCookie, &m );
859                                 }
860                                 if ( rctrls ) {
861                                         ldap_controls_free( rctrls );
862                                 }
863                                 if (si->si_type != LDAP_SYNC_REFRESH_AND_PERSIST) {
864                                         /* FIXME : different error behaviors according to
865                                          *      1) err code : LDAP_BUSY ...
866                                          *      2) on err policy : stop service, stop sync, retry
867                                          */
868                                         if ( refreshDeletes == 0 && match < 0 &&
869                                                 err == LDAP_SUCCESS )
870                                         {
871                                                 syncrepl_del_nonpresent( op, si, NULL,
872                                                         &syncCookie.ctxcsn[m] );
873                                         } else {
874                                                 avl_free( si->si_presentlist, avl_ber_bvfree );
875                                                 si->si_presentlist = NULL;
876                                         }
877                                 }
878                                 if ( syncCookie.ctxcsn && match < 0 && err == LDAP_SUCCESS )
879                                 {
880                                         rc = syncrepl_updateCookie( si, op, psub, &syncCookie );
881                                 }
882                                 if ( err == LDAP_SUCCESS
883                                         && si->si_logstate == SYNCLOG_FALLBACK ) {
884                                         si->si_logstate = SYNCLOG_LOGGING;
885                                         rc = LDAP_SYNC_REFRESH_REQUIRED;
886                                 } else {
887                                         rc = -2;
888                                 }
889                                 goto done;
890                                 break;
891
892                         case LDAP_RES_INTERMEDIATE:
893                                 rc = ldap_parse_intermediate( si->si_ld, msg,
894                                         &retoid, &retdata, NULL, 0 );
895                                 if ( !rc && !strcmp( retoid, LDAP_SYNC_INFO ) ) {
896                                         ber_init2( ber, retdata, LBER_USE_DER );
897
898                                         switch ( si_tag = ber_peek_tag( ber, &len ) ) {
899                                         ber_tag_t tag;
900                                         case LDAP_TAG_SYNC_NEW_COOKIE:
901                                                 Debug( LDAP_DEBUG_SYNC,
902                                                         "do_syncrep2: %s %s - %s\n", 
903                                                         si->si_ridtxt,
904                                                         "LDAP_RES_INTERMEDIATE", 
905                                                         "NEW_COOKIE" );
906                                                 ber_scanf( ber, "tm", &tag, &cookie );
907                                                 break;
908                                         case LDAP_TAG_SYNC_REFRESH_DELETE:
909                                         case LDAP_TAG_SYNC_REFRESH_PRESENT:
910                                                 Debug( LDAP_DEBUG_SYNC,
911                                                         "do_syncrep2: %s %s - %s\n", 
912                                                         si->si_ridtxt,
913                                                         "LDAP_RES_INTERMEDIATE", 
914                                                         si_tag == LDAP_TAG_SYNC_REFRESH_PRESENT ?
915                                                         "REFRESH_PRESENT" : "REFRESH_DELETE" );
916                                                 if ( si_tag == LDAP_TAG_SYNC_REFRESH_DELETE ) {
917                                                         si->si_refreshDelete = 1;
918                                                 } else {
919                                                         si->si_refreshPresent = 1;
920                                                 }
921                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
922                                                 if ( ber_peek_tag( ber, &len ) == LDAP_TAG_SYNC_COOKIE )
923                                                 {
924                                                         ber_scanf( ber, "m", &cookie );
925                                                         if ( !BER_BVISNULL( &cookie ) ) {
926                                                                 ch_free( syncCookie.octet_str.bv_val );
927                                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
928                                                         }
929                                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
930                                                         {
931                                                                 slap_parse_sync_cookie( &syncCookie, NULL );
932                                                         }
933                                                 }
934                                                 if ( ber_peek_tag( ber, &len ) ==
935                                                         LDAP_TAG_REFRESHDONE )
936                                                 {
937                                                         ber_scanf( ber, "b", &refreshDone );
938                                                 }
939                                                 ber_scanf( ber, /*"{"*/ "}" );
940                                                 break;
941                                         case LDAP_TAG_SYNC_ID_SET:
942                                                 Debug( LDAP_DEBUG_SYNC,
943                                                         "do_syncrep2: %s %s - %s\n", 
944                                                         si->si_ridtxt,
945                                                         "LDAP_RES_INTERMEDIATE", 
946                                                         "SYNC_ID_SET" );
947                                                 ber_scanf( ber, "t{" /*"}"*/, &tag );
948                                                 if ( ber_peek_tag( ber, &len ) ==
949                                                         LDAP_TAG_SYNC_COOKIE )
950                                                 {
951                                                         ber_scanf( ber, "m", &cookie );
952                                                         if ( !BER_BVISNULL( &cookie ) ) {
953                                                                 ch_free( syncCookie.octet_str.bv_val );
954                                                                 ber_dupbv( &syncCookie.octet_str, &cookie );
955                                                         }
956                                                         if ( !BER_BVISNULL( &syncCookie.octet_str ) )
957                                                         {
958                                                                 slap_parse_sync_cookie( &syncCookie, NULL );
959                                                                 compare_csns( &syncCookie_req, &syncCookie, &m );
960                                                         }
961                                                 }
962                                                 if ( ber_peek_tag( ber, &len ) ==
963                                                         LDAP_TAG_REFRESHDELETES )
964                                                 {
965                                                         ber_scanf( ber, "b", &refreshDeletes );
966                                                 }
967                                                 ber_scanf( ber, "[W]", &syncUUIDs );
968                                                 ber_scanf( ber, /*"{"*/ "}" );
969                                                 if ( refreshDeletes ) {
970                                                         syncrepl_del_nonpresent( op, si, syncUUIDs,
971                                                                 &syncCookie.ctxcsn[m] );
972                                                         ber_bvarray_free_x( syncUUIDs, op->o_tmpmemctx );
973                                                 } else {
974                                                         int i;
975                                                         for ( i = 0; !BER_BVISNULL( &syncUUIDs[i] ); i++ ) {
976                                                                 struct berval *syncuuid_bv;
977                                                                 syncuuid_bv = ber_dupbv( NULL, &syncUUIDs[i] );
978                                                                 slap_sl_free( syncUUIDs[i].bv_val,op->o_tmpmemctx );
979                                                                 if ( avl_insert( &si->si_presentlist,
980                                                                         (caddr_t) syncuuid_bv,
981                                                                         syncuuid_cmp, avl_dup_error ) )
982                                                                 {
983                                                                         ber_bvfree( syncuuid_bv );
984                                                                 }
985                                                         }
986                                                         slap_sl_free( syncUUIDs, op->o_tmpmemctx );
987                                                 }
988                                                 slap_sync_cookie_free( &syncCookie, 0 );
989                                                 break;
990                                         default:
991                                                 Debug( LDAP_DEBUG_ANY,
992                                                         "do_syncrep2: %s unknown syncinfo tag (%ld)\n",
993                                                         si->si_ridtxt, (long) si_tag, 0 );
994                                                 ldap_memfree( retoid );
995                                                 ber_bvfree( retdata );
996                                                 continue;
997                                         }
998
999                                         if ( !syncCookie.ctxcsn ) {
1000                                                 match = 1;
1001                                         } else if ( !syncCookie_req.ctxcsn ) {
1002                                                 match = -1;
1003                                                 m = 0;
1004                                         } else {
1005                                                 match = compare_csns( &syncCookie_req, &syncCookie, &m );
1006                                         }
1007
1008                                         if ( match < 0 ) {
1009                                                 if ( si->si_refreshPresent == 1 ) {
1010                                                         syncrepl_del_nonpresent( op, si, NULL,
1011                                                                 &syncCookie.ctxcsn[m] );
1012                                                 }
1013
1014                                                 if ( syncCookie.ctxcsn )
1015                                                 {
1016                                                         rc = syncrepl_updateCookie( si, op, psub, &syncCookie);
1017                                                 }
1018                                         } 
1019
1020                                         ldap_memfree( retoid );
1021                                         ber_bvfree( retdata );
1022                                         break;
1023
1024                                 } else {
1025                                         Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1026                                                 "unknown intermediate response (%d)\n",
1027                                                 si->si_ridtxt, rc, 0 );
1028                                         ldap_memfree( retoid );
1029                                         ber_bvfree( retdata );
1030                                         break;
1031                                 }
1032                                 break;
1033
1034                         default:
1035                                 Debug( LDAP_DEBUG_ANY, "do_syncrep2: %s "
1036                                         "unknown message\n", si->si_ridtxt, 0, 0 );
1037                                 break;
1038
1039                         }
1040                         if ( !BER_BVISNULL( &syncCookie.octet_str ) ) {
1041                                 slap_sync_cookie_free( &syncCookie_req, 0 );
1042                                 slap_dup_sync_cookie( &syncCookie_req, &syncCookie );
1043                                 slap_sync_cookie_free( &syncCookie, 0 );
1044                         }
1045                 }
1046                 ldap_msgfree( res );
1047                 res = NULL;
1048         }
1049
1050         if ( rc == -1 ) {
1051                 ldap_get_option( si->si_ld, LDAP_OPT_ERROR_NUMBER, &rc );
1052                 err = rc;
1053         }
1054
1055 done:
1056         if ( err != LDAP_SUCCESS ) {
1057                 Debug( LDAP_DEBUG_ANY,
1058                         "do_syncrep2: %s (%d) %s\n",
1059                         si->si_ridtxt, err, ldap_err2string( err ) );
1060         }
1061
1062         slap_sync_cookie_free( &syncCookie, 0 );
1063         slap_sync_cookie_free( &syncCookie_req, 0 );
1064
1065         if ( res ) ldap_msgfree( res );
1066
1067         if ( rc && rc != LDAP_SYNC_REFRESH_REQUIRED && si->si_ld ) {
1068                 if ( si->si_conn_setup ) {
1069                         ber_socket_t s;
1070                         ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1071                         connection_client_stop( s );
1072                         si->si_conn_setup = 0;
1073                 }
1074                 ldap_unbind_ext( si->si_ld, NULL, NULL );
1075                 si->si_ld = NULL;
1076         }
1077
1078         return rc;
1079 }
1080
1081 static void *
1082 do_syncrepl(
1083         void    *ctx,
1084         void    *arg )
1085 {
1086         struct re_s* rtask = arg;
1087         syncinfo_t *si = ( syncinfo_t * ) rtask->arg;
1088         Connection conn = {0};
1089         OperationBuffer opbuf;
1090         Operation *op;
1091         int rc = LDAP_SUCCESS;
1092         int dostop = 0;
1093         ber_socket_t s;
1094         int i, defer = 1, fail = 0;
1095         Backend *be;
1096
1097         Debug( LDAP_DEBUG_TRACE, "=>do_syncrepl %s\n", si->si_ridtxt, 0, 0 );
1098
1099         if ( si == NULL )
1100                 return NULL;
1101
1102         ldap_pvt_thread_mutex_lock( &si->si_mutex );
1103
1104         switch( abs( si->si_type ) ) {
1105         case LDAP_SYNC_REFRESH_ONLY:
1106         case LDAP_SYNC_REFRESH_AND_PERSIST:
1107                 break;
1108         default:
1109                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1110                 return NULL;
1111         }
1112
1113         if ( slapd_shutdown ) {
1114                 if ( si->si_ld ) {
1115                         if ( si->si_conn_setup ) {
1116                                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1117                                 connection_client_stop( s );
1118                                 si->si_conn_setup = 0;
1119                         }
1120                         ldap_unbind_ext( si->si_ld, NULL, NULL );
1121                         si->si_ld = NULL;
1122                 }
1123                 ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1124                 return NULL;
1125         }
1126
1127         connection_fake_init( &conn, &opbuf, ctx );
1128         op = &opbuf.ob_op;
1129
1130         /* use global malloc for now */
1131         op->o_tmpmemctx = NULL;
1132         op->o_tmpmfuncs = &ch_mfuncs;
1133
1134         op->o_managedsait = SLAP_CONTROL_NONCRITICAL;
1135         op->o_bd = be = si->si_be;
1136         op->o_dn = op->o_bd->be_rootdn;
1137         op->o_ndn = op->o_bd->be_rootndn;
1138         if ( !si->si_schemachecking )
1139                 op->o_no_schema_check = 1;
1140
1141         /* If we're glued, send writes through the glue parent */
1142         if ( !si->si_wbe ) {
1143                 if ( SLAP_GLUE_SUBORDINATE( be )) {
1144                         si->si_wbe = select_backend( &be->be_nsuffix[0], 1 );
1145                 } else {
1146                         si->si_wbe = be;
1147                 }
1148         }
1149
1150         /* Establish session, do search */
1151         if ( !si->si_ld ) {
1152                 si->si_refreshDelete = 0;
1153                 si->si_refreshPresent = 0;
1154                 rc = do_syncrep1( op, si );
1155         }
1156
1157 reload:
1158         /* Process results */
1159         if ( rc == LDAP_SUCCESS ) {
1160                 ldap_get_option( si->si_ld, LDAP_OPT_DESC, &s );
1161
1162                 rc = do_syncrep2( op, si );
1163                 if ( rc == LDAP_SYNC_REFRESH_REQUIRED ) {
1164                         rc = ldap_sync_search( si, op->o_tmpmemctx );
1165                         goto reload;
1166                 }
1167
1168                 /* We got deleted while running on cn=config */
1169                 if ( !si->si_ctype ) {
1170                         if ( si->si_conn_setup )
1171                                 dostop = 1;
1172                         rc = -1;
1173                 }
1174
1175                 if ( abs(si->si_type) == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1176                         /* If we succeeded, enable the connection for further listening.
1177                          * If we failed, tear down the connection and reschedule.
1178                          */
1179                         if ( rc == LDAP_SUCCESS ) {
1180                                 if ( si->si_conn_setup ) {
1181                                         connection_client_enable( s );
1182                                 } else {
1183                                         rc = connection_client_setup( s, do_syncrepl, arg );
1184                                         if ( rc == 0 )
1185                                                 si->si_conn_setup = 1;
1186                                 } 
1187                         } else if ( si->si_conn_setup ) {
1188                                 dostop = 1;
1189                         }
1190                 } else {
1191                         if ( rc == -2 ) rc = 0;
1192                 }
1193         }
1194
1195         /* At this point, we have 4 cases:
1196          * 1) for any hard failure, give up and remove this task
1197          * 2) for ServerDown, reschedule this task to run
1198          * 3) for Refresh and Success, reschedule to run
1199          * 4) for Persist and Success, reschedule to defer
1200          */
1201         ldap_pvt_thread_mutex_lock( &slapd_rq.rq_mutex );
1202
1203         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, rtask ) ) {
1204                 ldap_pvt_runqueue_stoptask( &slapd_rq, rtask );
1205         }
1206
1207         if ( dostop ) {
1208                 connection_client_stop( s );
1209         }
1210
1211         if ( rc == LDAP_SUCCESS ) {
1212                 if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
1213                         defer = 0;
1214                 }
1215                 rtask->interval.tv_sec = si->si_interval;
1216                 ldap_pvt_runqueue_resched( &slapd_rq, rtask, defer );
1217                 if ( si->si_retrynum ) {
1218                         for ( i = 0; si->si_retrynum_init[i] != RETRYNUM_TAIL; i++ ) {
1219                                 si->si_retrynum[i] = si->si_retrynum_init[i];
1220                         }
1221                         si->si_retrynum[i] = RETRYNUM_TAIL;
1222                 }
1223         } else {
1224                 for ( i = 0; si->si_retrynum && si->si_retrynum[i] <= 0; i++ ) {
1225                         if ( si->si_retrynum[i] == RETRYNUM_FOREVER || si->si_retrynum[i] == RETRYNUM_TAIL )
1226                                 break;
1227                 }
1228
1229                 if ( !si->si_ctype
1230                         || !si->si_retrynum || si->si_retrynum[i] == RETRYNUM_TAIL ) {
1231                         ldap_pvt_runqueue_remove( &slapd_rq, rtask );
1232                         fail = RETRYNUM_TAIL;
1233                 } else if ( RETRYNUM_VALID( si->si_retrynum[i] ) ) {
1234                         if ( si->si_retrynum[i] > 0 )
1235                                 si->si_retrynum[i]--;
1236                         fail = si->si_retrynum[i];
1237                         rtask->interval.tv_sec = si->si_retryinterval[i];
1238                         ldap_pvt_runqueue_resched( &slapd_rq, rtask, 0 );
1239                         slap_wake_listener();
1240                 }
1241         }
1242
1243         ldap_pvt_thread_mutex_unlock( &slapd_rq.rq_mutex );
1244         ldap_pvt_thread_mutex_unlock( &si->si_mutex );
1245
1246         if ( rc ) {
1247                 if ( fail == RETRYNUM_TAIL ) {
1248                         Debug( LDAP_DEBUG_ANY,
1249                                 "do_syncrepl: rid %03d quitting\n",
1250                                 si->si_rid, 0, 0 );
1251                 } else if ( fail > 0 ) {
1252                         Debug( LDAP_DEBUG_ANY,
1253                                 "do_syncrepl: rid %03d retrying (%d retries left)\n",
1254                                 si->si_rid, fail, 0 );
1255                 } else {
1256                         Debug( LDAP_DEBUG_ANY,
1257                                 "do_syncrepl: rid %03d retrying\n",
1258                                 si->si_rid, 0, 0 );
1259                 }
1260         }
1261
1262         /* Do final delete cleanup */
1263         if ( !si->si_ctype ) {
1264                 cookie_state *cs = NULL;
1265                 syncinfo_t **sip;
1266
1267                 cs = be->be_syncinfo->si_cookieState;
1268                 for ( sip = &be->be_syncinfo; *sip != si; sip = &(*sip)->si_next );
1269                 *sip = si->si_next;
1270                 syncinfo_free( si, 0 );
1271                 if ( !be->be_syncinfo ) {
1272                         SLAP_DBFLAGS( be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
1273                         if ( cs ) {
1274                                 ch_free( cs->cs_sids );
1275                                 ber_bvarray_free( cs->cs_vals );
1276                                 ldap_pvt_thread_mutex_destroy( &cs->cs_mutex );
1277                                 ch_free( cs );
1278                         }
1279                 }
1280         }
1281         return NULL;
1282 }
1283
1284 static slap_verbmasks modops[] = {
1285         { BER_BVC("add"), LDAP_REQ_ADD },
1286         { BER_BVC("delete"), LDAP_REQ_DELETE },
1287         { BER_BVC("modify"), LDAP_REQ_MODIFY },
1288         { BER_BVC("modrdn"), LDAP_REQ_MODRDN},
1289         { BER_BVNULL, 0 }
1290 };
1291
1292 static Modifications *
1293 syncrepl_accesslog_mods(
1294         syncinfo_t *si,
1295         struct berval *vals
1296 )
1297 {
1298         char *colon;
1299         const char *text;
1300         AttributeDescription *ad;
1301         struct berval bv, bv2;
1302         short op;
1303         Modifications *mod = NULL, *modlist = NULL, **modtail;
1304         int i;
1305
1306         modtail = &modlist;
1307
1308         for (i=0; !BER_BVISNULL( &vals[i] ); i++) {
1309                 ad = NULL;
1310                 bv = vals[i];
1311
1312                 colon = ber_bvchr( &bv, ':' );
1313                 if ( !colon ) {
1314                         /* Invalid */
1315                         continue;
1316                 }
1317
1318                 bv.bv_len = colon - bv.bv_val;
1319                 if ( slap_bv2ad( &bv, &ad, &text ) ) {
1320                         /* Invalid */
1321                         continue;
1322                 }
1323
1324                 /* Ignore dynamically generated attrs */
1325                 if ( ad->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1326                         continue;
1327                 }
1328
1329                 /* Ignore excluded attrs */
1330                 if ( ldap_charray_inlist( si->si_exattrs,
1331                         ad->ad_type->sat_cname.bv_val ) )
1332                 {
1333                         continue;
1334                 }
1335
1336                 switch(colon[1]) {
1337                 case '+':       op = LDAP_MOD_ADD; break;
1338                 case '-':       op = LDAP_MOD_DELETE; break;
1339                 case '=':       op = LDAP_MOD_REPLACE; break;
1340                 case '#':       op = LDAP_MOD_INCREMENT; break;
1341                 default:        continue;
1342                 }
1343
1344                 if ( !mod || ad != mod->sml_desc || op != mod->sml_op ) {
1345                         mod = (Modifications *) ch_malloc( sizeof( Modifications ) );
1346                         mod->sml_flags = 0;
1347                         mod->sml_op = op;
1348                         mod->sml_next = NULL;
1349                         mod->sml_desc = ad;
1350                         mod->sml_type = ad->ad_cname;
1351                         mod->sml_values = NULL;
1352                         mod->sml_nvalues = NULL;
1353
1354                         *modtail = mod;
1355                         modtail = &mod->sml_next;
1356                 }
1357                 if ( colon[2] == ' ' ) {
1358                         bv.bv_val = colon + 3;
1359                         bv.bv_len = vals[i].bv_len - ( bv.bv_val - vals[i].bv_val );
1360                         ber_dupbv( &bv2, &bv );
1361                         ber_bvarray_add( &mod->sml_values, &bv2 );
1362                 }
1363         }
1364         return modlist;
1365 }
1366
1367 static Modifications *
1368 syncrepl_changelog_mods(
1369         syncinfo_t *si,
1370         struct berval *vals
1371 )
1372 {
1373         return NULL;    /* FIXME */
1374 }
1375
1376 static int
1377 syncrepl_message_to_op(
1378         syncinfo_t      *si,
1379         Operation       *op,
1380         LDAPMessage     *msg
1381 )
1382 {
1383         BerElement      *ber = NULL;
1384         Modifications   *modlist = NULL;
1385         logschema *ls;
1386         SlapReply rs = { REP_RESULT };
1387         slap_callback cb = { NULL, null_callback, NULL, NULL };
1388
1389         const char      *text;
1390         char txtbuf[SLAP_TEXT_BUFLEN];
1391         size_t textlen = sizeof txtbuf;
1392
1393         struct berval   bdn, dn = BER_BVNULL, ndn;
1394         struct berval   bv, *bvals = NULL;
1395         struct berval   rdn = BER_BVNULL, sup = BER_BVNULL,
1396                 prdn = BER_BVNULL, nrdn = BER_BVNULL,
1397                 psup = BER_BVNULL, nsup = BER_BVNULL;
1398         int             rc, deleteOldRdn = 0, freeReqDn = 0;
1399
1400         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1401                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1402                         "Message type should be entry (%d)",
1403                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
1404                 return -1;
1405         }
1406
1407         if ( si->si_syncdata == SYNCDATA_ACCESSLOG )
1408                 ls = &accesslog_sc;
1409         else
1410                 ls = &changelog_sc;
1411
1412         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1413
1414         if ( rc != LDAP_SUCCESS ) {
1415                 Debug( LDAP_DEBUG_ANY,
1416                         "syncrepl_message_to_op: %s dn get failed (%d)",
1417                         si->si_ridtxt, rc, 0 );
1418                 return rc;
1419         }
1420
1421         op->o_tag = LBER_DEFAULT;
1422         op->o_bd = si->si_wbe;
1423
1424         while (( rc = ldap_get_attribute_ber( si->si_ld, msg, ber, &bv, &bvals ) )
1425                 == LDAP_SUCCESS ) {
1426                 if ( bv.bv_val == NULL )
1427                         break;
1428
1429                 if ( !ber_bvstrcasecmp( &bv, &ls->ls_dn ) ) {
1430                         bdn = bvals[0];
1431                         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1432                         ber_dupbv( &op->o_req_dn, &dn );
1433                         ber_dupbv( &op->o_req_ndn, &ndn );
1434                         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1435                         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1436                         freeReqDn = 1;
1437                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_req ) ) {
1438                         int i = verb_to_mask( bvals[0].bv_val, modops );
1439                         if ( i < 0 ) {
1440                                 Debug( LDAP_DEBUG_ANY,
1441                                         "syncrepl_message_to_op: %s unknown op %s",
1442                                         si->si_ridtxt, bvals[0].bv_val, 0 );
1443                                 ch_free( bvals );
1444                                 rc = -1;
1445                                 goto done;
1446                         }
1447                         op->o_tag = modops[i].mask;
1448                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_mod ) ) {
1449                         /* Parse attribute into modlist */
1450                         if ( si->si_syncdata == SYNCDATA_ACCESSLOG ) {
1451                                 modlist = syncrepl_accesslog_mods( si, bvals );
1452                         } else {
1453                                 modlist = syncrepl_changelog_mods( si, bvals );
1454                         }
1455                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newRdn ) ) {
1456                         rdn = bvals[0];
1457                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_delRdn ) ) {
1458                         if ( !ber_bvstrcasecmp( &slap_true_bv, bvals ) ) {
1459                                 deleteOldRdn = 1;
1460                         }
1461                 } else if ( !ber_bvstrcasecmp( &bv, &ls->ls_newSup ) ) {
1462                         sup = bvals[0];
1463                 } else if ( !ber_bvstrcasecmp( &bv,
1464                         &slap_schema.si_ad_entryCSN->ad_cname ) )
1465                 {
1466                         slap_queue_csn( op, bvals );
1467                 }
1468                 ch_free( bvals );
1469         }
1470
1471         /* If we didn't get a mod type or a target DN, bail out */
1472         if ( op->o_tag == LBER_DEFAULT || BER_BVISNULL( &dn ) ) {
1473                 rc = -1;
1474                 goto done;
1475         }
1476
1477         op->o_callback = &cb;
1478         slap_op_time( &op->o_time, &op->o_tincr );
1479
1480         switch( op->o_tag ) {
1481         case LDAP_REQ_ADD:
1482         case LDAP_REQ_MODIFY:
1483                 /* If we didn't get required data, bail */
1484                 if ( !modlist ) goto done;
1485
1486                 rc = slap_mods_check( op, modlist, &text, txtbuf, textlen, NULL );
1487
1488                 if ( rc != LDAP_SUCCESS ) {
1489                         Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1490                                 "mods check (%s)\n",
1491                                 si->si_ridtxt, text, 0 );
1492                         goto done;
1493                 }
1494
1495                 if ( op->o_tag == LDAP_REQ_ADD ) {
1496                         Entry *e = entry_alloc();
1497                         op->ora_e = e;
1498                         op->ora_e->e_name = op->o_req_dn;
1499                         op->ora_e->e_nname = op->o_req_ndn;
1500                         freeReqDn = 0;
1501                         rc = slap_mods2entry( modlist, &op->ora_e, 1, 0, &text, txtbuf, textlen);
1502                         if( rc != LDAP_SUCCESS ) {
1503                                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_op: %s "
1504                                 "mods2entry (%s)\n",
1505                                         si->si_ridtxt, text, 0 );
1506                         } else {
1507                                 rc = op->o_bd->be_add( op, &rs );
1508                                 Debug( LDAP_DEBUG_SYNC,
1509                                         "syncrepl_message_to_op: %s be_add %s (%d)\n", 
1510                                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1511                         }
1512                         if ( e == op->ora_e )
1513                                 be_entry_release_w( op, op->ora_e );
1514                 } else {
1515                         op->orm_modlist = modlist;
1516                         op->o_bd = si->si_wbe;
1517                         rc = op->o_bd->be_modify( op, &rs );
1518                         modlist = op->orm_modlist;
1519                         Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1520                                 "syncrepl_message_to_op: %s be_modify %s (%d)\n", 
1521                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
1522                         op->o_bd = si->si_be;
1523                 }
1524                 break;
1525         case LDAP_REQ_MODRDN:
1526                 if ( BER_BVISNULL( &rdn ) ) goto done;
1527
1528                 if ( rdnPretty( NULL, &rdn, &prdn, NULL ) ) {
1529                         goto done;
1530                 }
1531                 if ( rdnNormalize( 0, NULL, NULL, &rdn, &nrdn, NULL ) ) {
1532                         goto done;
1533                 }
1534                 if ( !BER_BVISNULL( &sup ) ) {
1535                         if ( dnPrettyNormal( NULL, &sup, &psup, &nsup, NULL ) ) {
1536                                 goto done;
1537                         }
1538                         op->orr_newSup = &psup;
1539                         op->orr_nnewSup = &nsup;
1540                 } else {
1541                         op->orr_newSup = NULL;
1542                         op->orr_nnewSup = NULL;
1543                 }
1544                 op->orr_newrdn = prdn;
1545                 op->orr_nnewrdn = nrdn;
1546                 op->orr_deleteoldrdn = deleteOldRdn;
1547                 op->orr_modlist = NULL;
1548                 if ( slap_modrdn2mods( op, &rs ) ) {
1549                         goto done;
1550                 }
1551
1552                 /* Append modlist for operational attrs */
1553                 {
1554                         Modifications *m;
1555
1556                         for ( m = op->orr_modlist; m->sml_next; m = m->sml_next )
1557                                 ;
1558                         m->sml_next = modlist;
1559                         modlist = NULL;
1560                 }
1561                 rc = op->o_bd->be_modrdn( op, &rs );
1562                 slap_mods_free( op->orr_modlist, 1 );
1563                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1564                         "syncrepl_message_to_op: %s be_modrdn %s (%d)\n", 
1565                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1566                 break;
1567         case LDAP_REQ_DELETE:
1568                 rc = op->o_bd->be_delete( op, &rs );
1569                 Debug( rc ? LDAP_DEBUG_ANY : LDAP_DEBUG_SYNC,
1570                         "syncrepl_message_to_op: %s be_delete %s (%d)\n", 
1571                         si->si_ridtxt, op->o_req_dn.bv_val, rc );
1572                 break;
1573         }
1574 done:
1575         slap_graduate_commit_csn( op );
1576         op->o_bd = si->si_be;
1577         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
1578         BER_BVZERO( &op->o_csn );
1579         if ( modlist ) {
1580                 slap_mods_free( modlist, op->o_tag != LDAP_REQ_ADD );
1581         }
1582         if ( !BER_BVISNULL( &rdn ) ) {
1583                 if ( !BER_BVISNULL( &nsup ) ) {
1584                         ch_free( nsup.bv_val );
1585                 }
1586                 if ( !BER_BVISNULL( &psup ) ) {
1587                         ch_free( psup.bv_val );
1588                 }
1589                 if ( !BER_BVISNULL( &nrdn ) ) {
1590                         ch_free( nrdn.bv_val );
1591                 }
1592                 if ( !BER_BVISNULL( &prdn ) ) {
1593                         ch_free( prdn.bv_val );
1594                 }
1595         }
1596         if ( freeReqDn ) {
1597                 ch_free( op->o_req_ndn.bv_val );
1598                 ch_free( op->o_req_dn.bv_val );
1599         }
1600         ber_free( ber, 0 );
1601         return rc;
1602 }
1603
1604 static int
1605 syncrepl_message_to_entry(
1606         syncinfo_t      *si,
1607         Operation       *op,
1608         LDAPMessage     *msg,
1609         Modifications   **modlist,
1610         Entry                   **entry,
1611         int             syncstate
1612 )
1613 {
1614         Entry           *e = NULL;
1615         BerElement      *ber = NULL;
1616         Modifications   tmp;
1617         Modifications   *mod;
1618         Modifications   **modtail = modlist;
1619
1620         const char      *text;
1621         char txtbuf[SLAP_TEXT_BUFLEN];
1622         size_t textlen = sizeof txtbuf;
1623
1624         struct berval   bdn = BER_BVNULL, dn, ndn;
1625         int             rc, is_ctx;
1626
1627         *modlist = NULL;
1628
1629         if ( ldap_msgtype( msg ) != LDAP_RES_SEARCH_ENTRY ) {
1630                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s "
1631                         "Message type should be entry (%d)",
1632                         si->si_ridtxt, ldap_msgtype( msg ), 0 );
1633                 return -1;
1634         }
1635
1636         op->o_tag = LDAP_REQ_ADD;
1637
1638         rc = ldap_get_dn_ber( si->si_ld, msg, &ber, &bdn );
1639         if ( rc != LDAP_SUCCESS ) {
1640                 Debug( LDAP_DEBUG_ANY,
1641                         "syncrepl_message_to_entry: %s dn get failed (%d)",
1642                         si->si_ridtxt, rc, 0 );
1643                 return rc;
1644         }
1645
1646         if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
1647                 /* NOTE: this could be done even before decoding the DN,
1648                  * although encoding errors wouldn't be detected */
1649                 rc = LDAP_SUCCESS;
1650                 goto done;
1651         }
1652
1653         if ( entry == NULL ) {
1654                 return -1;
1655         }
1656
1657         dnPrettyNormal( NULL, &bdn, &dn, &ndn, op->o_tmpmemctx );
1658         ber_dupbv( &op->o_req_dn, &dn );
1659         ber_dupbv( &op->o_req_ndn, &ndn );
1660         slap_sl_free( ndn.bv_val, op->o_tmpmemctx );
1661         slap_sl_free( dn.bv_val, op->o_tmpmemctx );
1662
1663         is_ctx = dn_match( &op->o_req_ndn, &op->o_bd->be_nsuffix[0] );
1664
1665         e = entry_alloc();
1666         e->e_name = op->o_req_dn;
1667         e->e_nname = op->o_req_ndn;
1668
1669         while ( ber_remaining( ber ) ) {
1670                 if ( (ber_scanf( ber, "{mW}", &tmp.sml_type, &tmp.sml_values ) ==
1671                         LBER_ERROR ) || BER_BVISNULL( &tmp.sml_type ) )
1672                 {
1673                         break;
1674                 }
1675
1676                 /* Drop all updates to the contextCSN of the context entry
1677                  * (ITS#4622, etc.)
1678                  */
1679                 if ( is_ctx && !strcasecmp( tmp.sml_type.bv_val,
1680                         slap_schema.si_ad_contextCSN->ad_cname.bv_val )) {
1681                         ber_bvarray_free( tmp.sml_values );
1682                         continue;
1683                 }
1684
1685                 mod  = (Modifications *) ch_malloc( sizeof( Modifications ) );
1686
1687                 mod->sml_op = LDAP_MOD_REPLACE;
1688                 mod->sml_flags = 0;
1689                 mod->sml_next = NULL;
1690                 mod->sml_desc = NULL;
1691                 mod->sml_type = tmp.sml_type;
1692                 mod->sml_values = tmp.sml_values;
1693                 mod->sml_nvalues = NULL;
1694
1695                 *modtail = mod;
1696                 modtail = &mod->sml_next;
1697         }
1698
1699         if ( *modlist == NULL ) {
1700                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s no attributes\n",
1701                         si->si_ridtxt, 0, 0 );
1702                 rc = -1;
1703                 goto done;
1704         }
1705
1706         rc = slap_mods_check( op, *modlist, &text, txtbuf, textlen, NULL );
1707
1708         if ( rc != LDAP_SUCCESS ) {
1709                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods check (%s)\n",
1710                         si->si_ridtxt, text, 0 );
1711                 goto done;
1712         }
1713
1714         /* Strip out dynamically generated attrs */
1715         for ( modtail = modlist; *modtail ; ) {
1716                 mod = *modtail;
1717                 if ( mod->sml_desc->ad_type->sat_flags & SLAP_AT_DYNAMIC ) {
1718                         *modtail = mod->sml_next;
1719                         slap_mod_free( &mod->sml_mod, 0 );
1720                         ch_free( mod );
1721                 } else {
1722                         modtail = &mod->sml_next;
1723                 }
1724         }
1725
1726         /* Strip out attrs in exattrs list */
1727         for ( modtail = modlist; *modtail ; ) {
1728                 mod = *modtail;
1729                 if ( ldap_charray_inlist( si->si_exattrs,
1730                         mod->sml_desc->ad_type->sat_cname.bv_val ) )
1731                 {
1732                         *modtail = mod->sml_next;
1733                         slap_mod_free( &mod->sml_mod, 0 );
1734                         ch_free( mod );
1735                 } else {
1736                         modtail = &mod->sml_next;
1737                 }
1738         }
1739
1740         rc = slap_mods2entry( *modlist, &e, 1, 1, &text, txtbuf, textlen);
1741         if( rc != LDAP_SUCCESS ) {
1742                 Debug( LDAP_DEBUG_ANY, "syncrepl_message_to_entry: %s mods2entry (%s)\n",
1743                         si->si_ridtxt, text, 0 );
1744         }
1745
1746 done:
1747         ber_free( ber, 0 );
1748         if ( rc != LDAP_SUCCESS ) {
1749                 if ( e ) {
1750                         entry_free( e );
1751                         e = NULL;
1752                 }
1753         }
1754         if ( entry )
1755                 *entry = e;
1756
1757         return rc;
1758 }
1759
1760 static struct berval generic_filterstr = BER_BVC("(objectclass=*)");
1761
1762 /* During a refresh, we may get an LDAP_SYNC_ADD for an already existing
1763  * entry if a previous refresh was interrupted before sending us a new
1764  * context state. We try to compare the new entry to the existing entry
1765  * and ignore the new entry if they are the same.
1766  *
1767  * Also, we may get an update where the entryDN has changed, due to
1768  * a ModDn on the provider. We detect this as well, so we can issue
1769  * the corresponding operation locally.
1770  *
1771  * In the case of a modify, we get a list of all the attributes
1772  * in the original entry. Rather than deleting the entry and re-adding it,
1773  * we issue a Modify request that deletes all the attributes and adds all
1774  * the new ones. This avoids the issue of trying to delete/add a non-leaf
1775  * entry.
1776  *
1777  * We otherwise distinguish ModDN from Modify; in the case of
1778  * a ModDN we just use the CSN, modifyTimestamp and modifiersName
1779  * operational attributes from the entry, and do a regular ModDN.
1780  */
1781 typedef struct dninfo {
1782         Entry *new_entry;
1783         struct berval dn;
1784         struct berval ndn;
1785         int renamed;    /* Was an existing entry renamed? */
1786         int delOldRDN;  /* Was old RDN deleted? */
1787         Modifications **modlist;        /* the modlist we received */
1788         Modifications *mods;    /* the modlist we compared */
1789 } dninfo;
1790
1791 static int
1792 syncrepl_entry(
1793         syncinfo_t* si,
1794         Operation *op,
1795         Entry* entry,
1796         Modifications** modlist,
1797         int syncstate,
1798         struct berval* syncUUID )
1799 {
1800         Backend *be = op->o_bd;
1801         slap_callback   cb = { NULL, NULL, NULL, NULL };
1802         struct berval   *syncuuid_bv = NULL;
1803         struct berval   syncUUID_strrep = BER_BVNULL;
1804
1805         SlapReply       rs_search = {REP_RESULT};
1806         SlapReply       rs_delete = {REP_RESULT};
1807         SlapReply       rs_add = {REP_RESULT};
1808         SlapReply       rs_modify = {REP_RESULT};
1809         Filter f = {0};
1810 #ifdef LDAP_COMP_MATCH
1811         AttributeAssertion ava = { NULL, BER_BVNULL, NULL };
1812 #else
1813         AttributeAssertion ava = { NULL, BER_BVNULL };
1814 #endif
1815         int rc = LDAP_SUCCESS;
1816
1817         struct berval pdn = BER_BVNULL;
1818         dninfo dni = {0};
1819         int     retry = 1;
1820
1821         switch( syncstate ) {
1822         case LDAP_SYNC_PRESENT:
1823                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s %s\n",
1824                                         si->si_ridtxt,
1825                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_PRESENT)", 0 );
1826                 break;
1827         case LDAP_SYNC_ADD:
1828                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s %s\n",
1829                                         si->si_ridtxt,
1830                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_ADD)", 0 );
1831                 break;
1832         case LDAP_SYNC_DELETE:
1833                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s %s\n",
1834                                         si->si_ridtxt,
1835                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_DELETE)", 0 );
1836                 break;
1837         case LDAP_SYNC_MODIFY:
1838                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s %s\n",
1839                                         si->si_ridtxt,
1840                                         "LDAP_RES_SEARCH_ENTRY(LDAP_SYNC_MODIFY)", 0 );
1841                 break;
1842         default:
1843                 Debug( LDAP_DEBUG_ANY, "syncrepl_entry: %s %s\n",
1844                                         si->si_ridtxt,
1845                                         "LDAP_RES_SEARCH_ENTRY(UNKNOWN syncstate)", 0 );
1846         }
1847
1848         if (( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_ADD ) ) {
1849                 if ( !si->si_refreshPresent ) {
1850                         syncuuid_bv = ber_dupbv( NULL, syncUUID );
1851                         if ( avl_insert( &si->si_presentlist, (caddr_t) syncuuid_bv,
1852                                 syncuuid_cmp, avl_dup_error ) )
1853                         {
1854                                 ber_bvfree( syncuuid_bv );
1855                                 syncuuid_bv = NULL;
1856                         }
1857                 }
1858         }
1859
1860         if ( syncstate == LDAP_SYNC_PRESENT ) {
1861                 return 0;
1862         } else if ( syncstate != LDAP_SYNC_DELETE ) {
1863                 if ( entry == NULL ) {
1864                         return 0;
1865                 }
1866         }
1867
1868         (void)slap_uuidstr_from_normalized( &syncUUID_strrep, syncUUID, op->o_tmpmemctx );
1869         if ( syncstate != LDAP_SYNC_DELETE ) {
1870                 Attribute       *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryUUID );
1871
1872                 if ( a == NULL ) {
1873                         /* add if missing */
1874                         attr_merge_one( entry, slap_schema.si_ad_entryUUID,
1875                                 &syncUUID_strrep, syncUUID );
1876
1877                 } else if ( !bvmatch( &a->a_nvals[0], syncUUID ) ) {
1878                         /* replace only if necessary */
1879                         if ( a->a_nvals != a->a_vals ) {
1880                                 ber_memfree( a->a_nvals[0].bv_val );
1881                                 ber_dupbv( &a->a_nvals[0], syncUUID );
1882                         }
1883                         ber_memfree( a->a_vals[0].bv_val );
1884                         ber_dupbv( &a->a_vals[0], &syncUUID_strrep );
1885                 }
1886         }
1887
1888         f.f_choice = LDAP_FILTER_EQUALITY;
1889         f.f_ava = &ava;
1890         ava.aa_desc = slap_schema.si_ad_entryUUID;
1891         ava.aa_value = *syncUUID;
1892
1893         if ( syncuuid_bv ) {
1894                 Debug( LDAP_DEBUG_SYNC, "syncrepl_entry: %s inserted UUID %s\n",
1895                         si->si_ridtxt, syncUUID_strrep.bv_val, 0 );
1896         }
1897         op->ors_filter = &f;
1898
1899         op->ors_filterstr.bv_len = STRLENOF( "(entryUUID=)" ) + syncUUID_strrep.bv_len;
1900         op->ors_filterstr.bv_val = (char *) slap_sl_malloc(
1901                 op->ors_filterstr.bv_len + 1, op->o_tmpmemctx ); 
1902         AC_MEMCPY( op->ors_filterstr.bv_val, "(entryUUID=", STRLENOF( "(entryUUID=" ) );
1903         AC_MEMCPY( &op->ors_filterstr.bv_val[STRLENOF( "(entryUUID=" )],
1904                 syncUUID_strrep.bv_val, syncUUID_strrep.bv_len );
1905         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len - 1] = ')';
1906         op->ors_filterstr.bv_val[op->ors_filterstr.bv_len] = '\0';
1907
1908         op->o_tag = LDAP_REQ_SEARCH;
1909         op->ors_scope = LDAP_SCOPE_SUBTREE;
1910         op->ors_deref = LDAP_DEREF_NEVER;
1911
1912         /* get the entry for this UUID */
1913         op->o_req_dn = si->si_base;
1914         op->o_req_ndn = si->si_base;
1915
1916         op->o_time = slap_get_time();
1917         op->ors_tlimit = SLAP_NO_LIMIT;
1918         op->ors_slimit = 1;
1919
1920         op->ors_attrs = slap_anlist_all_attributes;
1921         op->ors_attrsonly = 0;
1922
1923         /* set callback function */
1924         op->o_callback = &cb;
1925         cb.sc_response = dn_callback;
1926         cb.sc_private = &dni;
1927         dni.new_entry = entry;
1928         dni.modlist = modlist;
1929
1930         if ( limits_check( op, &rs_search ) == 0 ) {
1931                 rc = be->be_search( op, &rs_search );
1932                 Debug( LDAP_DEBUG_SYNC,
1933                                 "syncrepl_entry: %s be_search (%d)\n", 
1934                                 si->si_ridtxt, rc, 0 );
1935         }
1936
1937         if ( !BER_BVISNULL( &op->ors_filterstr ) ) {
1938                 slap_sl_free( op->ors_filterstr.bv_val, op->o_tmpmemctx );
1939         }
1940
1941         cb.sc_response = null_callback;
1942         cb.sc_private = si;
1943
1944         if ( entry && !BER_BVISNULL( &entry->e_name ) ) {
1945                 Debug( LDAP_DEBUG_SYNC,
1946                                 "syncrepl_entry: %s %s\n",
1947                                 si->si_ridtxt, entry->e_name.bv_val, 0 );
1948         } else {
1949                 Debug( LDAP_DEBUG_SYNC,
1950                                 "syncrepl_entry: %s %s\n",
1951                                 si->si_ridtxt, dni.dn.bv_val ? dni.dn.bv_val : "(null)", 0 );
1952         }
1953
1954         slap_op_time( &op->o_time, &op->o_tincr );
1955         switch ( syncstate ) {
1956         case LDAP_SYNC_ADD:
1957         case LDAP_SYNC_MODIFY:
1958                 {
1959                         Attribute *a = attr_find( entry->e_attrs, slap_schema.si_ad_entryCSN );
1960                         if ( a ) {
1961                                 /* FIXME: op->o_csn is assumed to be
1962                                  * on the thread's slab; this needs
1963                                  * to be cleared ASAP.
1964                                  * What happens if already present?
1965                                  */
1966                                 assert( BER_BVISNULL( &op->o_csn ) );
1967                                 op->o_csn = a->a_vals[0];
1968                         }
1969                 }
1970 retry_add:;
1971                 if ( BER_BVISNULL( &dni.dn ) ) {
1972
1973                         op->o_req_dn = entry->e_name;
1974                         op->o_req_ndn = entry->e_nname;
1975                         op->o_tag = LDAP_REQ_ADD;
1976                         op->ora_e = entry;
1977                         op->o_bd = si->si_wbe;
1978
1979                         rc = op->o_bd->be_add( op, &rs_add );
1980                         Debug( LDAP_DEBUG_SYNC,
1981                                         "syncrepl_entry: %s be_add (%d)\n", 
1982                                         si->si_ridtxt, rc, 0 );
1983                         switch ( rs_add.sr_err ) {
1984                         case LDAP_SUCCESS:
1985                                 if ( op->ora_e == entry ) {
1986                                         be_entry_release_w( op, entry );
1987                                 }
1988                                 entry = NULL;
1989                                 break;
1990
1991                         case LDAP_REFERRAL:
1992                         /* we assume that LDAP_NO_SUCH_OBJECT is returned 
1993                          * only if the suffix entry is not present */
1994                         case LDAP_NO_SUCH_OBJECT:
1995                                 rc = syncrepl_add_glue( op, entry );
1996                                 entry = NULL;
1997                                 break;
1998
1999                         /* if an entry was added via syncrepl_add_glue(),
2000                          * it likely has no entryUUID, so the previous
2001                          * be_search() doesn't find it.  In this case,
2002                          * give syncrepl a chance to modify it. Also
2003                          * allow for entries that were recreated with the
2004                          * same DN but a different entryUUID.
2005                          */
2006                         case LDAP_ALREADY_EXISTS:
2007                                 if ( retry ) {
2008                                         Operation       op2 = *op;
2009                                         SlapReply       rs2 = { 0 };
2010                                         slap_callback   cb2 = { 0 };
2011
2012                                         op2.o_bd = be;
2013                                         op2.o_tag = LDAP_REQ_SEARCH;
2014                                         op2.o_req_dn = entry->e_name;
2015                                         op2.o_req_ndn = entry->e_nname;
2016                                         op2.ors_scope = LDAP_SCOPE_BASE;
2017                                         op2.ors_deref = LDAP_DEREF_NEVER;
2018                                         op2.ors_attrs = slap_anlist_all_attributes;
2019                                         op2.ors_attrsonly = 0;
2020                                         op2.ors_limit = NULL;
2021                                         op2.ors_slimit = 1;
2022                                         op2.ors_tlimit = SLAP_NO_LIMIT;
2023
2024                                         f.f_choice = LDAP_FILTER_PRESENT;
2025                                         f.f_desc = slap_schema.si_ad_objectClass;
2026                                         op2.ors_filter = &f;
2027                                         op2.ors_filterstr = generic_filterstr;
2028
2029                                         op2.o_callback = &cb2;
2030                                         cb2.sc_response = dn_callback;
2031                                         cb2.sc_private = &dni;
2032
2033                                         rc = be->be_search( &op2, &rs2 );
2034                                         if ( rc ) goto done;
2035
2036                                         retry = 0;
2037                                         slap_op_time( &op->o_time, &op->o_tincr );
2038                                         goto retry_add;
2039                                 }
2040                                 /* FALLTHRU */
2041
2042                         default:
2043                                 Debug( LDAP_DEBUG_ANY,
2044                                         "syncrepl_entry: %s be_add failed (%d)\n",
2045                                         si->si_ridtxt, rs_add.sr_err, 0 );
2046                                 break;
2047                         }
2048                         op->o_bd = be;
2049                         goto done;
2050                 }
2051                 /* FALLTHRU */
2052                 op->o_req_dn = dni.dn;
2053                 op->o_req_ndn = dni.ndn;
2054                 if ( dni.renamed ) {
2055                         struct berval noldp, newp, nnewp;
2056
2057                         op->o_tag = LDAP_REQ_MODRDN;
2058                         dnRdn( &entry->e_name, &op->orr_newrdn );
2059                         dnRdn( &entry->e_nname, &op->orr_nnewrdn );
2060
2061                         dnParent( &dni.ndn, &noldp );
2062                         dnParent( &entry->e_nname, &nnewp );
2063                         if ( !dn_match( &noldp, &nnewp ) ) {
2064                                 dnParent( &entry->e_name, &newp );
2065                                 op->orr_newSup = &newp;
2066                                 op->orr_nnewSup = &nnewp;
2067                         } else {
2068                                 op->orr_newSup = NULL;
2069                                 op->orr_nnewSup = NULL;
2070                         }
2071                         op->orr_deleteoldrdn = dni.delOldRDN;
2072                         op->orr_modlist = NULL;
2073                         if ( ( rc = slap_modrdn2mods( op, &rs_modify ) ) ) {
2074                                 goto done;
2075                         }
2076
2077                         /* RDNs must be NUL-terminated for back-ldap */
2078                         noldp = op->orr_newrdn;
2079                         ber_dupbv_x( &op->orr_newrdn, &noldp, op->o_tmpmemctx );
2080                         noldp = op->orr_nnewrdn;
2081                         ber_dupbv_x( &op->orr_nnewrdn, &noldp, op->o_tmpmemctx );
2082
2083                         /* Setup opattrs too */
2084                         {
2085                                 static AttributeDescription *nullattr = NULL;
2086                                 static AttributeDescription **const opattrs[] = {
2087                                         &slap_schema.si_ad_entryCSN,
2088                                         &slap_schema.si_ad_modifiersName,
2089                                         &slap_schema.si_ad_modifyTimestamp,
2090                                         &nullattr
2091                                 };
2092                                 AttributeDescription *opattr;
2093                                 Modifications *mod, **modtail, **ml;
2094                                 int i;
2095
2096                                 for ( mod = op->orr_modlist;
2097                                         mod->sml_next;
2098                                         mod = mod->sml_next )
2099                                         ;
2100                                 modtail = &mod->sml_next;
2101
2102                                 /* pull mod off incoming modlist, append to orr_modlist */
2103                                 for ( i = 0; (opattr = *opattrs[i]) != NULL; i++ ) {
2104                                         for ( ml = modlist; *ml; ml = &(*ml)->sml_next )
2105                                         {
2106                                                 if ( (*ml)->sml_desc == opattr ) {
2107                                                         mod = *ml;
2108                                                         *ml = mod->sml_next;
2109                                                         mod->sml_next = NULL;
2110                                                         *modtail = mod;
2111                                                         modtail = &mod->sml_next;
2112                                                         break;
2113                                                 }
2114                                         }
2115                                 }
2116                         }
2117                         op->o_bd = si->si_wbe;
2118                         rc = op->o_bd->be_modrdn( op, &rs_modify );
2119                         op->o_tmpfree( op->orr_nnewrdn.bv_val, op->o_tmpmemctx );
2120                         op->o_tmpfree( op->orr_newrdn.bv_val, op->o_tmpmemctx );
2121
2122                         slap_mods_free( op->orr_modlist, 1 );
2123                         Debug( LDAP_DEBUG_SYNC,
2124                                         "syncrepl_entry: %s be_modrdn (%d)\n", 
2125                                         si->si_ridtxt, rc, 0 );
2126                         op->o_bd = be;
2127                         goto done;
2128                 }
2129                 if ( dni.mods ) {
2130                         op->o_tag = LDAP_REQ_MODIFY;
2131                         op->orm_modlist = dni.mods;
2132                         op->orm_no_opattrs = 1;
2133                         op->o_bd = si->si_wbe;
2134
2135                         rc = op->o_bd->be_modify( op, &rs_modify );
2136                         slap_mods_free( op->orm_modlist, 1 );
2137                         op->orm_no_opattrs = 0;
2138                         Debug( LDAP_DEBUG_SYNC,
2139                                         "syncrepl_entry: %s be_modify (%d)\n", 
2140                                         si->si_ridtxt, rc, 0 );
2141                         if ( rs_modify.sr_err != LDAP_SUCCESS ) {
2142                                 Debug( LDAP_DEBUG_ANY,
2143                                         "syncrepl_entry: %s be_modify failed (%d)\n",
2144                                         si->si_ridtxt, rs_modify.sr_err, 0 );
2145                         }
2146                         op->o_bd = be;
2147                 } else {
2148                         Debug( LDAP_DEBUG_SYNC,
2149                                         "syncrepl_entry: %s entry unchanged, ignored (%s)\n", 
2150                                         si->si_ridtxt, op->o_req_dn.bv_val, 0 );
2151                 }
2152                 goto done;
2153         case LDAP_SYNC_DELETE :
2154                 if ( !BER_BVISNULL( &dni.dn ) ) {
2155                         op->o_req_dn = dni.dn;
2156                         op->o_req_ndn = dni.ndn;
2157                         op->o_tag = LDAP_REQ_DELETE;
2158                         op->o_bd = si->si_wbe;
2159                         rc = op->o_bd->be_delete( op, &rs_delete );
2160                         Debug( LDAP_DEBUG_SYNC,
2161                                         "syncrepl_entry: %s be_delete (%d)\n", 
2162                                         si->si_ridtxt, rc, 0 );
2163
2164                         while ( rs_delete.sr_err == LDAP_SUCCESS
2165                                 && op->o_delete_glue_parent ) {
2166                                 op->o_delete_glue_parent = 0;
2167                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2168                                         slap_callback cb = { NULL };
2169                                         cb.sc_response = slap_null_cb;
2170                                         dnParent( &op->o_req_ndn, &pdn );
2171                                         op->o_req_dn = pdn;
2172                                         op->o_req_ndn = pdn;
2173                                         op->o_callback = &cb;
2174                                         op->o_bd->be_delete( op, &rs_delete );
2175                                 } else {
2176                                         break;
2177                                 }
2178                         }
2179                         op->o_bd = be;
2180                 }
2181                 goto done;
2182
2183         default :
2184                 Debug( LDAP_DEBUG_ANY,
2185                         "syncrepl_entry: %s unknown syncstate\n", si->si_ridtxt, 0, 0 );
2186                 goto done;
2187         }
2188
2189 done:
2190         if ( !BER_BVISNULL( &syncUUID_strrep ) ) {
2191                 slap_sl_free( syncUUID_strrep.bv_val, op->o_tmpmemctx );
2192                 BER_BVZERO( &syncUUID_strrep );
2193         }
2194         if ( !BER_BVISNULL( &dni.ndn ) ) {
2195                 op->o_tmpfree( dni.ndn.bv_val, op->o_tmpmemctx );
2196         }
2197         if ( !BER_BVISNULL( &dni.dn ) ) {
2198                 op->o_tmpfree( dni.dn.bv_val, op->o_tmpmemctx );
2199         }
2200         if ( entry )
2201                 entry_free( entry );
2202         BER_BVZERO( &op->o_csn );
2203         return rc;
2204 }
2205
2206 static struct berval gcbva[] = {
2207         BER_BVC("top"),
2208         BER_BVC("glue"),
2209         BER_BVNULL
2210 };
2211
2212 #define NP_DELETE_ONE   2
2213
2214 static void
2215 syncrepl_del_nonpresent(
2216         Operation *op,
2217         syncinfo_t *si,
2218         BerVarray uuids,
2219         struct berval *cookiecsn )
2220 {
2221         Backend* be = op->o_bd;
2222         slap_callback   cb = { NULL };
2223         SlapReply       rs_search = {REP_RESULT};
2224         SlapReply       rs_delete = {REP_RESULT};
2225         SlapReply       rs_modify = {REP_RESULT};
2226         struct nonpresent_entry *np_list, *np_prev;
2227         int rc;
2228         AttributeName   an[2];
2229
2230         struct berval pdn = BER_BVNULL;
2231         struct berval csn;
2232
2233         op->o_req_dn = si->si_base;
2234         op->o_req_ndn = si->si_base;
2235
2236         cb.sc_response = nonpresent_callback;
2237         cb.sc_private = si;
2238
2239         op->o_callback = &cb;
2240         op->o_tag = LDAP_REQ_SEARCH;
2241         op->ors_scope = si->si_scope;
2242         op->ors_deref = LDAP_DEREF_NEVER;
2243         op->o_time = slap_get_time();
2244         op->ors_tlimit = SLAP_NO_LIMIT;
2245
2246
2247         if ( uuids ) {
2248                 Filter uf;
2249 #ifdef LDAP_COMP_MATCH
2250                 AttributeAssertion eq = { NULL, BER_BVNULL, NULL };
2251 #else
2252                 AttributeAssertion eq = { NULL, BER_BVNULL };
2253 #endif
2254                 int i;
2255
2256                 op->ors_attrsonly = 1;
2257                 op->ors_attrs = slap_anlist_no_attrs;
2258                 op->ors_limit = NULL;
2259                 op->ors_filter = &uf;
2260
2261                 uf.f_ava = &eq;
2262                 uf.f_av_desc = slap_schema.si_ad_entryUUID;
2263                 uf.f_next = NULL;
2264                 uf.f_choice = LDAP_FILTER_EQUALITY;
2265                 si->si_refreshDelete |= NP_DELETE_ONE;
2266
2267                 for (i=0; uuids[i].bv_val; i++) {
2268                         op->ors_slimit = 1;
2269                         slap_uuidstr_from_normalized( &uf.f_av_value, &uuids[i],
2270                                 op->o_tmpmemctx );
2271                         filter2bv_x( op, op->ors_filter, &op->ors_filterstr );
2272                         op->o_tmpfree( uf.f_av_value.bv_val, op->o_tmpmemctx );
2273                         uf.f_av_value = uuids[i];
2274                         rc = be->be_search( op, &rs_search );
2275                         op->o_tmpfree( op->ors_filterstr.bv_val, op->o_tmpmemctx );
2276                 }
2277                 si->si_refreshDelete ^= NP_DELETE_ONE;
2278         } else {
2279                 memset( &an[0], 0, 2 * sizeof( AttributeName ) );
2280                 an[0].an_name = slap_schema.si_ad_entryUUID->ad_cname;
2281                 an[0].an_desc = slap_schema.si_ad_entryUUID;
2282                 op->ors_attrs = an;
2283                 op->ors_slimit = SLAP_NO_LIMIT;
2284                 op->ors_attrsonly = 0;
2285                 op->ors_filter = str2filter_x( op, si->si_filterstr.bv_val );
2286                 op->ors_filterstr = si->si_filterstr;
2287                 op->o_nocaching = 1;
2288
2289                 if ( limits_check( op, &rs_search ) == 0 ) {
2290                         rc = be->be_search( op, &rs_search );
2291                 }
2292                 if ( op->ors_filter ) filter_free_x( op, op->ors_filter );
2293         }
2294
2295         op->o_nocaching = 0;
2296
2297         if ( !LDAP_LIST_EMPTY( &si->si_nonpresentlist ) ) {
2298
2299                 if ( cookiecsn && !BER_BVISNULL( cookiecsn ) ) {
2300                         csn = *cookiecsn;
2301                 } else {
2302                         csn = si->si_syncCookie.ctxcsn[0];
2303                 }
2304
2305                 op->o_bd = si->si_wbe;
2306                 slap_queue_csn( op, &csn );
2307
2308                 np_list = LDAP_LIST_FIRST( &si->si_nonpresentlist );
2309                 while ( np_list != NULL ) {
2310                         LDAP_LIST_REMOVE( np_list, npe_link );
2311                         np_prev = np_list;
2312                         np_list = LDAP_LIST_NEXT( np_list, npe_link );
2313                         op->o_tag = LDAP_REQ_DELETE;
2314                         op->o_callback = &cb;
2315                         cb.sc_response = null_callback;
2316                         cb.sc_private = si;
2317                         op->o_req_dn = *np_prev->npe_name;
2318                         op->o_req_ndn = *np_prev->npe_nname;
2319                         rc = op->o_bd->be_delete( op, &rs_delete );
2320                         Debug( LDAP_DEBUG_SYNC,
2321                                 "syncrepl_del_nonpresent: %s be_delete %s (%d)\n", 
2322                                 si->si_ridtxt, op->o_req_dn.bv_val, rc );
2323
2324                         if ( rs_delete.sr_err == LDAP_NOT_ALLOWED_ON_NONLEAF ) {
2325                                 Modifications mod1, mod2;
2326                                 mod1.sml_op = LDAP_MOD_REPLACE;
2327                                 mod1.sml_flags = 0;
2328                                 mod1.sml_desc = slap_schema.si_ad_objectClass;
2329                                 mod1.sml_type = mod1.sml_desc->ad_cname;
2330                                 mod1.sml_values = &gcbva[0];
2331                                 mod1.sml_nvalues = NULL;
2332                                 mod1.sml_next = &mod2;
2333
2334                                 mod2.sml_op = LDAP_MOD_REPLACE;
2335                                 mod2.sml_flags = 0;
2336                                 mod2.sml_desc = slap_schema.si_ad_structuralObjectClass;
2337                                 mod2.sml_type = mod2.sml_desc->ad_cname;
2338                                 mod2.sml_values = &gcbva[1];
2339                                 mod2.sml_nvalues = NULL;
2340                                 mod2.sml_next = NULL;
2341
2342                                 op->o_tag = LDAP_REQ_MODIFY;
2343                                 op->orm_modlist = &mod1;
2344
2345                                 rc = op->o_bd->be_modify( op, &rs_modify );
2346                                 if ( mod2.sml_next ) slap_mods_free( mod2.sml_next, 1 );
2347                         }
2348
2349                         while ( rs_delete.sr_err == LDAP_SUCCESS &&
2350                                         op->o_delete_glue_parent ) {
2351                                 op->o_delete_glue_parent = 0;
2352                                 if ( !be_issuffix( be, &op->o_req_ndn ) ) {
2353                                         slap_callback cb = { NULL };
2354                                         cb.sc_response = slap_null_cb;
2355                                         dnParent( &op->o_req_ndn, &pdn );
2356                                         op->o_req_dn = pdn;
2357                                         op->o_req_ndn = pdn;
2358                                         op->o_callback = &cb;
2359                                         /* give it a root privil ? */
2360                                         op->o_bd->be_delete( op, &rs_delete );
2361                                 } else {
2362                                         break;
2363                                 }
2364                         }
2365
2366                         op->o_delete_glue_parent = 0;
2367
2368                         ber_bvfree( np_prev->npe_name );
2369                         ber_bvfree( np_prev->npe_nname );
2370                         ch_free( np_prev );
2371                 }
2372
2373                 slap_graduate_commit_csn( op );
2374                 op->o_bd = be;
2375
2376                 op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2377                 BER_BVZERO( &op->o_csn );
2378         }
2379
2380         return;
2381 }
2382
2383 int
2384 syncrepl_add_glue(
2385         Operation* op,
2386         Entry *e )
2387 {
2388         Backend *be = op->o_bd;
2389         slap_callback cb = { NULL };
2390         Attribute       *a;
2391         int     rc;
2392         int suffrdns;
2393         int i;
2394         struct berval dn = BER_BVNULL;
2395         struct berval ndn = BER_BVNULL;
2396         Entry   *glue;
2397         SlapReply       rs_add = {REP_RESULT};
2398         struct berval   ptr, nptr;
2399         char            *comma;
2400
2401         op->o_tag = LDAP_REQ_ADD;
2402         op->o_callback = &cb;
2403         cb.sc_response = null_callback;
2404         cb.sc_private = NULL;
2405
2406         dn = e->e_name;
2407         ndn = e->e_nname;
2408
2409         /* count RDNs in suffix */
2410         if ( !BER_BVISEMPTY( &be->be_nsuffix[0] ) ) {
2411                 for ( i = 0, ptr = be->be_nsuffix[0], comma = ptr.bv_val; comma != NULL; comma = ber_bvchr( &ptr, ',' ) ) {
2412                         comma++;
2413                         ptr.bv_len -= comma - ptr.bv_val;
2414                         ptr.bv_val = comma;
2415                         i++;
2416                 }
2417                 suffrdns = i;
2418         } else {
2419                 /* suffix is "" */
2420                 suffrdns = 0;
2421         }
2422
2423         /* Start with BE suffix */
2424         ptr = dn;
2425         for ( i = 0; i < suffrdns; i++ ) {
2426                 comma = ber_bvrchr( &ptr, ',' );
2427                 if ( comma != NULL ) {
2428                         ptr.bv_len = comma - ptr.bv_val;
2429                 } else {
2430                         ptr.bv_len = 0;
2431                         break;
2432                 }
2433         }
2434         
2435         if ( !BER_BVISEMPTY( &ptr ) ) {
2436                 dn.bv_len -= ptr.bv_len + 1;
2437                 dn.bv_val += ptr.bv_len + 1;
2438         }
2439
2440         /* the normalizedDNs are always the same length, no counting
2441          * required.
2442          */
2443         nptr = ndn;
2444         if ( ndn.bv_len > be->be_nsuffix[0].bv_len ) {
2445                 ndn.bv_val += ndn.bv_len - be->be_nsuffix[0].bv_len;
2446                 ndn.bv_len = be->be_nsuffix[0].bv_len;
2447
2448                 nptr.bv_len = ndn.bv_val - nptr.bv_val - 1;
2449
2450         } else {
2451                 nptr.bv_len = 0;
2452         }
2453
2454         while ( ndn.bv_val > e->e_nname.bv_val ) {
2455                 glue = entry_alloc();
2456                 ber_dupbv( &glue->e_name, &dn );
2457                 ber_dupbv( &glue->e_nname, &ndn );
2458
2459                 a = attr_alloc( slap_schema.si_ad_objectClass );
2460
2461                 a->a_vals = ch_calloc( 3, sizeof( struct berval ) );
2462                 ber_dupbv( &a->a_vals[0], &gcbva[0] );
2463                 ber_dupbv( &a->a_vals[1], &gcbva[1] );
2464                 ber_dupbv( &a->a_vals[2], &gcbva[2] );
2465
2466                 a->a_nvals = a->a_vals;
2467
2468                 a->a_next = glue->e_attrs;
2469                 glue->e_attrs = a;
2470
2471                 a = attr_alloc( slap_schema.si_ad_structuralObjectClass );
2472
2473                 a->a_vals = ch_calloc( 2, sizeof( struct berval ) );
2474                 ber_dupbv( &a->a_vals[0], &gcbva[1] );
2475                 ber_dupbv( &a->a_vals[1], &gcbva[2] );
2476
2477                 a->a_nvals = a->a_vals;
2478
2479                 a->a_next = glue->e_attrs;
2480                 glue->e_attrs = a;
2481
2482                 op->o_req_dn = glue->e_name;
2483                 op->o_req_ndn = glue->e_nname;
2484                 op->ora_e = glue;
2485                 rc = be->be_add ( op, &rs_add );
2486                 if ( rs_add.sr_err == LDAP_SUCCESS ) {
2487                         if ( op->ora_e == glue )
2488                                 be_entry_release_w( op, glue );
2489                 } else {
2490                 /* incl. ALREADY EXIST */
2491                         entry_free( glue );
2492                         if ( rs_add.sr_err != LDAP_ALREADY_EXISTS ) {
2493                                 entry_free( e );
2494                                 return rc;
2495                         }
2496                 }
2497
2498                 /* Move to next child */
2499                 comma = ber_bvrchr( &ptr, ',' );
2500                 if ( comma == NULL ) {
2501                         break;
2502                 }
2503                 ptr.bv_len = comma - ptr.bv_val;
2504                 
2505                 dn.bv_val = ++comma;
2506                 dn.bv_len = e->e_name.bv_len - (dn.bv_val - e->e_name.bv_val);
2507
2508                 comma = ber_bvrchr( &nptr, ',' );
2509                 assert( comma != NULL );
2510                 nptr.bv_len = comma - nptr.bv_val;
2511
2512                 ndn.bv_val = ++comma;
2513                 ndn.bv_len = e->e_nname.bv_len - (ndn.bv_val - e->e_nname.bv_val);
2514         }
2515
2516         op->o_req_dn = e->e_name;
2517         op->o_req_ndn = e->e_nname;
2518         op->ora_e = e;
2519         rc = be->be_add ( op, &rs_add );
2520         if ( rs_add.sr_err == LDAP_SUCCESS ) {
2521                 if ( op->ora_e == e )
2522                         be_entry_release_w( op, e );
2523         } else {
2524                 entry_free( e );
2525         }
2526
2527         return rc;
2528 }
2529
2530 static int
2531 syncrepl_updateCookie(
2532         syncinfo_t *si,
2533         Operation *op,
2534         struct berval *pdn,
2535         struct sync_cookie *syncCookie )
2536 {
2537         Backend *be = op->o_bd;
2538         Modifications mod[2];
2539         struct berval first = BER_BVNULL;
2540
2541         int rc, i, j, len;
2542
2543         slap_callback cb = { NULL };
2544         SlapReply       rs_modify = {REP_RESULT};
2545
2546         mod[0].sml_op = LDAP_MOD_DELETE;
2547         mod[0].sml_desc = slap_schema.si_ad_contextCSN;
2548         mod[0].sml_type = mod[0].sml_desc->ad_cname;
2549         mod[0].sml_values = NULL;
2550         mod[0].sml_nvalues = NULL;
2551         mod[0].sml_next = &mod[1];
2552
2553         mod[1].sml_op = LDAP_MOD_ADD;
2554         mod[1].sml_desc = slap_schema.si_ad_contextCSN;
2555         mod[1].sml_type = mod[0].sml_desc->ad_cname;
2556         mod[1].sml_values = NULL;
2557         mod[1].sml_nvalues = NULL;
2558         mod[1].sml_next = NULL;
2559
2560         ldap_pvt_thread_mutex_lock( &si->si_cookieState->cs_mutex );
2561
2562         for ( i=0; i<syncCookie->numcsns; i++ ) {
2563                 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
2564                         if ( syncCookie->sids[i] != si->si_cookieState->cs_sids[j] )
2565                                 continue;
2566                         len = syncCookie->ctxcsn[i].bv_len;
2567                         if ( len > si->si_cookieState->cs_vals[j].bv_len )
2568                                 len = si->si_cookieState->cs_vals[j].bv_len;
2569                         if ( memcmp( syncCookie->ctxcsn[i].bv_val,
2570                                 si->si_cookieState->cs_vals[j].bv_val, len ) > 0 ) {
2571                                 ber_bvarray_add_x( &mod[0].sml_values,
2572                                         &si->si_cookieState->cs_vals[j], op->o_tmpmemctx );
2573                                 ber_bvarray_add_x( &mod[1].sml_values,
2574                                         &syncCookie->ctxcsn[i], op->o_tmpmemctx );
2575                                 if ( BER_BVISNULL( &first ))
2576                                         first = syncCookie->ctxcsn[i];
2577                         }
2578                         break;
2579                 }
2580                 /* there was no match for this SID, it's a new CSN */
2581                 if ( j == si->si_cookieState->cs_num ) {
2582                         ber_bvarray_add_x( &mod[1].sml_values,
2583                                 &syncCookie->ctxcsn[i], op->o_tmpmemctx );
2584                         if ( BER_BVISNULL( &first ))
2585                                 first = syncCookie->ctxcsn[i];
2586                 }
2587         }
2588         /* Should never happen, ITS#5065 */
2589         if ( BER_BVISNULL( &first )) {
2590                 ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2591                 return 0;
2592         }
2593         op->o_bd = si->si_wbe;
2594         slap_queue_csn( op, &first );
2595
2596         op->o_tag = LDAP_REQ_MODIFY;
2597
2598         cb.sc_response = null_callback;
2599         cb.sc_private = si;
2600
2601         op->o_callback = &cb;
2602         op->o_req_dn = op->o_bd->be_suffix[0];
2603         op->o_req_ndn = op->o_bd->be_nsuffix[0];
2604
2605         /* update contextCSN */
2606         op->o_msgid = SLAP_SYNC_UPDATE_MSGID;
2607
2608         if ( mod[0].sml_values )
2609                 op->orm_modlist = mod;
2610         else
2611                 op->orm_modlist = &mod[1];
2612
2613         op->orm_no_opattrs = 1;
2614         rc = op->o_bd->be_modify( op, &rs_modify );
2615         op->orm_no_opattrs = 0;
2616         op->o_msgid = 0;
2617
2618         if ( rs_modify.sr_err == LDAP_SUCCESS ) {
2619                 slap_sync_cookie_free( &si->si_syncCookie, 0 );
2620                 slap_dup_sync_cookie( &si->si_syncCookie, syncCookie );
2621                 /* If we replaced any old values */
2622                 if ( mod[0].sml_values ) {
2623                         for ( i=0; !BER_BVISNULL( &mod[0].sml_values[i] ); i++ ) {
2624                                 for ( j=0; j<si->si_cookieState->cs_num; j++ ) {
2625                                         if ( mod[0].sml_values[i].bv_val !=
2626                                                 si->si_cookieState->cs_vals[j].bv_val )
2627                                                 continue;
2628                                         ber_bvreplace( &si->si_cookieState->cs_vals[j],
2629                                                 &mod[1].sml_values[i] );
2630                                         break;
2631                                 }
2632                         }
2633                 } else {
2634                         /* Else we just added */
2635                         si->si_cookieState->cs_num += syncCookie->numcsns;
2636                         value_add( &si->si_cookieState->cs_vals, syncCookie->ctxcsn );
2637                         free( si->si_cookieState->cs_sids );
2638                         si->si_cookieState->cs_sids = slap_parse_csn_sids(
2639                                 si->si_cookieState->cs_vals, si->si_cookieState->cs_num, NULL );
2640                 }
2641
2642                 si->si_cookieState->cs_age++;
2643                 si->si_cookieAge = si->si_cookieState->cs_age;
2644         } else {
2645                 Debug( LDAP_DEBUG_ANY,
2646                         "syncrepl_updateCookie: %s be_modify failed (%d)\n",
2647                         si->si_ridtxt, rs_modify.sr_err, 0 );
2648         }
2649         ldap_pvt_thread_mutex_unlock( &si->si_cookieState->cs_mutex );
2650
2651         slap_graduate_commit_csn( op );
2652         op->o_bd = be;
2653         op->o_tmpfree( op->o_csn.bv_val, op->o_tmpmemctx );
2654         BER_BVZERO( &op->o_csn );
2655         if ( mod[1].sml_next ) slap_mods_free( mod[1].sml_next, 1 );
2656         op->o_tmpfree( mod[1].sml_values, op->o_tmpmemctx );
2657         op->o_tmpfree( mod[0].sml_values, op->o_tmpmemctx );
2658
2659         return rc;
2660 }
2661
2662 static void
2663 attr_cmp( Operation *op, Attribute *old, Attribute *new,
2664         Modifications ***mret, Modifications ***mcur )
2665 {
2666         int i, j;
2667         Modifications *mod, **modtail;
2668
2669         modtail = *mret;
2670
2671         if ( old ) {
2672                 int n, o, d, a, *adds, *dels;
2673                 /* count old and new */
2674                 for ( o=0; old->a_vals[o].bv_val; o++ ) ;
2675                 for ( n=0; new->a_vals[n].bv_val; n++ ) ;
2676
2677                 adds = op->o_tmpalloc( sizeof(int) * n, op->o_tmpmemctx );
2678                 dels = op->o_tmpalloc( sizeof(int) * o, op->o_tmpmemctx );
2679                 d = 0;
2680                 a = 0;
2681                 i = 0;
2682                 j = 0;
2683
2684                 while ( i < o && j < n ) {
2685                         int k;
2686                         if ( bvmatch( &old->a_vals[i], &new->a_vals[j] ) ) {
2687                                 i++;
2688                                 j++;
2689                                 continue;
2690                         }
2691                         for ( k = j + 1; k<n; k++ ) {
2692                                 if ( bvmatch( &old->a_vals[i], &new->a_vals[k] ) ) {
2693                                         break;
2694                                 }
2695                         }
2696                         /* an old value was deleted */
2697                         if ( k == n ) {
2698                                 dels[d++] = i++;
2699                                 continue;
2700                         }
2701                         /* old value still exists, move to next */
2702                         i++;
2703                         for ( k = i; k < o; k++ ) {
2704                                 if ( bvmatch( &old->a_vals[k], &new->a_vals[j] ) ) {
2705                                         break;
2706                                 }
2707                         }
2708                         if ( k == o ) {
2709                                 adds[a++] = j++;
2710                         } else {
2711                                 j++;
2712                         }
2713                 }
2714                 while ( i < o )
2715                         dels[d++] = i++;
2716                 while ( j < n )
2717                         adds[a++] = j++;
2718
2719                 /* all old values were deleted, just use the replace op */
2720                 if ( d == o ) {
2721                         i = j-1;
2722                 } else if ( d ) {
2723                 /* delete some values */
2724                         mod = ch_malloc( sizeof( Modifications ) );
2725                         mod->sml_op = LDAP_MOD_DELETE;
2726                         mod->sml_flags = 0;
2727                         mod->sml_desc = old->a_desc;
2728                         mod->sml_type = mod->sml_desc->ad_cname;
2729                         mod->sml_values = ch_malloc( ( d + 1 ) * sizeof(struct berval) );
2730                         if ( old->a_vals != old->a_nvals ) {
2731                                 mod->sml_nvalues = ch_malloc( ( d + 1 ) * sizeof(struct berval) );
2732                         } else {
2733                                 mod->sml_nvalues = NULL;
2734                         }
2735                         for ( i = 0; i < d; i++ ) {
2736                                 ber_dupbv( &mod->sml_values[i], &old->a_vals[dels[i]] );
2737                                 if ( mod->sml_nvalues ) {
2738                                         ber_dupbv( &mod->sml_nvalues[i], &old->a_nvals[dels[i]] );
2739                                 }
2740                         }
2741                         BER_BVZERO( &mod->sml_values[i] );
2742                         if ( mod->sml_nvalues ) {
2743                                 BER_BVZERO( &mod->sml_nvalues[i] );
2744                         }
2745                         *modtail = mod;
2746                         modtail = &mod->sml_next;
2747                         i = j;
2748                 }
2749                 op->o_tmpfree( dels, op->o_tmpmemctx );
2750                 /* some values were added */
2751                 if ( a && d < o ) {
2752                         mod = ch_malloc( sizeof( Modifications ) );
2753                         mod->sml_op = LDAP_MOD_ADD;
2754                         mod->sml_flags = 0;
2755                         mod->sml_desc = old->a_desc;
2756                         mod->sml_type = mod->sml_desc->ad_cname;
2757                         mod->sml_values = ch_malloc( ( a + 1 ) * sizeof(struct berval) );
2758                         if ( old->a_vals != old->a_nvals ) {
2759                                 mod->sml_nvalues = ch_malloc( ( a + 1 ) * sizeof(struct berval) );
2760                         } else {
2761                                 mod->sml_nvalues = NULL;
2762                         }
2763                         for ( i = 0; i < a; i++ ) {
2764                                 ber_dupbv( &mod->sml_values[i], &new->a_vals[adds[i]] );
2765                                 if ( mod->sml_nvalues ) {
2766                                         ber_dupbv( &mod->sml_nvalues[i], &new->a_nvals[adds[i]] );
2767                                 }
2768                         }
2769                         BER_BVZERO( &mod->sml_values[i] );
2770                         if ( mod->sml_nvalues ) {
2771                                 BER_BVZERO( &mod->sml_nvalues[i] );
2772                         }
2773                         *modtail = mod;
2774                         modtail = &mod->sml_next;
2775                         i = j;
2776                 }
2777                 op->o_tmpfree( adds, op->o_tmpmemctx );
2778         } else {
2779                 /* new attr, just use the new mod */
2780                 i = 0;
2781                 j = 1;
2782         }
2783         /* advance to next element */
2784         mod = **mcur;
2785         if ( mod ) {
2786                 if ( i != j ) {
2787                         **mcur = mod->sml_next;
2788                         *modtail = mod;
2789                         modtail = &mod->sml_next;
2790                 } else {
2791                         *mcur = &mod->sml_next;
2792                 }
2793         }
2794         *mret = modtail;
2795 }
2796
2797 static int
2798 dn_callback(
2799         Operation*      op,
2800         SlapReply*      rs )
2801 {
2802         dninfo *dni = op->o_callback->sc_private;
2803
2804         if ( rs->sr_type == REP_SEARCH ) {
2805                 if ( !BER_BVISNULL( &dni->dn ) ) {
2806                         Debug( LDAP_DEBUG_ANY,
2807                                 "dn_callback : consistency error - "
2808                                 "entryUUID is not unique\n", 0, 0, 0 );
2809                 } else {
2810                         ber_dupbv_x( &dni->dn, &rs->sr_entry->e_name, op->o_tmpmemctx );
2811                         ber_dupbv_x( &dni->ndn, &rs->sr_entry->e_nname, op->o_tmpmemctx );
2812                         /* If there is a new entry, see if it differs from the old.
2813                          * We compare the non-normalized values so that cosmetic changes
2814                          * in the provider are always propagated.
2815                          */
2816                         if ( dni->new_entry ) {
2817                                 Modifications **modtail, **ml;
2818                                 Attribute *old, *new;
2819                                 int is_ctx;
2820
2821                                 is_ctx = dn_match( &rs->sr_entry->e_nname,
2822                                         &op->o_bd->be_nsuffix[0] );
2823
2824                                 /* Did the DN change?
2825                                  */
2826                                 if ( !dn_match( &rs->sr_entry->e_name,
2827                                                 &dni->new_entry->e_name ) )
2828                                 {
2829                                         struct berval oldRDN, oldVal;
2830                                         AttributeDescription *ad = NULL;
2831                                         Attribute *a;
2832
2833                                         dni->renamed = 1;
2834                                         /* See if the oldRDN was deleted */
2835                                         dnRdn( &rs->sr_entry->e_nname, &oldRDN );
2836                                         oldVal.bv_val = strchr(oldRDN.bv_val, '=') + 1;
2837                                         oldVal.bv_len = oldRDN.bv_len - ( oldVal.bv_val -
2838                                                 oldRDN.bv_val );
2839                                         oldRDN.bv_len -= oldVal.bv_len + 2;
2840                                         slap_bv2ad( &oldRDN, &ad, &rs->sr_text );
2841                                         a = attr_find( dni->new_entry->e_attrs, ad );
2842                                         if ( !a || value_find_ex( ad,
2843                                                 SLAP_MR_ASSERTED_VALUE_NORMALIZED_MATCH |
2844                                                 SLAP_MR_ATTRIBUTE_VALUE_NORMALIZED_MATCH |
2845                                                 SLAP_MR_VALUE_OF_SYNTAX, a->a_nvals,
2846                                                 &oldVal, op->o_tmpmemctx ) != LDAP_SUCCESS )
2847                                         {
2848                                                 dni->delOldRDN = 1;
2849                                         }
2850                                         /* OK, this was just a modDN, we're done */
2851                                         return LDAP_SUCCESS;
2852                                 }
2853
2854                                 modtail = &dni->mods;
2855                                 ml = dni->modlist;
2856
2857                                 /* Make sure new entry is actually newer than old entry */
2858                                 old = attr_find( rs->sr_entry->e_attrs,
2859                                         slap_schema.si_ad_entryCSN );
2860                                 new = attr_find( dni->new_entry->e_attrs,
2861                                         slap_schema.si_ad_entryCSN );
2862                                 if ( new && old ) {
2863                                         int len = old->a_vals[0].bv_len;
2864                                         if ( len > new->a_vals[0].bv_len )
2865                                                 len = new->a_vals[0].bv_len;
2866                                         if ( memcmp( old->a_vals[0].bv_val,
2867                                                 new->a_vals[0].bv_val, len ) >= 0 ) {
2868                                                 Debug( LDAP_DEBUG_SYNC,
2869                                                         "dn_callback : new entry is older than ours "
2870                                                         "%s ours %s, new %s\n",
2871                                                         rs->sr_entry->e_name.bv_val,
2872                                                         old->a_vals[0].bv_val,
2873                                                         new->a_vals[0].bv_val );
2874                                                 return LDAP_SUCCESS;
2875                                         }
2876                                 }
2877
2878                                 /* We assume that attributes are saved in the same order
2879                                  * in the remote and local databases. So if we walk through
2880                                  * the attributeDescriptions one by one they should match in
2881                                  * lock step. If not, look for an add or delete.
2882                                  */
2883                                 for ( old = rs->sr_entry->e_attrs, new = dni->new_entry->e_attrs;
2884                                                 old && new; )
2885                                 {
2886                                         /* If we've seen this before, use its mod now */
2887                                         if ( new->a_flags & SLAP_ATTR_IXADD ) {
2888                                                 attr_cmp( op, NULL, new, &modtail, &ml );
2889                                                 new = new->a_next;
2890                                                 continue;
2891                                         }
2892                                         /* Skip contextCSN */
2893                                         if ( is_ctx && old->a_desc ==
2894                                                 slap_schema.si_ad_contextCSN ) {
2895                                                 old = old->a_next;
2896                                                 continue;
2897                                         }
2898
2899                                         if ( old->a_desc != new->a_desc ) {
2900                                                 Modifications *mod;
2901                                                 Attribute *tmp;
2902
2903                                                 /* If it's just been re-added later,
2904                                                  * remember that we've seen it.
2905                                                  */
2906                                                 tmp = attr_find( new, old->a_desc );
2907                                                 if ( tmp ) {
2908                                                         tmp->a_flags |= SLAP_ATTR_IXADD;
2909                                                 } else {
2910                                                         /* If it's a new attribute, pull it in.
2911                                                          */
2912                                                         tmp = attr_find( old, new->a_desc );
2913                                                         if ( !tmp ) {
2914                                                                 attr_cmp( op, NULL, new, &modtail, &ml );
2915                                                                 new = new->a_next;
2916                                                                 continue;
2917                                                         }
2918                                                         /* Delete old attr */
2919                                                         mod = ch_malloc( sizeof( Modifications ) );
2920                                                         mod->sml_op = LDAP_MOD_DELETE;
2921                                                         mod->sml_flags = 0;
2922                                                         mod->sml_desc = old->a_desc;
2923                                                         mod->sml_type = mod->sml_desc->ad_cname;
2924                                                         mod->sml_values = NULL;
2925                                                         mod->sml_nvalues = NULL;
2926                                                         *modtail = mod;
2927                                                         modtail = &mod->sml_next;
2928                                                 }
2929                                                 old = old->a_next;
2930                                                 continue;
2931                                         }
2932                                         /* kludge - always update modifiersName so that it
2933                                          * stays co-located with the other mod opattrs. But only
2934                                          * if we know there are other valid mods.
2935                                          */
2936                                         if ( old->a_desc == slap_schema.si_ad_modifiersName &&
2937                                                 dni->mods )
2938                                                 attr_cmp( op, NULL, new, &modtail, &ml );
2939                                         else
2940                                                 attr_cmp( op, old, new, &modtail, &ml );
2941                                         new = new->a_next;
2942                                         old = old->a_next;
2943                                 }
2944                                 *modtail = *ml;
2945                                 *ml = NULL;
2946                         }
2947                 }
2948         } else if ( rs->sr_type == REP_RESULT ) {
2949                 if ( rs->sr_err == LDAP_SIZELIMIT_EXCEEDED ) {
2950                         Debug( LDAP_DEBUG_ANY,
2951                                 "dn_callback : consistency error - "
2952                                 "entryUUID is not unique\n", 0, 0, 0 );
2953                 }
2954         }
2955
2956         return LDAP_SUCCESS;
2957 }
2958
2959 static int
2960 nonpresent_callback(
2961         Operation*      op,
2962         SlapReply*      rs )
2963 {
2964         syncinfo_t *si = op->o_callback->sc_private;
2965         Attribute *a;
2966         int count = 0;
2967         struct berval* present_uuid = NULL;
2968         struct nonpresent_entry *np_entry;
2969
2970         if ( rs->sr_type == REP_RESULT ) {
2971                 count = avl_free( si->si_presentlist, avl_ber_bvfree );
2972                 si->si_presentlist = NULL;
2973
2974         } else if ( rs->sr_type == REP_SEARCH ) {
2975                 if ( !( si->si_refreshDelete & NP_DELETE_ONE ) ) {
2976                         char buf[sizeof("rid=000 not")];
2977
2978                         a = attr_find( rs->sr_entry->e_attrs, slap_schema.si_ad_entryUUID );
2979
2980                         if ( a ) {
2981                                 present_uuid = avl_find( si->si_presentlist, &a->a_nvals[0],
2982                                         syncuuid_cmp );
2983                         }
2984
2985                         if ( slap_debug & LDAP_DEBUG_SYNC ) {
2986                                 sprintf( buf, "%s %s", si->si_ridtxt,
2987                                         present_uuid ? "got" : "not" );
2988                         }
2989
2990                         Debug( LDAP_DEBUG_SYNC, "nonpresent_callback: %s UUID %s, dn %s\n",
2991                                 buf, a ? a->a_vals[0].bv_val : "<missing>", rs->sr_entry->e_name.bv_val );
2992
2993                         if ( a == NULL ) return 0;
2994                 }
2995
2996                 if ( present_uuid == NULL ) {
2997                         np_entry = (struct nonpresent_entry *)
2998                                 ch_calloc( 1, sizeof( struct nonpresent_entry ) );
2999                         np_entry->npe_name = ber_dupbv( NULL, &rs->sr_entry->e_name );
3000                         np_entry->npe_nname = ber_dupbv( NULL, &rs->sr_entry->e_nname );
3001                         LDAP_LIST_INSERT_HEAD( &si->si_nonpresentlist, np_entry, npe_link );
3002
3003                 } else {
3004                         avl_delete( &si->si_presentlist,
3005                                         &a->a_nvals[0], syncuuid_cmp );
3006                         ch_free( present_uuid->bv_val );
3007                         ch_free( present_uuid );
3008                 }
3009         }
3010         return LDAP_SUCCESS;
3011 }
3012
3013 static int
3014 null_callback(
3015         Operation*      op,
3016         SlapReply*      rs )
3017 {
3018         if ( rs->sr_err != LDAP_SUCCESS &&
3019                 rs->sr_err != LDAP_REFERRAL &&
3020                 rs->sr_err != LDAP_ALREADY_EXISTS &&
3021                 rs->sr_err != LDAP_NO_SUCH_OBJECT &&
3022                 rs->sr_err != LDAP_NOT_ALLOWED_ON_NONLEAF )
3023         {
3024                 Debug( LDAP_DEBUG_ANY,
3025                         "null_callback : error code 0x%x\n",
3026                         rs->sr_err, 0, 0 );
3027         }
3028         return LDAP_SUCCESS;
3029 }
3030
3031 static struct berval *
3032 slap_uuidstr_from_normalized(
3033         struct berval* uuidstr,
3034         struct berval* normalized,
3035         void *ctx )
3036 {
3037 #if 0
3038         struct berval *new;
3039         unsigned char nibble;
3040         int i, d = 0;
3041
3042         if ( normalized == NULL ) return NULL;
3043         if ( normalized->bv_len != 16 ) return NULL;
3044
3045         if ( uuidstr ) {
3046                 new = uuidstr;
3047         } else {
3048                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3049                 if ( new == NULL ) {
3050                         return NULL;
3051                 }
3052         }
3053
3054         new->bv_len = 36;
3055
3056         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3057                 if ( new != uuidstr ) {
3058                         slap_sl_free( new, ctx );
3059                 }
3060                 return NULL;
3061         }
3062
3063         for ( i = 0; i < 16; i++ ) {
3064                 if ( i == 4 || i == 6 || i == 8 || i == 10 ) {
3065                         new->bv_val[(i<<1)+d] = '-';
3066                         d += 1;
3067                 }
3068
3069                 nibble = (normalized->bv_val[i] >> 4) & 0xF;
3070                 if ( nibble < 10 ) {
3071                         new->bv_val[(i<<1)+d] = nibble + '0';
3072                 } else {
3073                         new->bv_val[(i<<1)+d] = nibble - 10 + 'a';
3074                 }
3075
3076                 nibble = (normalized->bv_val[i]) & 0xF;
3077                 if ( nibble < 10 ) {
3078                         new->bv_val[(i<<1)+d+1] = nibble + '0';
3079                 } else {
3080                         new->bv_val[(i<<1)+d+1] = nibble - 10 + 'a';
3081                 }
3082         }
3083
3084         new->bv_val[new->bv_len] = '\0';
3085         return new;
3086 #endif
3087
3088         struct berval   *new;
3089         int             rc = 0;
3090
3091         if ( normalized == NULL ) return NULL;
3092         if ( normalized->bv_len != 16 ) return NULL;
3093
3094         if ( uuidstr ) {
3095                 new = uuidstr;
3096
3097         } else {
3098                 new = (struct berval *)slap_sl_malloc( sizeof(struct berval), ctx );
3099                 if ( new == NULL ) {
3100                         return NULL;
3101                 }
3102         }
3103
3104         new->bv_len = 36;
3105
3106         if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
3107                 rc = 1;
3108                 goto done;
3109         }
3110
3111         rc = lutil_uuidstr_from_normalized( normalized->bv_val,
3112                 normalized->bv_len, new->bv_val, new->bv_len + 1 );
3113
3114 done:;
3115         if ( rc == -1 ) {
3116                 if ( new != NULL ) {
3117                         if ( new->bv_val != NULL ) {
3118                                 slap_sl_free( new->bv_val, ctx );
3119                         }
3120
3121                         if ( new != uuidstr ) {
3122                                 slap_sl_free( new, ctx );
3123                         }
3124                 }
3125                 new = NULL;
3126
3127         } else {
3128                 new->bv_len = rc;
3129         }
3130
3131         return new;
3132 }
3133
3134 static int
3135 syncuuid_cmp( const void* v_uuid1, const void* v_uuid2 )
3136 {
3137         const struct berval *uuid1 = v_uuid1;
3138         const struct berval *uuid2 = v_uuid2;
3139         int rc = uuid1->bv_len - uuid2->bv_len;
3140         if ( rc ) return rc;
3141         return ( memcmp( uuid1->bv_val, uuid2->bv_val, uuid1->bv_len ) );
3142 }
3143
3144 static void
3145 avl_ber_bvfree( void *v_bv )
3146 {
3147         struct berval   *bv = (struct berval *)v_bv;
3148         
3149         if( v_bv == NULL ) return;
3150         if ( !BER_BVISNULL( bv ) ) {
3151                 ch_free( bv->bv_val );
3152         }
3153         ch_free( (char *) bv );
3154 }
3155
3156 void
3157 syncinfo_free( syncinfo_t *sie, int free_all )
3158 {
3159         syncinfo_t *si_next;
3160
3161         if ( free_all && sie->si_cookieState ) {
3162                 ch_free( sie->si_cookieState->cs_sids );
3163                 ber_bvarray_free( sie->si_cookieState->cs_vals );
3164                 ldap_pvt_thread_mutex_destroy( &sie->si_cookieState->cs_mutex );
3165                 ch_free( sie->si_cookieState );
3166         }
3167         do {
3168                 si_next = sie->si_next;
3169
3170                 if ( sie->si_ld ) {
3171                         if ( sie->si_conn_setup ) {
3172                                 ber_socket_t s;
3173                                 ldap_get_option( sie->si_ld, LDAP_OPT_DESC, &s );
3174                                 connection_client_stop( s );
3175                                 sie->si_conn_setup = 0;
3176                         }
3177                         ldap_unbind_ext( sie->si_ld, NULL, NULL );
3178                 }
3179         
3180                 /* re-fetch it, in case it was already removed */
3181                 sie->si_re = ldap_pvt_runqueue_find( &slapd_rq, do_syncrepl, sie );
3182                 if ( sie->si_re ) {
3183                         if ( ldap_pvt_runqueue_isrunning( &slapd_rq, sie->si_re ) )
3184                                 ldap_pvt_runqueue_stoptask( &slapd_rq, sie->si_re );
3185                         ldap_pvt_runqueue_remove( &slapd_rq, sie->si_re );
3186                 }
3187         
3188                 ldap_pvt_thread_mutex_destroy( &sie->si_mutex );
3189         
3190                 bindconf_free( &sie->si_bindconf );
3191         
3192                 if ( sie->si_filterstr.bv_val ) {
3193                         ch_free( sie->si_filterstr.bv_val );
3194                 }
3195                 if ( sie->si_logfilterstr.bv_val ) {
3196                         ch_free( sie->si_logfilterstr.bv_val );
3197                 }
3198                 if ( sie->si_base.bv_val ) {
3199                         ch_free( sie->si_base.bv_val );
3200                 }
3201                 if ( sie->si_logbase.bv_val ) {
3202                         ch_free( sie->si_logbase.bv_val );
3203                 }
3204                 if ( sie->si_attrs ) {
3205                         int i = 0;
3206                         while ( sie->si_attrs[i] != NULL ) {
3207                                 ch_free( sie->si_attrs[i] );
3208                                 i++;
3209                         }
3210                         ch_free( sie->si_attrs );
3211                 }
3212                 if ( sie->si_exattrs ) {
3213                         int i = 0;
3214                         while ( sie->si_exattrs[i] != NULL ) {
3215                                 ch_free( sie->si_exattrs[i] );
3216                                 i++;
3217                         }
3218                         ch_free( sie->si_exattrs );
3219                 }
3220                 if ( sie->si_anlist ) {
3221                         int i = 0;
3222                         while ( sie->si_anlist[i].an_name.bv_val != NULL ) {
3223                                 ch_free( sie->si_anlist[i].an_name.bv_val );
3224                                 i++;
3225                         }
3226                         ch_free( sie->si_anlist );
3227                 }
3228                 if ( sie->si_exanlist ) {
3229                         int i = 0;
3230                         while ( sie->si_exanlist[i].an_name.bv_val != NULL ) {
3231                                 ch_free( sie->si_exanlist[i].an_name.bv_val );
3232                                 i++;
3233                         }
3234                         ch_free( sie->si_exanlist );
3235                 }
3236                 if ( sie->si_retryinterval ) {
3237                         ch_free( sie->si_retryinterval );
3238                 }
3239                 if ( sie->si_retrynum ) {
3240                         ch_free( sie->si_retrynum );
3241                 }
3242                 if ( sie->si_retrynum_init ) {
3243                         ch_free( sie->si_retrynum_init );
3244                 }
3245                 slap_sync_cookie_free( &sie->si_syncCookie, 0 );
3246                 if ( sie->si_presentlist ) {
3247                     avl_free( sie->si_presentlist, avl_ber_bvfree );
3248                 }
3249                 while ( !LDAP_LIST_EMPTY( &sie->si_nonpresentlist ) ) {
3250                         struct nonpresent_entry* npe;
3251                         npe = LDAP_LIST_FIRST( &sie->si_nonpresentlist );
3252                         LDAP_LIST_REMOVE( npe, npe_link );
3253                         if ( npe->npe_name ) {
3254                                 if ( npe->npe_name->bv_val ) {
3255                                         ch_free( npe->npe_name->bv_val );
3256                                 }
3257                                 ch_free( npe->npe_name );
3258                         }
3259                         if ( npe->npe_nname ) {
3260                                 if ( npe->npe_nname->bv_val ) {
3261                                         ch_free( npe->npe_nname->bv_val );
3262                                 }
3263                                 ch_free( npe->npe_nname );
3264                         }
3265                         ch_free( npe );
3266                 }
3267                 ch_free( sie );
3268                 sie = si_next;
3269         } while ( free_all && si_next );
3270 }
3271
3272
3273
3274 /* NOTE: used & documented in slapd.conf(5) */
3275 #define IDSTR                   "rid"
3276 #define PROVIDERSTR             "provider"
3277 #define SCHEMASTR               "schemachecking"
3278 #define FILTERSTR               "filter"
3279 #define SEARCHBASESTR           "searchbase"
3280 #define SCOPESTR                "scope"
3281 #define ATTRSONLYSTR            "attrsonly"
3282 #define ATTRSSTR                "attrs"
3283 #define TYPESTR                 "type"
3284 #define INTERVALSTR             "interval"
3285 #define RETRYSTR                "retry"
3286 #define SLIMITSTR               "sizelimit"
3287 #define TLIMITSTR               "timelimit"
3288 #define SYNCDATASTR             "syncdata"
3289 #define LOGBASESTR              "logbase"
3290 #define LOGFILTERSTR    "logfilter"
3291
3292 /* FIXME: undocumented */
3293 #define EXATTRSSTR              "exattrs"
3294 #define MANAGEDSAITSTR          "manageDSAit"
3295
3296 /* mandatory */
3297 #define GOT_ID                  0x0001
3298 #define GOT_PROVIDER    0x0002
3299 #define GOT_BASE                0x0004
3300
3301 /* check */
3302 #define GOT_ALL                 (GOT_ID|GOT_PROVIDER|GOT_BASE)
3303
3304 static struct {
3305         struct berval key;
3306         int val;
3307 } scopes[] = {
3308         { BER_BVC("base"), LDAP_SCOPE_BASE },
3309         { BER_BVC("one"), LDAP_SCOPE_ONELEVEL },
3310         { BER_BVC("onelevel"), LDAP_SCOPE_ONELEVEL },   /* OpenLDAP extension */
3311         { BER_BVC("children"), LDAP_SCOPE_SUBORDINATE },
3312         { BER_BVC("subord"), LDAP_SCOPE_SUBORDINATE },
3313         { BER_BVC("subordinate"), LDAP_SCOPE_SUBORDINATE },
3314         { BER_BVC("sub"), LDAP_SCOPE_SUBTREE },
3315         { BER_BVC("subtree"), LDAP_SCOPE_SUBTREE },     /* OpenLDAP extension */
3316         { BER_BVNULL, 0 }
3317 };
3318
3319 static slap_verbmasks datamodes[] = {
3320         { BER_BVC("default"), SYNCDATA_DEFAULT },
3321         { BER_BVC("accesslog"), SYNCDATA_ACCESSLOG },
3322         { BER_BVC("changelog"), SYNCDATA_CHANGELOG },
3323         { BER_BVNULL, 0 }
3324 };
3325
3326 static int
3327 parse_syncrepl_line(
3328         ConfigArgs      *c,
3329         syncinfo_t      *si )
3330 {
3331         int     gots = 0;
3332         int     i;
3333         char    *val;
3334
3335         for ( i = 1; i < c->argc; i++ ) {
3336                 if ( !strncasecmp( c->argv[ i ], IDSTR "=",
3337                                         STRLENOF( IDSTR "=" ) ) )
3338                 {
3339                         int tmp;
3340                         /* '\0' string terminator accounts for '=' */
3341                         val = c->argv[ i ] + STRLENOF( IDSTR "=" );
3342                         if ( lutil_atoi( &tmp, val ) != 0 ) {
3343                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3344                                         "Error: parse_syncrepl_line: "
3345                                         "unable to parse syncrepl id \"%s\"", val );
3346                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3347                                 return -1;
3348                         }
3349                         if ( tmp >= 1000 || tmp < 0 ) {
3350                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3351                                         "Error: parse_syncrepl_line: "
3352                                         "syncrepl id %d is out of range [0..999]", tmp );
3353                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3354                                 return -1;
3355                         }
3356                         si->si_rid = tmp;
3357                         sprintf( si->si_ridtxt, IDSTR "=%03d", si->si_rid );
3358                         gots |= GOT_ID;
3359                 } else if ( !strncasecmp( c->argv[ i ], PROVIDERSTR "=",
3360                                         STRLENOF( PROVIDERSTR "=" ) ) )
3361                 {
3362                         val = c->argv[ i ] + STRLENOF( PROVIDERSTR "=" );
3363                         ber_str2bv( val, 0, 1, &si->si_bindconf.sb_uri );
3364                         gots |= GOT_PROVIDER;
3365                 } else if ( !strncasecmp( c->argv[ i ], SCHEMASTR "=",
3366                                         STRLENOF( SCHEMASTR "=" ) ) )
3367                 {
3368                         val = c->argv[ i ] + STRLENOF( SCHEMASTR "=" );
3369                         if ( !strncasecmp( val, "on", STRLENOF( "on" ) ) ) {
3370                                 si->si_schemachecking = 1;
3371                         } else if ( !strncasecmp( val, "off", STRLENOF( "off" ) ) ) {
3372                                 si->si_schemachecking = 0;
3373                         } else {
3374                                 si->si_schemachecking = 1;
3375                         }
3376                 } else if ( !strncasecmp( c->argv[ i ], FILTERSTR "=",
3377                                         STRLENOF( FILTERSTR "=" ) ) )
3378                 {
3379                         val = c->argv[ i ] + STRLENOF( FILTERSTR "=" );
3380                         if ( si->si_filterstr.bv_val )
3381                                 ch_free( si->si_filterstr.bv_val );
3382                         ber_str2bv( val, 0, 1, &si->si_filterstr );
3383                 } else if ( !strncasecmp( c->argv[ i ], LOGFILTERSTR "=",
3384                                         STRLENOF( LOGFILTERSTR "=" ) ) )
3385                 {
3386                         val = c->argv[ i ] + STRLENOF( LOGFILTERSTR "=" );
3387                         if ( si->si_logfilterstr.bv_val )
3388                                 ch_free( si->si_logfilterstr.bv_val );
3389                         ber_str2bv( val, 0, 1, &si->si_logfilterstr );
3390                 } else if ( !strncasecmp( c->argv[ i ], SEARCHBASESTR "=",
3391                                         STRLENOF( SEARCHBASESTR "=" ) ) )
3392                 {
3393                         struct berval   bv;
3394                         int             rc;
3395
3396                         val = c->argv[ i ] + STRLENOF( SEARCHBASESTR "=" );
3397                         if ( si->si_base.bv_val ) {
3398                                 ch_free( si->si_base.bv_val );
3399                         }
3400                         ber_str2bv( val, 0, 0, &bv );
3401                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_base, NULL );
3402                         if ( rc != LDAP_SUCCESS ) {
3403                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3404                                         "Invalid base DN \"%s\": %d (%s)",
3405                                         val, rc, ldap_err2string( rc ) );
3406                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3407                                 return -1;
3408                         }
3409                         if ( !be_issubordinate( c->be, &si->si_base ) ) {
3410                                 ch_free( si->si_base.bv_val );
3411                                 BER_BVZERO( &si->si_base );
3412                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3413                                         "Base DN \"%s\" is not within the database naming context",
3414                                         val );
3415                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3416                                 return -1;
3417                         }
3418                         gots |= GOT_BASE;
3419                 } else if ( !strncasecmp( c->argv[ i ], LOGBASESTR "=",
3420                                         STRLENOF( LOGBASESTR "=" ) ) )
3421                 {
3422                         struct berval   bv;
3423                         int             rc;
3424
3425                         val = c->argv[ i ] + STRLENOF( LOGBASESTR "=" );
3426                         if ( si->si_logbase.bv_val ) {
3427                                 ch_free( si->si_logbase.bv_val );
3428                         }
3429                         ber_str2bv( val, 0, 0, &bv );
3430                         rc = dnNormalize( 0, NULL, NULL, &bv, &si->si_logbase, NULL );
3431                         if ( rc != LDAP_SUCCESS ) {
3432                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3433                                         "Invalid logbase DN \"%s\": %d (%s)",
3434                                         val, rc, ldap_err2string( rc ) );
3435                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3436                                 return -1;
3437                         }
3438                 } else if ( !strncasecmp( c->argv[ i ], SCOPESTR "=",
3439                                         STRLENOF( SCOPESTR "=" ) ) )
3440                 {
3441                         int j;
3442                         val = c->argv[ i ] + STRLENOF( SCOPESTR "=" );
3443                         for ( j = 0; !BER_BVISNULL(&scopes[j].key); j++ ) {
3444                                 if (!strcasecmp( val, scopes[j].key.bv_val ) ) {
3445                                         si->si_scope = scopes[j].val;
3446                                         break;
3447                                 }
3448                         }
3449                         if ( BER_BVISNULL(&scopes[j].key) ) {
3450                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3451                                         "Error: parse_syncrepl_line: "
3452                                         "unknown scope \"%s\"", val);
3453                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3454                                 return -1;
3455                         }
3456                 } else if ( !strncasecmp( c->argv[ i ], ATTRSONLYSTR,
3457                                         STRLENOF( ATTRSONLYSTR ) ) )
3458                 {
3459                         si->si_attrsonly = 1;
3460                 } else if ( !strncasecmp( c->argv[ i ], ATTRSSTR "=",
3461                                         STRLENOF( ATTRSSTR "=" ) ) )
3462                 {
3463                         val = c->argv[ i ] + STRLENOF( ATTRSSTR "=" );
3464                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3465                                 char *attr_fname;
3466                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3467                                 si->si_anlist = file2anlist( si->si_anlist, attr_fname, " ,\t" );
3468                                 if ( si->si_anlist == NULL ) {
3469                                         ch_free( attr_fname );
3470                                         return -1;
3471                                 }
3472                                 si->si_anfile = attr_fname;
3473                         } else {
3474                                 char *str, *s, *next;
3475                                 char delimstr[] = " ,\t";
3476                                 str = ch_strdup( val );
3477                                 for ( s = ldap_pvt_strtok( str, delimstr, &next );
3478                                                 s != NULL;
3479                                                 s = ldap_pvt_strtok( NULL, delimstr, &next ) )
3480                                 {
3481                                         if ( strlen(s) == 1 && *s == '*' ) {
3482                                                 si->si_allattrs = 1;
3483                                                 val[ s - str ] = delimstr[0];
3484                                         }
3485                                         if ( strlen(s) == 1 && *s == '+' ) {
3486                                                 si->si_allopattrs = 1;
3487                                                 val [ s - str ] = delimstr[0];
3488                                         }
3489                                 }
3490                                 ch_free( str );
3491                                 si->si_anlist = str2anlist( si->si_anlist, val, " ,\t" );
3492                                 if ( si->si_anlist == NULL ) {
3493                                         return -1;
3494                                 }
3495                         }
3496                 } else if ( !strncasecmp( c->argv[ i ], EXATTRSSTR "=",
3497                                         STRLENOF( EXATTRSSTR "=" ) ) )
3498                 {
3499                         val = c->argv[ i ] + STRLENOF( EXATTRSSTR "=" );
3500                         if ( !strncasecmp( val, ":include:", STRLENOF(":include:") ) ) {
3501                                 char *attr_fname;
3502                                 attr_fname = ch_strdup( val + STRLENOF(":include:") );
3503                                 si->si_exanlist = file2anlist(
3504                                         si->si_exanlist, attr_fname, " ,\t" );
3505                                 if ( si->si_exanlist == NULL ) {
3506                                         ch_free( attr_fname );
3507                                         return -1;
3508                                 }
3509                                 ch_free( attr_fname );
3510                         } else {
3511                                 si->si_exanlist = str2anlist( si->si_exanlist, val, " ,\t" );
3512                                 if ( si->si_exanlist == NULL ) {
3513                                         return -1;
3514                                 }
3515                         }
3516                 } else if ( !strncasecmp( c->argv[ i ], TYPESTR "=",
3517                                         STRLENOF( TYPESTR "=" ) ) )
3518                 {
3519                         val = c->argv[ i ] + STRLENOF( TYPESTR "=" );
3520                         if ( !strncasecmp( val, "refreshOnly",
3521                                                 STRLENOF("refreshOnly") ) )
3522                         {
3523                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3524                         } else if ( !strncasecmp( val, "refreshAndPersist",
3525                                                 STRLENOF("refreshAndPersist") ) )
3526                         {
3527                                 si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_AND_PERSIST;
3528                                 si->si_interval = 60;
3529                         } else {
3530                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3531                                         "Error: parse_syncrepl_line: "
3532                                         "unknown sync type \"%s\"", val);
3533                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3534                                 return -1;
3535                         }
3536                 } else if ( !strncasecmp( c->argv[ i ], INTERVALSTR "=",
3537                                         STRLENOF( INTERVALSTR "=" ) ) )
3538                 {
3539                         val = c->argv[ i ] + STRLENOF( INTERVALSTR "=" );
3540                         if ( si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ) {
3541                                 si->si_interval = 0;
3542                         } else if ( strchr( val, ':' ) != NULL ) {
3543                                 char *next, *ptr = val;
3544                                 unsigned dd, hh, mm, ss;
3545
3546                                 /* NOTE: the test for ptr[ 0 ] == '-'
3547                                  * should go before the call to strtoul() */
3548                                 dd = strtoul( ptr, &next, 10 );
3549                                 if ( ptr[ 0 ] == '-' || next == ptr || next[0] != ':' ) {
3550                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3551                                                 "Error: parse_syncrepl_line: "
3552                                                 "invalid interval \"%s\", unable to parse days", val );
3553                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3554                                         return -1;
3555                                 }
3556                                 ptr = next + 1;
3557                                 hh = strtoul( ptr, &next, 10 );
3558                                 if ( ptr[ 0 ] == '-' || next == ptr || next[0] != ':' || hh > 24 ) {
3559                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3560                                                 "Error: parse_syncrepl_line: "
3561                                                 "invalid interval \"%s\", unable to parse hours", val );
3562                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3563                                         return -1;
3564                                 }
3565                                 ptr = next + 1;
3566                                 mm = strtoul( ptr, &next, 10 );
3567                                 if ( ptr[ 0 ] == '-' || next == ptr || next[0] != ':' || mm > 60 ) {
3568                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3569                                                 "Error: parse_syncrepl_line: "
3570                                                 "invalid interval \"%s\", unable to parse minutes", val );
3571                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3572                                         return -1;
3573                                 }
3574                                 ptr = next + 1;
3575                                 ss = strtoul( ptr, &next, 10 );
3576                                 if ( ptr[ 0 ] == '-' || next == ptr || next[0] != '\0' || ss > 60 ) {
3577                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3578                                                 "Error: parse_syncrepl_line: "
3579                                                 "invalid interval \"%s\", unable to parse seconds", val );
3580                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3581                                         return -1;
3582                                 }
3583                                 si->si_interval = (( dd * 24 + hh ) * 60 + mm ) * 60 + ss;
3584                         } else {
3585                                 unsigned long   t;
3586
3587                                 if ( lutil_parse_time( val, &t ) != 0 ) {
3588                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3589                                                 "Error: parse_syncrepl_line: "
3590                                                 "invalid interval \"%s\"", val );
3591                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3592                                         return -1;
3593                                 }
3594                                 si->si_interval = (time_t)t;
3595                         }
3596                         if ( si->si_interval < 0 ) {
3597                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3598                                         "Error: parse_syncrepl_line: "
3599                                         "invalid interval \"%ld\"",
3600                                         (long) si->si_interval);
3601                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3602                                 return -1;
3603                         }
3604                 } else if ( !strncasecmp( c->argv[ i ], RETRYSTR "=",
3605                                         STRLENOF( RETRYSTR "=" ) ) )
3606                 {
3607                         char **retry_list;
3608                         int j, k, n;
3609
3610                         val = c->argv[ i ] + STRLENOF( RETRYSTR "=" );
3611                         retry_list = (char **) ch_calloc( 1, sizeof( char * ) );
3612                         retry_list[0] = NULL;
3613
3614                         slap_str2clist( &retry_list, val, " ,\t" );
3615
3616                         for ( k = 0; retry_list && retry_list[k]; k++ ) ;
3617                         n = k / 2;
3618                         if ( k % 2 ) {
3619                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3620                                         "Error: incomplete syncrepl retry list" );
3621                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3622                                 for ( k = 0; retry_list && retry_list[k]; k++ ) {
3623                                         ch_free( retry_list[k] );
3624                                 }
3625                                 ch_free( retry_list );
3626                                 return 1;
3627                         }
3628                         si->si_retryinterval = (time_t *) ch_calloc( n + 1, sizeof( time_t ) );
3629                         si->si_retrynum = (int *) ch_calloc( n + 1, sizeof( int ) );
3630                         si->si_retrynum_init = (int *) ch_calloc( n + 1, sizeof( int ) );
3631                         for ( j = 0; j < n; j++ ) {
3632                                 unsigned long   t;
3633                                 if ( lutil_atoul( &t, retry_list[j*2] ) != 0 ) {
3634                                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3635                                                 "Error: invalid retry interval \"%s\" (#%d)",
3636                                                 retry_list[j*2], j );
3637                                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3638                                         /* do some cleanup */
3639                                         return 1;
3640                                 }
3641                                 si->si_retryinterval[j] = (time_t)t;
3642                                 if ( *retry_list[j*2+1] == '+' ) {
3643                                         si->si_retrynum_init[j] = RETRYNUM_FOREVER;
3644                                         si->si_retrynum[j] = RETRYNUM_FOREVER;
3645                                         j++;
3646                                         break;
3647                                 } else {
3648                                         if ( lutil_atoi( &si->si_retrynum_init[j], retry_list[j*2+1] ) != 0
3649                                                         || si->si_retrynum_init[j] <= 0 )
3650                                         {
3651                                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3652                                                         "Error: invalid initial retry number \"%s\" (#%d)",
3653                                                         retry_list[j*2+1], j );
3654                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3655                                                 /* do some cleanup */
3656                                                 return 1;
3657                                         }
3658                                         if ( lutil_atoi( &si->si_retrynum[j], retry_list[j*2+1] ) != 0
3659                                                         || si->si_retrynum[j] <= 0 )
3660                                         {
3661                                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3662                                                         "Error: invalid retry number \"%s\" (#%d)",
3663                                                         retry_list[j*2+1], j );
3664                                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3665                                                 /* do some cleanup */
3666                                                 return 1;
3667                                         }
3668                                 }
3669                         }
3670                         si->si_retrynum_init[j] = RETRYNUM_TAIL;
3671                         si->si_retrynum[j] = RETRYNUM_TAIL;
3672                         si->si_retryinterval[j] = 0;
3673                         
3674                         for ( k = 0; retry_list && retry_list[k]; k++ ) {
3675                                 ch_free( retry_list[k] );
3676                         }
3677                         ch_free( retry_list );
3678                 } else if ( !strncasecmp( c->argv[ i ], MANAGEDSAITSTR "=",
3679                                         STRLENOF( MANAGEDSAITSTR "=" ) ) )
3680                 {
3681                         val = c->argv[ i ] + STRLENOF( MANAGEDSAITSTR "=" );
3682                         if ( lutil_atoi( &si->si_manageDSAit, val ) != 0
3683                                 || si->si_manageDSAit < 0 || si->si_manageDSAit > 1 )
3684                         {
3685                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3686                                         "invalid manageDSAit value \"%s\".\n",
3687                                         val );
3688                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3689                                 return 1;
3690                         }
3691                 } else if ( !strncasecmp( c->argv[ i ], SLIMITSTR "=",
3692                                         STRLENOF( SLIMITSTR "=") ) )
3693                 {
3694                         val = c->argv[ i ] + STRLENOF( SLIMITSTR "=" );
3695                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3696                                 si->si_slimit = 0;
3697
3698                         } else if ( lutil_atoi( &si->si_slimit, val ) != 0 || si->si_slimit < 0 ) {
3699                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3700                                         "invalid size limit value \"%s\".\n",
3701                                         val );
3702                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3703                                 return 1;
3704                         }
3705                 } else if ( !strncasecmp( c->argv[ i ], TLIMITSTR "=",
3706                                         STRLENOF( TLIMITSTR "=" ) ) )
3707                 {
3708                         val = c->argv[ i ] + STRLENOF( TLIMITSTR "=" );
3709                         if ( strcasecmp( val, "unlimited" ) == 0 ) {
3710                                 si->si_tlimit = 0;
3711
3712                         } else if ( lutil_atoi( &si->si_tlimit, val ) != 0 || si->si_tlimit < 0 ) {
3713                                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3714                                         "invalid time limit value \"%s\".\n",
3715                                         val );
3716                                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3717                                 return 1;
3718                         }
3719                 } else if ( !strncasecmp( c->argv[ i ], SYNCDATASTR "=",
3720                                         STRLENOF( SYNCDATASTR "=" ) ) )
3721                 {
3722                         val = c->argv[ i ] + STRLENOF( SYNCDATASTR "=" );
3723                         si->si_syncdata = verb_to_mask( val, datamodes );
3724                 } else if ( bindconf_parse( c->argv[i], &si->si_bindconf ) ) {
3725                         snprintf( c->cr_msg, sizeof( c->cr_msg ),
3726                                 "Error: parse_syncrepl_line: "
3727                                 "unable to parse \"%s\"\n", c->argv[ i ] );
3728                         Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3729                         return -1;
3730                 }
3731         }
3732
3733         if ( gots != GOT_ALL ) {
3734                 snprintf( c->cr_msg, sizeof( c->cr_msg ),
3735                         "Error: Malformed \"syncrepl\" line in slapd config file, missing%s%s%s",
3736                         gots & GOT_ID ? "" : " "IDSTR,
3737                         gots & GOT_PROVIDER ? "" : " "PROVIDERSTR,
3738                         gots & GOT_BASE ? "" : " "SEARCHBASESTR );
3739                 Debug( LDAP_DEBUG_ANY, "%s: %s.\n", c->log, c->cr_msg, 0 );
3740                 return -1;
3741         }
3742
3743         return 0;
3744 }
3745
3746 static int
3747 add_syncrepl(
3748         ConfigArgs *c )
3749 {
3750         syncinfo_t *si;
3751         int     rc = 0;
3752
3753         if ( !( c->be->be_search && c->be->be_add && c->be->be_modify && c->be->be_delete ) ) {
3754                 snprintf( c->cr_msg, sizeof(c->cr_msg), "database %s does not support "
3755                         "operations required for syncrepl", c->be->be_type );
3756                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
3757                 return 1;
3758         }
3759         if ( BER_BVISEMPTY( &c->be->be_rootdn ) ) {
3760                 strcpy( c->cr_msg, "rootDN must be defined before syncrepl may be used" );
3761                 Debug( LDAP_DEBUG_ANY, "%s: %s\n", c->log, c->cr_msg, 0 );
3762                 return 1;
3763         }
3764         si = (syncinfo_t *) ch_calloc( 1, sizeof( syncinfo_t ) );
3765
3766         if ( si == NULL ) {
3767                 Debug( LDAP_DEBUG_ANY, "out of memory in add_syncrepl\n", 0, 0, 0 );
3768                 return 1;
3769         }
3770
3771         si->si_bindconf.sb_tls = SB_TLS_OFF;
3772         si->si_bindconf.sb_method = LDAP_AUTH_SIMPLE;
3773         si->si_schemachecking = 0;
3774         ber_str2bv( "(objectclass=*)", STRLENOF("(objectclass=*)"), 1,
3775                 &si->si_filterstr );
3776         si->si_base.bv_val = NULL;
3777         si->si_scope = LDAP_SCOPE_SUBTREE;
3778         si->si_attrsonly = 0;
3779         si->si_anlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
3780         si->si_exanlist = (AttributeName *) ch_calloc( 1, sizeof( AttributeName ) );
3781         si->si_attrs = NULL;
3782         si->si_allattrs = 0;
3783         si->si_allopattrs = 0;
3784         si->si_exattrs = NULL;
3785         si->si_type = si->si_ctype = LDAP_SYNC_REFRESH_ONLY;
3786         si->si_interval = 86400;
3787         si->si_retryinterval = NULL;
3788         si->si_retrynum_init = NULL;
3789         si->si_retrynum = NULL;
3790         si->si_manageDSAit = 0;
3791         si->si_tlimit = 0;
3792         si->si_slimit = 0;
3793         si->si_conn_setup = 0;
3794
3795         si->si_presentlist = NULL;
3796         LDAP_LIST_INIT( &si->si_nonpresentlist );
3797         ldap_pvt_thread_mutex_init( &si->si_mutex );
3798
3799         rc = parse_syncrepl_line( c, si );
3800
3801         if ( rc == 0 ) {
3802                 /* Must be LDAPv3 because we need controls */
3803                 switch ( si->si_bindconf.sb_version ) {
3804                 case 0:
3805                         /* not explicitly set */
3806                         si->si_bindconf.sb_version = LDAP_VERSION3;
3807                         break;
3808                 case 3:
3809                         /* explicitly set */
3810                         break;
3811                 default:
3812                         Debug( LDAP_DEBUG_ANY,
3813                                 "version %d incompatible with syncrepl\n",
3814                                 si->si_bindconf.sb_version, 0, 0 );
3815                         syncinfo_free( si, 0 ); 
3816                         return 1;
3817                 }
3818
3819                 si->si_be = c->be;
3820                 if ( slapMode & SLAP_SERVER_MODE ) {
3821                         Listener **l = slapd_get_listeners();
3822                         int isMe = 0;
3823
3824                         /* check if URL points to current server. If so, ignore
3825                          * this configuration. We require an exact match. Just
3826                          * in case they really want to do this, they can vary
3827                          * the case of the URL to allow it.
3828                          */
3829                         if ( l && !SLAP_DBHIDDEN( c->be ) ) {
3830                                 int i;
3831                                 for ( i=0; l[i]; i++ ) {
3832                                         if ( bvmatch( &l[i]->sl_url, &si->si_bindconf.sb_uri ) ) {
3833                                                 isMe = 1;
3834                                                 break;
3835                                         }
3836                                 }
3837                         }
3838
3839                         if ( !isMe ) {
3840                                 init_syncrepl( si );
3841                                 si->si_re = ldap_pvt_runqueue_insert( &slapd_rq,
3842                                         si->si_interval, do_syncrepl, si, "do_syncrepl",
3843                                         si->si_ridtxt );
3844                                 if ( si->si_re )
3845                                         rc = config_sync_shadow( c ) ? -1 : 0;
3846                                 else
3847                                         rc = -1;
3848                         }
3849                 } else {
3850                         /* mirrormode still needs to see this flag in tool mode */
3851                         rc = config_sync_shadow( c ) ? -1 : 0;
3852                 }
3853         }
3854
3855 #ifdef HAVE_TLS
3856         /* Use main slapd defaults */
3857         bindconf_tls_defaults( &si->si_bindconf );
3858 #endif
3859         if ( rc < 0 ) {
3860                 Debug( LDAP_DEBUG_ANY, "failed to add syncinfo\n", 0, 0, 0 );
3861                 syncinfo_free( si, 0 ); 
3862                 return 1;
3863         } else {
3864                 Debug( LDAP_DEBUG_CONFIG,
3865                         "Config: ** successfully added syncrepl \"%s\"\n",
3866                         BER_BVISNULL( &si->si_bindconf.sb_uri ) ?
3867                         "(null)" : si->si_bindconf.sb_uri.bv_val, 0, 0 );
3868                 if ( !si->si_schemachecking ) {
3869                         SLAP_DBFLAGS(c->be) |= SLAP_DBFLAG_NO_SCHEMA_CHECK;
3870                 }
3871                 if ( c->be->be_syncinfo ) {
3872                         si->si_cookieState = c->be->be_syncinfo->si_cookieState;
3873                 } else {
3874                         si->si_cookieState = ch_calloc( 1, sizeof( cookie_state ));
3875                         ldap_pvt_thread_mutex_init( &si->si_cookieState->cs_mutex );
3876                 }
3877                 si->si_next = c->be->be_syncinfo;
3878                 c->be->be_syncinfo = si;
3879                 return 0;
3880         }
3881 }
3882
3883 static void
3884 syncrepl_unparse( syncinfo_t *si, struct berval *bv )
3885 {
3886         struct berval bc, uri;
3887         char buf[BUFSIZ*2], *ptr;
3888         int i;
3889
3890 #define WHATSLEFT       ( sizeof( buf ) - ( ptr - buf ) )
3891
3892         BER_BVZERO( bv );
3893
3894         /* temporarily inhibit bindconf from printing URI */
3895         uri = si->si_bindconf.sb_uri;
3896         BER_BVZERO( &si->si_bindconf.sb_uri );
3897         si->si_bindconf.sb_version = 0;
3898         bindconf_unparse( &si->si_bindconf, &bc );
3899         si->si_bindconf.sb_uri = uri;
3900         si->si_bindconf.sb_version = LDAP_VERSION3;
3901
3902         ptr = buf;
3903         ptr += snprintf( ptr, WHATSLEFT, IDSTR "=%03d " PROVIDERSTR "=%s",
3904                 si->si_rid, si->si_bindconf.sb_uri.bv_val );
3905         if ( ptr - buf >= sizeof( buf ) ) return;
3906         if ( !BER_BVISNULL( &bc ) ) {
3907                 if ( WHATSLEFT <= bc.bv_len ) {
3908                         free( bc.bv_val );
3909                         return;
3910                 }
3911                 ptr = lutil_strcopy( ptr, bc.bv_val );
3912                 free( bc.bv_val );
3913         }
3914         if ( !BER_BVISEMPTY( &si->si_filterstr ) ) {
3915                 if ( WHATSLEFT <= STRLENOF( " " FILTERSTR "=\"" "\"" ) + si->si_filterstr.bv_len ) return;
3916                 ptr = lutil_strcopy( ptr, " " FILTERSTR "=\"" );
3917                 ptr = lutil_strcopy( ptr, si->si_filterstr.bv_val );
3918                 *ptr++ = '"';
3919         }
3920         if ( !BER_BVISNULL( &si->si_base ) ) {
3921                 if ( WHATSLEFT <= STRLENOF( " " SEARCHBASESTR "=\"" "\"" ) + si->si_base.bv_len ) return;
3922                 ptr = lutil_strcopy( ptr, " " SEARCHBASESTR "=\"" );
3923                 ptr = lutil_strcopy( ptr, si->si_base.bv_val );
3924                 *ptr++ = '"';
3925         }
3926         if ( !BER_BVISEMPTY( &si->si_logfilterstr ) ) {
3927                 if ( WHATSLEFT <= STRLENOF( " " LOGFILTERSTR "=\"" "\"" ) + si->si_logfilterstr.bv_len ) return;
3928                 ptr = lutil_strcopy( ptr, " " LOGFILTERSTR "=\"" );
3929                 ptr = lutil_strcopy( ptr, si->si_logfilterstr.bv_val );
3930                 *ptr++ = '"';
3931         }
3932         if ( !BER_BVISNULL( &si->si_logbase ) ) {
3933                 if ( WHATSLEFT <= STRLENOF( " " LOGBASESTR "=\"" "\"" ) + si->si_logbase.bv_len ) return;
3934                 ptr = lutil_strcopy( ptr, " " LOGBASESTR "=\"" );
3935                 ptr = lutil_strcopy( ptr, si->si_logbase.bv_val );
3936                 *ptr++ = '"';
3937         }
3938         for (i=0; !BER_BVISNULL(&scopes[i].key);i++) {
3939                 if ( si->si_scope == scopes[i].val ) {
3940                         if ( WHATSLEFT <= STRLENOF( " " SCOPESTR "=" ) + scopes[i].key.bv_len ) return;
3941                         ptr = lutil_strcopy( ptr, " " SCOPESTR "=" );
3942                         ptr = lutil_strcopy( ptr, scopes[i].key.bv_val );
3943                         break;
3944                 }
3945         }
3946         if ( si->si_attrsonly ) {
3947                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
3948                 ptr = lutil_strcopy( ptr, " " ATTRSONLYSTR );
3949         }
3950         if ( si->si_anfile ) {
3951                 if ( WHATSLEFT <= STRLENOF( " " ATTRSSTR "=\":include:" "\"" ) + strlen( si->si_anfile ) ) return;
3952                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=:include:\"" );
3953                 ptr = lutil_strcopy( ptr, si->si_anfile );
3954                 *ptr++ = '"';
3955         } else if ( si->si_allattrs || si->si_allopattrs ||
3956                 ( si->si_anlist && !BER_BVISNULL(&si->si_anlist[0].an_name) ) )
3957         {
3958                 char *old;
3959
3960                 if ( WHATSLEFT <= STRLENOF( " " ATTRSONLYSTR "=\"" "\"" ) ) return;
3961                 ptr = lutil_strcopy( ptr, " " ATTRSSTR "=\"" );
3962                 old = ptr;
3963                 /* FIXME: add check for overflow */
3964                 ptr = anlist_unparse( si->si_anlist, ptr, WHATSLEFT );
3965                 if ( si->si_allattrs ) {
3966                         if ( WHATSLEFT <= STRLENOF( ",*\"" ) ) return;
3967                         if ( old != ptr ) *ptr++ = ',';
3968                         *ptr++ = '*';
3969                 }
3970                 if ( si->si_allopattrs ) {
3971                         if ( WHATSLEFT <= STRLENOF( ",+\"" ) ) return;
3972                         if ( old != ptr ) *ptr++ = ',';
3973                         *ptr++ = '+';
3974                 }
3975                 *ptr++ = '"';
3976         }
3977         if ( si->si_exanlist && !BER_BVISNULL(&si->si_exanlist[0].an_name) ) {
3978                 if ( WHATSLEFT <= STRLENOF( " " EXATTRSSTR "=" ) ) return;
3979                 ptr = lutil_strcopy( ptr, " " EXATTRSSTR "=" );
3980                 /* FIXME: add check for overflow */
3981                 ptr = anlist_unparse( si->si_exanlist, ptr, WHATSLEFT );
3982         }
3983         if ( WHATSLEFT <= STRLENOF( " " SCHEMASTR "=" ) + STRLENOF( "off" ) ) return;
3984         ptr = lutil_strcopy( ptr, " " SCHEMASTR "=" );
3985         ptr = lutil_strcopy( ptr, si->si_schemachecking ? "on" : "off" );
3986         
3987         if ( WHATSLEFT <= STRLENOF( " " TYPESTR "=" ) + STRLENOF( "refreshAndPersist" ) ) return;
3988         ptr = lutil_strcopy( ptr, " " TYPESTR "=" );
3989         ptr = lutil_strcopy( ptr, si->si_type == LDAP_SYNC_REFRESH_AND_PERSIST ?
3990                 "refreshAndPersist" : "refreshOnly" );
3991
3992         if ( si->si_type == LDAP_SYNC_REFRESH_ONLY ) {
3993                 int dd, hh, mm, ss;
3994
3995                 dd = si->si_interval;
3996                 ss = dd % 60;
3997                 dd /= 60;
3998                 mm = dd % 60;
3999                 dd /= 60;
4000                 hh = dd % 24;
4001                 dd /= 24;
4002                 ptr = lutil_strcopy( ptr, " " INTERVALSTR "=" );
4003                 ptr += snprintf( ptr, WHATSLEFT, "%02d:%02d:%02d:%02d", dd, hh, mm, ss );
4004                 if ( ptr - buf >= sizeof( buf ) ) return;
4005         } else if ( si->si_retryinterval ) {
4006                 int space=0;
4007                 if ( WHATSLEFT <= STRLENOF( " " RETRYSTR "=\"" "\"" ) ) return;
4008                 ptr = lutil_strcopy( ptr, " " RETRYSTR "=\"" );
4009                 for (i=0; si->si_retryinterval[i]; i++) {
4010                         if ( space ) *ptr++ = ' ';
4011                         space = 1;
4012                         ptr += snprintf( ptr, WHATSLEFT, "%ld ", (long) si->si_retryinterval[i] );
4013                         if ( si->si_retrynum_init[i] == RETRYNUM_FOREVER )
4014                                 *ptr++ = '+';
4015                         else
4016                                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_retrynum_init[i] );
4017                 }
4018                 if ( WHATSLEFT <= STRLENOF( "\"" ) ) return;
4019                 *ptr++ = '"';
4020         }
4021
4022         if ( si->si_slimit ) {
4023                 if ( WHATSLEFT <= STRLENOF( " " SLIMITSTR "=" ) ) return;
4024                 ptr = lutil_strcopy( ptr, " " SLIMITSTR "=" );
4025                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_slimit );
4026         }
4027
4028         if ( si->si_tlimit ) {
4029                 if ( WHATSLEFT <= STRLENOF( " " TLIMITSTR "=" ) ) return;
4030                 ptr = lutil_strcopy( ptr, " " TLIMITSTR "=" );
4031                 ptr += snprintf( ptr, WHATSLEFT, "%d", si->si_tlimit );
4032         }
4033
4034         if ( si->si_syncdata ) {
4035                 if ( enum_to_verb( datamodes, si->si_syncdata, &bc ) >= 0 ) {
4036                         if ( WHATSLEFT <= STRLENOF( " " SYNCDATASTR "=" ) + bc.bv_len ) return;
4037                         ptr = lutil_strcopy( ptr, " " SYNCDATASTR "=" );
4038                         ptr = lutil_strcopy( ptr, bc.bv_val );
4039                 }
4040         }
4041         bc.bv_len = ptr - buf;
4042         bc.bv_val = buf;
4043         ber_dupbv( bv, &bc );
4044 }
4045
4046 int
4047 syncrepl_config( ConfigArgs *c )
4048 {
4049         if (c->op == SLAP_CONFIG_EMIT) {
4050                 if ( c->be->be_syncinfo ) {
4051                         struct berval bv;
4052                         syncinfo_t *si;
4053
4054                         for ( si = c->be->be_syncinfo; si; si=si->si_next ) {
4055                                 syncrepl_unparse( si, &bv ); 
4056                                 ber_bvarray_add( &c->rvalue_vals, &bv );
4057                         }
4058                         return 0;
4059                 }
4060                 return 1;
4061         } else if ( c->op == LDAP_MOD_DELETE ) {
4062                 cookie_state *cs = NULL;
4063                 if ( c->be->be_syncinfo ) {
4064                         syncinfo_t *si, **sip;
4065                         int i;
4066
4067                         cs = c->be->be_syncinfo->si_cookieState;
4068                         for ( sip = &c->be->be_syncinfo, i=0; *sip; i++ ) {
4069                                 si = *sip;
4070                                 if ( c->valx == -1 || i == c->valx ) {
4071                                         *sip = si->si_next;
4072                                         /* If the task is currently active, we have to leave
4073                                          * it running. It will exit on its own. This will only
4074                                          * happen when running on the cn=config DB.
4075                                          */
4076                                         if ( si->si_re &&
4077                                                 ldap_pvt_runqueue_isrunning( &slapd_rq, si->si_re ) ) {
4078                                                 si->si_ctype = 0;
4079                                         } else {
4080                                                 syncinfo_free( si, 0 );
4081                                         }
4082                                         if ( i == c->valx )
4083                                                 break;
4084                                 } else {
4085                                         sip = &si->si_next;
4086                                 }
4087                         }
4088                 }
4089                 if ( !c->be->be_syncinfo ) {
4090                         SLAP_DBFLAGS( c->be ) &= ~(SLAP_DBFLAG_SHADOW|SLAP_DBFLAG_SYNC_SHADOW);
4091                         if ( cs ) {
4092                                 ber_bvarray_free( cs->cs_vals );
4093                                 ldap_pvt_thread_mutex_destroy( &cs->cs_mutex );
4094                                 ch_free( cs );
4095                         }
4096                 }
4097                 return 0;
4098         }
4099         if ( SLAP_SLURP_SHADOW( c->be ) ) {
4100                 Debug(LDAP_DEBUG_ANY, "%s: "
4101                         "syncrepl: database already shadowed.\n",
4102                         c->log, 0, 0);
4103                 return(1);
4104         } else {
4105                 return add_syncrepl( c );
4106         }
4107 }