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